dolibarr 21.0.0-beta
card.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3 * Copyright (C) 2004-2014 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2005 Marc Barilley / Ocebo <marc@ocebo.com>
5 * Copyright (C) 2005-2009 Regis Houssin <regis.houssin@inodbox.com>
6 * Copyright (C) 2021 Gauthier VERDOL <gauthier.verdol@atm-consulting.fr>
7 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
8 * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 3 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program. If not, see <https://www.gnu.org/licenses/>.
22 */
23
31// Load Dolibarr environment
32require '../../main.inc.php';
33require_once DOL_DOCUMENT_ROOT.'/compta/tva/class/tva.class.php';
34require_once DOL_DOCUMENT_ROOT.'/compta/tva/class/paymentvat.class.php';
35require_once DOL_DOCUMENT_ROOT.'/compta/facture/class/facture.class.php';
36require_once DOL_DOCUMENT_ROOT.'/core/modules/facture/modules_facture.php';
37if (isModEnabled("bank")) {
38 require_once DOL_DOCUMENT_ROOT.'/compta/bank/class/account.class.php';
39}
40
49// Load translation files required by the page
50$langs->loadLangs(array('bills', 'banks', 'companies'));
51
52// Security check
53$id = GETPOSTINT("id");
54$action = GETPOST('action', 'aZ09');
55$confirm = GETPOST('confirm');
56if ($user->socid) {
57 $socid = $user->socid;
58}
59// TODO ajouter regle pour restreindre access paiement
60//$result = restrictedArea($user, 'facture', $id,'');
61
62$object = new PaymentVAT($db);
63if ($id > 0) {
64 $result = $object->fetch($id);
65 if (!$result) {
66 dol_print_error($db, 'Failed to get payment id '.$id);
67 }
68}
69
70
71/*
72 * Actions
73 */
74
75// Delete payment
76if ($action == 'confirm_delete' && $confirm == 'yes' && $user->hasRight('tax', 'charges', 'supprimer')) {
77 $db->begin();
78
79 $result = $object->delete($user);
80 if ($result > 0) {
81 $db->commit();
82 header("Location: ".DOL_URL_ROOT."/compta/tva/payments.php?mode=tvaonly");
83 exit;
84 } else {
85 setEventMessages($object->error, $object->errors, 'errors');
86 $db->rollback();
87 }
88}
89
90$outputlangs = $langs;
91
92// Validate social contribution
93/*
94if ($action == 'confirm_valide' && $confirm == 'yes' && $user->rights->tax->charges->creer)
95{
96 $db->begin();
97
98 $result=$object->valide();
99
100 if ($result > 0)
101 {
102 $db->commit();
103
104 $factures=array(); // TODO Get all id of invoices linked to this payment
105 foreach($factures as $id)
106 {
107 $fac = new Facture($db);
108 $fac->fetch($id);
109
110 $outputlangs = $langs;
111 if (!empty($_REQUEST['lang_id']))
112 {
113 $outputlangs = new Translate("",$conf);
114 $outputlangs->setDefaultLang($_REQUEST['lang_id']);
115 }
116 if (empty($conf->global->MAIN_DISABLE_PDF_AUTOUPDATE)) {
117 $fac->generateDocument($fac->model_pdf, $outputlangs);
118 }
119 }
120
121 header('Location: card.php?id='.$object->id);
122 exit;
123 }
124 else
125 {
126 setEventMessages($object->error, $object->errors, 'errors');
127 $db->rollback();
128 }
129}
130*/
131
132
133/*
134 * View
135 */
136
137llxHeader();
138
139$tva = new Tva($db);
140$form = new Form($db);
141
142$h = 0;
143
144$head = array();
145$head[$h][0] = DOL_URL_ROOT.'/compta/payment_vat/card.php?id='.$id;
146$head[$h][1] = $langs->trans("VATPayment");
147$hselected = (string) $h;
148$h++;
149
150/*$head[$h][0] = DOL_URL_ROOT.'/compta/payment_sc/info.php?id='.$id;
151$head[$h][1] = $langs->trans("Info");
152$h++;
153*/
154
155
156print dol_get_fiche_head($head, $hselected, $langs->trans("VATPayment"), -1, 'payment');
157
158/*
159 * Deletion confirmation of payment
160 */
161if ($action == 'delete') {
162 print $form->formconfirm('card.php?id='.$object->id, $langs->trans("DeletePayment"), $langs->trans("ConfirmDeletePayment"), 'confirm_delete', '', 0, 2);
163}
164
165
166
167$linkback = '<a href="'.DOL_URL_ROOT.'/compta/tva/payments.php">'.$langs->trans("BackToList").'</a>';
168
169dol_banner_tab($object, 'id', $linkback, 1, 'rowid', 'id', '');
170
171
172print '<div class="fichecenter">';
173print '<div class="underbanner clearboth"></div>';
174
175print '<table class="border centpercent">';
176
177// Date
178print '<tr><td>'.$langs->trans('Date').'</td><td>'.dol_print_date($object->datep, 'day').'</td></tr>';
179
180// Mode
181print '<tr><td>'.$langs->trans('Mode').'</td><td>'.$langs->trans("PaymentType".$object->type_code).'</td></tr>';
182
183// Numero
184print '<tr><td>'.$langs->trans('Numero').'</td><td>'.dol_escape_htmltag($object->num_payment).'</td></tr>';
185
186// Montant
187print '<tr><td>'.$langs->trans('Amount').'</td><td>'.price($object->amount, 0, $outputlangs, 1, -1, -1, $conf->currency).'</td></tr>';
188
189// Note
190print '<tr><td>'.$langs->trans('Note').'</td><td class="wordbreak sensiblehtmlcontent">'.dol_string_onlythesehtmltags(dol_htmlcleanlastbr($object->note_private)).'</td></tr>';
191
192// Bank account
193if (isModEnabled("bank")) {
194 if ($object->bank_account) {
195 $bankline = new AccountLine($db);
196 $bankline->fetch($object->bank_line);
197
198 print '<tr>';
199 print '<td>'.$langs->trans('BankTransactionLine').'</td>';
200 print '<td>';
201 print $bankline->getNomUrl(1, 0, 'showall');
202 print '</td>';
203 print '</tr>';
204 }
205}
206
207print '</table>';
208
209print '</div>';
210
211print dol_get_fiche_end();
212
213
214/*
215 * List of social contributions paid
216 */
217
218$disable_delete = 0;
219$sql = 'SELECT f.rowid as scid, f.label as label, f.paye, f.amount as tva_amount, pf.amount';
220$sql .= ' FROM '.MAIN_DB_PREFIX.'payment_vat as pf,'.MAIN_DB_PREFIX.'tva as f';
221$sql .= ' WHERE pf.fk_tva = f.rowid';
222$sql .= ' AND f.entity = '.$conf->entity;
223$sql .= ' AND pf.rowid = '.((int) $object->id);
224
225dol_syslog("compta/payment_vat/card.php", LOG_DEBUG);
226$resql = $db->query($sql);
227if ($resql) {
228 $num = $db->num_rows($resql);
229
230 $i = 0;
231 $total = 0;
232 print '<br><table class="noborder centpercent">';
233 print '<tr class="liste_titre">';
234 print '<td>'.$langs->trans('VATDeclaration').'</td>';
235 //print '<td>'.$langs->trans('Type').'</td>';
236 print '<td>'.$langs->trans('Label').'</td>';
237 print '<td class="right">'.$langs->trans('ExpectedToPay').'</td>';
238 print '<td class="center">'.$langs->trans('Status').'</td>';
239 print '<td class="right">'.$langs->trans('PayedByThisPayment').'</td>';
240 print "</tr>\n";
241
242 if ($num > 0) {
243 while ($i < $num) {
244 $objp = $db->fetch_object($resql);
245
246 print '<tr class="oddeven">';
247 // Ref
248 print '<td>';
249 $tva->fetch($objp->scid);
250 print $tva->getNomUrl(1);
251 print "</td>\n";
252 // Type
253 /* print '<td>';
254 print $tva->type_label;4
255 print "</td>\n";*/
256 // Label
257 print '<td>'.$objp->label.'</td>';
258 // Expected to pay
259 print '<td class="right"><span class="amount">'.price($objp->tva_amount).'</span></td>';
260 // Status
261 print '<td class="center">'.$tva->getLibStatut(4, $objp->amount).'</td>';
262 // Amount paid
263 print '<td class="right"><span class="amount">'.price($objp->amount).'</span></td>';
264 print "</tr>\n";
265 if ($objp->paye == 1) { // If at least one invoice is paid, disable delete
266 $disable_delete = 1;
267 }
268 $total += $objp->amount;
269 $i++;
270 }
271 }
272
273
274 print "</table>\n";
275 $db->free($resql);
276} else {
277 dol_print_error($db);
278}
279
280
281
282/*
283 * Boutons Actions
284 */
285print '<div class="tabsAction">';
286
287if ($action == '') {
288 if ($user->hasRight('tax', 'charges', 'supprimer')) {
289 if (!$disable_delete) {
290 print dolGetButtonAction($langs->trans("Delete"), '', 'delete', $_SERVER["PHP_SELF"].'?id='.$object->id.'&action=delete&token='.newToken(), 'delete', 1);
291 } else {
292 print dolGetButtonAction($langs->trans("CantRemovePaymentVATPaid"), $langs->trans("Delete"), 'delete', $_SERVER["PHP_SELF"].'?id='.$object->id.'&action=delete&token='.newToken(), 'delete', 0);
293 }
294 }
295}
296
297print '</div>';
298
299// End of page
300llxFooter();
301$db->close();
$id
Definition account.php:48
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:66
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
Definition wrapper.php:71
Class to manage bank transaction lines.
Class to manage generation of HTML components Only common components must be here.
Class to manage payments of social contributions.
Class to manage VAT - Value-added tax (also known in French as TVA - Taxe sur la valeur ajoutée)
Definition tva.class.php:38
llxFooter()
Footer empty.
Definition document.php:107
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
dol_string_onlythesehtmltags($stringtoclean, $cleanalsosomestyles=1, $removeclassattribute=1, $cleanalsojavascript=0, $allowiframe=0, $allowed_tags=array(), $allowlink=0, $allowscript=0, $allowstyle=0)
Clean a string to keep only desirable HTML tags.
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_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=null, $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
newToken()
Return the value of token currently saved into session with name 'newtoken'.
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.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
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...
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...
Definition member.php:79