Created
September 8, 2015 21:02
-
-
Save d3v2a/b156a1ccf022a2f9a100 to your computer and use it in GitHub Desktop.
tva card
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* Copyright (C) 2003 Rodolphe Quiedeville <[email protected]> | |
* Copyright (C) 2004-2013 Laurent Destailleur <[email protected]> | |
* Copyright (C) 2005-2013 Regis Houssin <[email protected]> | |
* Copyright (C) 2015 Alexandre Spangaro <[email protected]> | |
* | |
* This program is free software; you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation; either version 3 of the License, or | |
* (at your option) any later version. | |
* | |
* This program is distributed in the hope that it will be useful, | |
* but WITHOUT ANY WARRANTY; without even the implied warranty of | |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
* GNU General Public License for more details. | |
* | |
* You should have received a copy of the GNU General Public License | |
* along with this program. If not, see <http://www.gnu.org/licenses/>. | |
*/ | |
/** | |
* \file htdocs/compta/tva/card.php | |
* \ingroup tax | |
* \brief Page of VAT payments | |
*/ | |
require '../../main.inc.php'; | |
require_once DOL_DOCUMENT_ROOT.'/compta/tva/class/tva.class.php'; | |
require_once DOL_DOCUMENT_ROOT.'/compta/bank/class/account.class.php'; | |
$langs->load("compta"); | |
$langs->load("banks"); | |
$langs->load("bills"); | |
$id=GETPOST("id",'int'); | |
$action=GETPOST("action","alpha"); | |
$refund=GETPOST("refund","int"); | |
if (empty($refund)) $refund=0; | |
// Security check | |
$socid = isset($_GET["socid"])?$_GET["socid"]:''; | |
if ($user->societe_id) $socid=$user->societe_id; | |
$result = restrictedArea($user, 'tax', '', '', 'charges'); | |
$tva = new Tva($db); | |
// Initialize technical object to manage hooks of thirdparties. Note that conf->hooks_modules contains array array | |
$hookmanager->initHooks(array('taxvatcard','globalcard')); | |
/** | |
* Actions | |
*/ | |
if ($_POST["cancel"] == $langs->trans("Cancel")) | |
{ | |
header("Location: reglement.php"); | |
exit; | |
} | |
if ($action == 'add' && $_POST["cancel"] <> $langs->trans("Cancel")) | |
{ | |
$error=0; | |
$datev=dol_mktime(12,0,0, $_POST["datevmonth"], $_POST["datevday"], $_POST["datevyear"]); | |
$datep=dol_mktime(12,0,0, $_POST["datepmonth"], $_POST["datepday"], $_POST["datepyear"]); | |
$tva->accountid=GETPOST("accountid"); | |
$tva->type_payment=GETPOST("type_payment"); | |
$tva->num_payment=GETPOST("num_payment"); | |
$tva->datev=$datev; | |
$tva->datep=$datep; | |
$amount = GETPOST("amount"); | |
if ($refund == 1) { | |
$amount= -$amount; | |
} | |
$tva->amount= $amount; | |
$tva->label=GETPOST("label"); | |
$tva->note=GETPOST("note"); | |
if (empty($tva->datev)) | |
{ | |
setEventMessage($langs->trans("ErrorFieldRequired",$langs->transnoentitiesnoconv("DateValue")),'errors'); | |
$error++; | |
} | |
if (empty($tva->datep)) | |
{ | |
setEventMessage($langs->trans("ErrorFieldRequired",$langs->transnoentitiesnoconv("DatePayment")),'errors'); | |
$error++; | |
} | |
if (empty($tva->type_payment) || $tva->type_payment < 0) | |
{ | |
setEventMessage($langs->trans("ErrorFieldRequired",$langs->transnoentitiesnoconv("PaymentMode")),'errors'); | |
$error++; | |
} | |
if (empty($tva->amount)) | |
{ | |
setEventMessage($langs->trans("ErrorFieldRequired",$langs->transnoentitiesnoconv("Amount")),'errors'); | |
$error++; | |
} | |
if (! $error) | |
{ | |
$db->begin(); | |
$ret=$tva->addPayment($user); | |
if ($ret > 0) | |
{ | |
$db->commit(); | |
header("Location: reglement.php"); | |
exit; | |
} | |
else | |
{ | |
$db->rollback(); | |
setEventMessage($tva->error, 'errors'); | |
$action="create"; | |
} | |
} | |
$action='create'; | |
} | |
if ($action == 'delete') | |
{ | |
$result=$tva->fetch($id); | |
if ($tva->rappro == 0) | |
{ | |
$db->begin(); | |
$ret=$tva->delete($user); | |
if ($ret > 0) | |
{ | |
if ($tva->fk_bank) | |
{ | |
$accountline=new AccountLine($db); | |
$result=$accountline->fetch($tva->fk_bank); | |
if ($result > 0) $result=$accountline->delete($user); // $result may be 0 if not found (when bank entry was deleted manually and fk_bank point to nothing) | |
} | |
if ($result >= 0) | |
{ | |
$db->commit(); | |
header("Location: ".DOL_URL_ROOT.'/compta/tva/reglement.php'); | |
exit; | |
} | |
else | |
{ | |
$tva->error=$accountline->error; | |
$db->rollback(); | |
setEventMessage($tva->error,'errors'); | |
} | |
} | |
else | |
{ | |
$db->rollback(); | |
setEventMessage($tva->error,'errors'); | |
} | |
} | |
else | |
{ | |
setEventMessage('Error try do delete a line linked to a conciliated bank transaction','errors'); | |
} | |
} | |
/* | |
* View | |
*/ | |
llxHeader(); | |
$form = new Form($db); | |
if ($id) | |
{ | |
$vatpayment = new Tva($db); | |
$result = $vatpayment->fetch($id); | |
if ($result <= 0) | |
{ | |
dol_print_error($db); | |
exit; | |
} | |
} | |
// Formulaire saisie tva | |
if ($action == 'create') | |
{ | |
print_fiche_titre($langs->trans("VAT") . ' - ' . $langs->trans("New")); | |
if (! empty($conf->use_javascript_ajax)) | |
{ | |
print "\n".'<script type="text/javascript" language="javascript">'; | |
print '$(document).ready(function () { | |
$("#radiopayment").click(function() { | |
$("#label").val($(this).data("label")); | |
}); | |
$("#radiorefund").click(function() { | |
$("#label").val($(this).data("label")); | |
}); | |
});'; | |
print '</script>'."\n"; | |
} | |
print '<form name="add" action="'.$_SERVER["PHP_SELF"].'" name="formvat" method="post">'; | |
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">'; | |
print '<input type="hidden" name="action" value="add">'; | |
print '<div id="selectmethod">'; | |
print '<div class="hideonsmartphone float">'; | |
print $langs->trans("Type").': '; | |
print '</div>'; | |
print '<label for="radiopayment">'; | |
print '<input type="radio" id="radiopayment" data-label="'.$langs->trans('VATPayment').'" class="flat" name="refund" value="0" '.($refund?'':' checked').'>'; | |
print ' '; | |
print $langs->trans("Payment"); | |
print '</label>'; | |
print ' '; | |
print '<label for="radiorefund">'; | |
print '<input type="radio" id="radiorefund" class="flat" data-label="'.$langs->trans('VATRefund').'" name="refund" value="1"'.($refund?' checked':'').'>'; | |
print ' '; | |
print $langs->trans("Refund"); | |
print '</label>'; | |
print '</div>'; | |
print "<br>\n"; | |
dol_fiche_head(); | |
print '<table class="border" width="100%">'; | |
print "<tr>"; | |
print '<td class="fieldrequired">'.$langs->trans("DatePayment").'</td><td>'; | |
print $form->select_date($datep,"datep",'','','','add'); | |
print '</td></tr>'; | |
print '<tr><td class="fieldrequired">'.$langs->trans("DateValue").'</td><td>'; | |
print $form->select_date($datev,"datev",'','','','add'); | |
print '</td></tr>'; | |
// Label | |
if ($refund == 1) { | |
$label = $langs->trans("VATRefund"); | |
} else { | |
$label = $langs->trans("VATPayment"); | |
} | |
print '<tr><td class="fieldrequired">'.$langs->trans("Label").'</td><td><input name="label" id="label" size="40" value="'.($_POST["label"]?$_POST["label"]:$label).'"></td></tr>'; | |
// Amount | |
print '<tr><td class="fieldrequired">'.$langs->trans("Amount").'</td><td><input name="amount" size="10" value="'.$_POST["amount"].'"></td></tr>'; | |
if (! empty($conf->banque->enabled)) | |
{ | |
print '<tr><td class="fieldrequired">'.$langs->trans("Account").'</td><td>'; | |
$form->select_comptes($_POST["accountid"],"accountid",0,"courant=1",1); // Affiche liste des comptes courant | |
print '</td></tr>'; | |
// Type payment | |
print '<tr><td class="fieldrequired">'.$langs->trans("PaymentMode").'</td><td>'; | |
$form->select_types_paiements(GETPOST("type_payment"), "type_payment"); | |
print "</td>\n"; | |
print "</tr>"; | |
// Number | |
print '<tr><td>'.$langs->trans('Numero'); | |
print ' <em>('.$langs->trans("ChequeOrTransferNumber").')</em>'; | |
print '<td><input name="num_payment" type="text" value="'.GETPOST("num_payment").'"></td></tr>'."\n"; | |
} | |
// Other attributes | |
$parameters=array('colspan' => ' colspan="1"'); | |
//$reshook=$hookmanager->executeHooks('formObjectOptions',$parameters,$object,$action); // Note that $action and $object may have been modified by hook | |
print '</table>'; | |
dol_fiche_end(); | |
print '<div class="center">'; | |
print '<input type="submit" class="button" value="'.$langs->trans("Save").'">'; | |
print ' '; | |
print '<input type="submit" class="button" name="cancel" value="'.$langs->trans("Cancel").'">'; | |
print '</div>'; | |
print '</form>'; | |
} | |
/* ************************************************************************** */ | |
/* */ | |
/* Barre d'action */ | |
/* */ | |
/* ************************************************************************** */ | |
if ($id) | |
{ | |
$h = 0; | |
$head[$h][0] = DOL_URL_ROOT.'/compta/tva/card.php?id='.$vatpayment->id; | |
$head[$h][1] = $langs->trans('Card'); | |
$head[$h][2] = 'card'; | |
$h++; | |
dol_fiche_head($head, 'card', $langs->trans("VATPayment"), 0, 'payment'); | |
print '<table class="border" width="100%">'; | |
print "<tr>"; | |
print '<td width="25%">'.$langs->trans("Ref").'</td><td colspan="3">'; | |
print $vatpayment->ref; | |
print '</td></tr>'; | |
// Label | |
print '<tr><td>'.$langs->trans("Label").'</td><td>'.$vatpayment->label.'</td></tr>'; | |
print "<tr>"; | |
print '<td>'.$langs->trans("DatePayment").'</td><td colspan="3">'; | |
print dol_print_date($vatpayment->datep,'day'); | |
print '</td></tr>'; | |
print '<tr><td>'.$langs->trans("DateValue").'</td><td colspan="3">'; | |
print dol_print_date($vatpayment->datev,'day'); | |
print '</td></tr>'; | |
print '<tr><td>'.$langs->trans("Amount").'</td><td colspan="3">'.price($vatpayment->amount).'</td></tr>'; | |
if (! empty($conf->banque->enabled)) | |
{ | |
if ($vatpayment->fk_account > 0) | |
{ | |
$bankline=new AccountLine($db); | |
$bankline->fetch($vatpayment->fk_bank); | |
print '<tr>'; | |
print '<td>'.$langs->trans('BankTransactionLine').'</td>'; | |
print '<td colspan="3">'; | |
print $bankline->getNomUrl(1,0,'showall'); | |
print '</td>'; | |
print '</tr>'; | |
} | |
} | |
// Other attributes | |
$parameters=array('colspan' => ' colspan="3"'); | |
$reshook=$hookmanager->executeHooks('formObjectOptions',$parameters,$vatpayment,$action); // Note that $action and $object may have been modified by hook | |
print '</table>'; | |
print '</div>'; | |
/* | |
* Boutons d'actions | |
*/ | |
print "<div class=\"tabsAction\">\n"; | |
if ($vatpayment->rappro == 0) | |
{ | |
if (! empty($user->rights->tax->charges->supprimer)) | |
{ | |
print '<a class="butActionDelete" href="card.php?id='.$vatpayment->id.'&action=delete">'.$langs->trans("Delete").'</a>'; | |
} | |
else | |
{ | |
print '<a class="butActionRefused" href="#" title="'.(dol_escape_htmltag($langs->trans("NotAllowed"))).'">'.$langs->trans("Delete").'</a>'; | |
} | |
} | |
else | |
{ | |
print '<a class="butActionRefused" href="#" title="'.$langs->trans("LinkedToAConcialitedTransaction").'">'.$langs->trans("Delete").'</a>'; | |
} | |
print "</div>"; | |
} | |
$db->close(); | |
llxFooter(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment