30require
'../../main.inc.php';
31require_once DOL_DOCUMENT_ROOT.
'/compta/tva/class/tva.class.php';
32require_once DOL_DOCUMENT_ROOT.
'/compta/tva/class/paymentvat.class.php';
33require_once DOL_DOCUMENT_ROOT.
'/compta/facture/class/facture.class.php';
34require_once DOL_DOCUMENT_ROOT.
'/core/modules/facture/modules_facture.php';
35if (isModEnabled(
"banque")) {
36 require_once DOL_DOCUMENT_ROOT.
'/compta/bank/class/account.class.php';
40$langs->loadLangs(array(
'bills',
'banks',
'companies'));
44$action =
GETPOST(
'action',
'aZ09');
47 $socid = $user->socid;
54 $result = $object->fetch($id);
66if ($action ==
'confirm_delete' && $confirm ==
'yes' && $user->hasRight(
'tax',
'charges',
'supprimer')) {
69 $result = $object->delete($user);
72 header(
"Location: ".DOL_URL_ROOT.
"/compta/tva/payments.php?mode=tvaonly");
128$form =
new Form($db);
132$head[$h][0] = DOL_URL_ROOT.
'/compta/payment_vat/card.php?id='.$id;
133$head[$h][1] = $langs->trans(
"VATPayment");
143print
dol_get_fiche_head($head, $hselected, $langs->trans(
"VATPayment"), -1,
'payment');
148if ($action ==
'delete') {
149 print $form->formconfirm(
'card.php?id='.$object->id, $langs->trans(
"DeletePayment"), $langs->trans(
"ConfirmDeletePayment"),
'confirm_delete',
'', 0, 2);
165$linkback =
'<a href="'.DOL_URL_ROOT.
'/compta/tva/payments.php">'.$langs->trans(
"BackToList").
'</a>';
170print
'<div class="fichecenter">';
171print
'<div class="underbanner clearboth"></div>';
173print
'<table class="border centpercent">';
176print
'<tr><td>'.$langs->trans(
'Date').
'</td><td>'.
dol_print_date($object->datep,
'day').
'</td></tr>';
179print
'<tr><td>'.$langs->trans(
'Mode').
'</td><td>'.$langs->trans(
"PaymentType".$object->type_code).
'</td></tr>';
182print
'<tr><td>'.$langs->trans(
'Numero').
'</td><td>'.
dol_escape_htmltag($object->num_payment).
'</td></tr>';
185print
'<tr><td>'.$langs->trans(
'Amount').
'</td><td>'.
price($object->amount, 0, $outputlangs, 1, -1, -1, $conf->currency).
'</td></tr>';
191if (isModEnabled(
"banque")) {
192 if ($object->bank_account) {
194 $bankline->fetch($object->bank_line);
197 print
'<td>'.$langs->trans(
'BankTransactionLine').
'</td>';
199 print $bankline->getNomUrl(1, 0,
'showall');
217$sql =
'SELECT f.rowid as scid, f.label as label, f.paye, f.amount as tva_amount, pf.amount';
218$sql .=
' FROM '.MAIN_DB_PREFIX.
'payment_vat as pf,'.MAIN_DB_PREFIX.
'tva as f';
219$sql .=
' WHERE pf.fk_tva = f.rowid';
220$sql .=
' AND f.entity = '.$conf->entity;
221$sql .=
' AND pf.rowid = '.((int) $object->id);
223dol_syslog(
"compta/payment_vat/card.php", LOG_DEBUG);
224$resql = $db->query($sql);
226 $num = $db->num_rows($resql);
230 print
'<br><table class="noborder centpercent">';
231 print
'<tr class="liste_titre">';
232 print
'<td>'.$langs->trans(
'VATDeclaration').
'</td>';
234 print
'<td>'.$langs->trans(
'Label').
'</td>';
235 print
'<td class="right">'.$langs->trans(
'ExpectedToPay').
'</td>';
236 print
'<td class="center">'.$langs->trans(
'Status').
'</td>';
237 print
'<td class="right">'.$langs->trans(
'PayedByThisPayment').
'</td>';
242 $objp = $db->fetch_object($resql);
244 print
'<tr class="oddeven">';
247 $tva->fetch($objp->scid);
248 print $tva->getNomUrl(1);
255 print
'<td>'.$objp->label.
'</td>';
257 print
'<td class="right"><span class="amount">'.price($objp->tva_amount).
'</span></td>';
259 print
'<td class="center">'.$tva->getLibStatut(4, $objp->amount).
'</td>';
261 print
'<td class="right"><span class="amount">'.price($objp->amount).
'</span></td>';
263 if ($objp->paye == 1) {
266 $total = $total + $objp->amount;
283print
'<div class="tabsAction">';
298 if ($user->hasRight(
'tax',
'charges',
'supprimer')) {
299 if (!$disable_delete) {
300 print
dolGetButtonAction($langs->trans(
"Delete"),
'',
'delete', $_SERVER[
"PHP_SELF"].
'?id='.$object->id.
'&action=delete&token='.newToken(),
'delete', 1);
302 print
dolGetButtonAction($langs->trans(
"CantRemovePaymentVATPaid"), $langs->trans(
"Delete"),
'delete', $_SERVER[
"PHP_SELF"].
'?id='.$object->id.
'&action=delete&token='.newToken(),
'delete', 0);
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
Class to manage bank transaction lines.
Class to manage payments of social contributions.
Put here description of your class.
dol_banner_tab($object, $paramid, $morehtml='', $shownav=1, $fieldid='rowid', $fieldref='ref', $morehtmlref='', $moreparam='', $nodbprefix=0, $morehtmlleft='', $morehtmlstatus='', $onlybanner=0, $morehtmlright='')
Show tab footer of a card.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0)
Show tabs of a record.
dol_print_error($db='', $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
dol_get_fiche_end($notab=0)
Return tab footer of a card.
price($amount, $form=0, $outlangs='', $trunc=1, $rounding=-1, $forcerounding=-1, $currency_code='')
Function to format a value into an amount for visual output Function used into PDF and HTML pages.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs='', $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
dol_string_onlythesehtmltags($stringtoclean, $cleanalsosomestyles=1, $removeclassattribute=1, $cleanalsojavascript=0, $allowiframe=0, $allowed_tags=array(), $allowlink=0)
Clean a string to keep only desirable HTML tags.
dolGetButtonAction($label, $text='', $actionType='default', $url='', $id='', $userRight=1, $params=array())
Function dolGetButtonAction.
dol_htmlcleanlastbr($stringtodecode)
This function remove all ending and br at end.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0)
Set event messages in dol_events session object.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0, $cleanalsojavascript=0)
Returns text escaped for inclusion in HTML alt or title or value tags, or into values of HTML input f...