dolibarr 24.0.0-beta
payment.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2015 Alexandre Spangaro <aspangaro@open-dsi.fr>
3 * Copyright (C) 2015 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2018-2026 Frédéric France <frederic.france@free.fr>
5 * Copyright (C) 2024-2025 MDW <mdeweerd@users.noreply.github.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19 */
20
27// Load Dolibarr environment
28require '../../main.inc.php';
36require_once DOL_DOCUMENT_ROOT.'/expensereport/class/expensereport.class.php';
37require_once DOL_DOCUMENT_ROOT.'/expensereport/class/paymentexpensereport.class.php';
38require_once DOL_DOCUMENT_ROOT.'/compta/bank/class/account.class.php';
39
40// Load translation files required by the page
41$langs->loadLangs(array('bills', 'banks', 'trips'));
42
43$id = GETPOSTINT('id');
44$ref = GETPOST('ref', 'alpha');
45$action = GETPOST('action', 'aZ09');
46$amounts = array();
47$accountid = GETPOSTINT('accountid');
48$cancel = GETPOST('cancel');
49
51
52if ($id > 0) {
53 $result = $object->fetch($id);
54 if (!$result) {
55 dol_print_error($db, 'Failed to get payment id '.$id);
56 }
57}
58
59// Security check
60$socid = 0;
61if ($user->isExternalUser()) {
62 $socid = $user->isExternalUser();
63}
64
65$result = restrictedArea($user, 'expensereport', $object->fk_expensereport, 'expensereport');
66
67$permissiontoadd = $user->hasRight('expensereport', 'creer');
68
69
70/*
71 * Actions
72 */
73
74if ($action == 'add_payment' && $permissiontoadd) {
75 $error = 0;
76
77 if ($cancel) {
78 $loc = DOL_URL_ROOT.'/expensereport/card.php?id='.$id;
79 header("Location: ".$loc);
80 exit;
81 }
82
83 $expensereport = new ExpenseReport($db);
84 $result = $expensereport->fetch($id, $ref);
85 if (!$result) {
86 $error++;
87 setEventMessages($expensereport->error, $expensereport->errors, 'errors');
88 }
89
90 $datepaid = dol_mktime(12, 0, 0, GETPOSTINT("remonth"), GETPOSTINT("reday"), GETPOSTINT("reyear"));
91
92 if (!(GETPOSTINT("fk_typepayment") > 0)) {
93 setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentities("PaymentMode")), null, 'errors');
94 $error++;
95 }
96 if ($datepaid == '') {
97 setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentities("Date")), null, 'errors');
98 $error++;
99 }
100
101 if (isModEnabled("bank") && !($accountid > 0)) {
102 setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentities("AccountToDebit")), null, 'errors');
103 $error++;
104 }
105
106 if (!$error) {
107 $paymentid = 0;
108 // $total = 0;
109
110 // Read possible payments
111 foreach ($_POST as $key => $value) {
112 if (substr($key, 0, 7) == 'amount_') {
113 if (GETPOST($key)) {
114 $amounts[$expensereport->fk_user_author] = (float) price2num(GETPOST($key));
115 // $total += price2num(GETPOST($key));
116 }
117 }
118 }
119
120 if (count($amounts) <= 0) {
121 $error++;
122 setEventMessages('ErrorNoPaymentDefined', null, 'errors');
123 }
124
125 if (!$error) {
126 $db->begin();
127
128 // Create a line of payments
129 $payment = new PaymentExpenseReport($db);
130 $payment->fk_expensereport = $expensereport->id;
131 $payment->datep = $datepaid;
132 $payment->amounts = $amounts; // array of amounts
133 // total is calculated in class
134 // $payment->total = $total;
135 $payment->fk_typepayment = GETPOSTINT("fk_typepayment");
136 $payment->num_payment = GETPOST("num_payment", 'alphanohtml');
137 $payment->note_public = GETPOST("note_public", 'restricthtml');
138 $payment->fk_bank = $accountid;
139
140 if (!$error) {
141 $paymentid = $payment->create($user);
142 if ($paymentid < 0) {
143 setEventMessages($payment->error, $payment->errors, 'errors');
144 $error++;
145 }
146 }
147
148 if (!$error) {
149 $result = $payment->addPaymentToBank($user, 'payment_expensereport', '(ExpenseReportPayment)', $accountid, '', '');
150 if ($result <= 0) {
151 setEventMessages($payment->error, $payment->errors, 'errors');
152 $error++;
153 }
154 }
155
156 if (!$error) {
157 $payment->fetch($paymentid);
158 if ($expensereport->total_ttc - $payment->amount == 0) {
159 $result = $expensereport->setPaid($expensereport->id, $user);
160 if (!($result > 0)) {
161 setEventMessages($payment->error, $payment->errors, 'errors');
162 $error++;
163 }
164 }
165 }
166
167 if (!$error) {
168 $db->commit();
169 $loc = DOL_URL_ROOT.'/expensereport/card.php?id='.$id;
170 header('Location: '.$loc);
171 exit;
172 } else {
173 $db->rollback();
174 }
175 }
176 }
177
178 $action = 'create';
179}
180
181
182/*
183 * View
184 */
185
186llxHeader();
187
188$form = new Form($db);
189
190
191// Form to create expense report payment
192if ($action == 'create' || empty($action)) {
193 $expensereport = new ExpenseReport($db);
194 $expensereport->fetch($id, $ref);
195
196 $total = $expensereport->total_ttc;
197
198 // autofill remainder amount
199 if (!empty($conf->use_javascript_ajax)) {
200 print "\n".'<script type="text/javascript">';
201 //Add js for AutoFill
202 print ' $(document).ready(function () {';
203 print ' $(".AutoFillAmount").on(\'click touchstart\', function(){
204 var amount = $(this).data("value");
205 document.getElementById($(this).data(\'rowid\')).value = amount ;
206 });';
207 print "\t});\n";
208 print "</script>\n";
209 }
210
211 print load_fiche_titre($langs->trans("DoPayment"));
212
213 print '<form name="add_payment" action="'.$_SERVER['PHP_SELF'].'" method="post">';
214 print '<input type="hidden" name="token" value="'.newToken().'">';
215 print '<input type="hidden" name="id" value="'.$expensereport->id.'">';
216 print '<input type="hidden" name="chid" value="'.$expensereport->id.'">';
217 print '<input type="hidden" name="action" value="add_payment">';
218
219 print dol_get_fiche_head([], '0', '', -1);
220
221 $linkback = '';
222 // $linkback = '<a href="' . DOL_URL_ROOT . '/expensereport/payment/list.php">' . $langs->trans("BackToList") . '</a>';
223
224 dol_banner_tab($expensereport, 'ref', $linkback, 1, 'ref', 'ref', '');
225
226 print '<div class="fichecenter">';
227 print '<div class="underbanner clearboth"></div>';
228
229 print '<table class="border centpercent">'."\n";
230
231 print '<tr><td class="titlefield">'.$langs->trans("Period").'</td><td>'.get_date_range($expensereport->date_debut, $expensereport->date_fin, "", $langs, 0).'</td></tr>';
232 print '<tr><td>'.$langs->trans("Amount").'</td><td><span class="amount">'.price($expensereport->total_ttc, 0, $langs, 1, -1, -1, $conf->currency).'</span></td></tr>';
233
234 $sql = "SELECT sum(p.amount) as total";
235 $sql .= " FROM ".MAIN_DB_PREFIX."payment_expensereport as p, ".MAIN_DB_PREFIX."expensereport as e";
236 $sql .= " WHERE p.fk_expensereport = e.rowid AND p.fk_expensereport = ".((int) $id);
237 $sql .= ' AND e.entity IN ('.getEntity('expensereport').')';
238 $sumpaid = 0;
239 $resql = $db->query($sql);
240 if ($resql) {
241 $obj = $db->fetch_object($resql);
242 $sumpaid = $obj->total;
243 $db->free($resql);
244 }
245 print '<tr><td>'.$langs->trans("AlreadyPaid").'</td><td><span class="amount">'.price($sumpaid, 0, $langs, 1, -1, -1, $conf->currency).'</span></td></tr>';
246 print '<tr><td class="tdtop">'.$langs->trans("RemainderToPay").'</td><td><span class="amount">'.price($total - $sumpaid, 0, $langs, 1, -1, -1, $conf->currency).'</span></td></tr>';
247
248 print '</table>';
249
250 print '</div>';
251
252 print dol_get_fiche_end();
253
254 print '<br>';
255
256 print dol_get_fiche_head();
257
258 print '<table class="border centpercent">'."\n";
259
260 print '<tr><td class="titlefield fieldrequired">'.$langs->trans("Date").'</td><td colspan="2">';
261 $datepaid = dol_mktime(12, 0, 0, GETPOSTINT("remonth"), GETPOSTINT("reday"), GETPOSTINT("reyear"));
262 $datepayment = ($datepaid == '' ? (getDolGlobalString('MAIN_AUTOFILL_DATE') ? '' : -1) : $datepaid);
263 print $form->selectDate($datepayment, '', 0, 0, 0, "add_payment", 1, 1);
264 print "</td>";
265 print '</tr>';
266
267 print '<tr><td class="fieldrequired">'.$langs->trans("PaymentMode").'</td><td colspan="2">';
268 $form->select_types_paiements(GETPOSTISSET("fk_typepayment") ? GETPOST("fk_typepayment", 'alpha') : $expensereport->fk_c_paiement, "fk_typepayment");
269 print "</td>\n";
270 print '</tr>';
271
272 if (isModEnabled("bank")) {
273 print '<tr>';
274 print '<td class="fieldrequired">'.$langs->trans('AccountToDebit').'</td>';
275 print '<td colspan="2">';
276 print img_picto('', 'bank_account', 'class="pictofixedwidth"');
277 $form->select_comptes(GETPOSTISSET("accountid") ? GETPOSTINT("accountid") : 0, "accountid", 0, '', 2); // Show open bank account list
278 print '</td></tr>';
279 }
280
281 // Number
282 print '<tr><td>'.$langs->trans('Numero');
283 print ' <em>('.$langs->trans("ChequeOrTransferNumber").')</em>';
284 print '</td>';
285 print '<td colspan="2"><input name="num_payment" type="text" value="'.GETPOST('num_payment').'"></td></tr>'."\n";
286
287 print '<tr>';
288 print '<td class="tdtop">'.$langs->trans("Comments").'</td>';
289 print '<td valign="top" colspan="2"><textarea name="note_public" wrap="soft" cols="60" rows="'.ROWS_3.'"></textarea></td>';
290 print '</tr>';
291
292 print '</table>';
293
294 print dol_get_fiche_end();
295
296 print '<br>';
297
298 // List of expenses ereport not already paid completely
299 $num = 1;
300 $i = 0;
301
302 print '<table class="noborder centpercent">';
303 print '<tr class="liste_titre">';
304 print '<td>'.$langs->trans("ExpenseReport").'</td>';
305 print '<td class="right">'.$langs->trans("Amount").'</td>';
306 print '<td class="right">'.$langs->trans("AlreadyPaid").'</td>';
307 print '<td class="right">'.$langs->trans("RemainderToPay").'</td>';
308 print '<td class="center">'.$langs->trans("Amount").'</td>';
309 print "</tr>\n";
310
311 $total_ttc = 0;
312 $totalrecu = 0;
313
314 while ($i < $num) {
315 $objp = $expensereport;
316
317 print '<tr class="oddeven">';
318
319 print '<td>'.$expensereport->getNomUrl(1)."</td>";
320 print '<td class="right">'.price($objp->total_ttc)."</td>";
321 print '<td class="right">'.price($sumpaid)."</td>";
322 print '<td class="right">'.price($objp->total_ttc - $sumpaid)."</td>";
323 print '<td class="center">';
324 if ($sumpaid < $objp->total_ttc) {
325 $namef = "amount_".$objp->id;
326 $nameRemain = "remain_".$objp->id; // autofill remainder amount
327 if (!empty($conf->use_javascript_ajax)) { // autofill remainder amount
328 print img_picto("Auto fill", 'rightarrow.png', "class='AutoFillAmount' data-rowid='".$namef."' data-value='".($objp->total_ttc - $sumpaid)."'"); // autofill remainder amount
329 }
330 $remaintopay = $objp->total_ttc - $sumpaid; // autofill remainder amount
331 print '<input type=hidden class="sum_remain" name="'.$nameRemain.'" value="'.$remaintopay.'">'; // autofill remainder amount
332 print '<input type="text" class="width75" name="'.$namef.'" id="'.$namef.'" value="'.GETPOST($namef).'">';
333 } else {
334 print '-';
335 }
336 print "</td>";
337
338 print "</tr>\n";
339
340 $total_ttc += $objp->total_ttc;
341 $totalrecu += $sumpaid;
342 $i++;
343 }
344 if ($i > 1) {
345 // Print total
346 print '<tr class="oddeven">';
347 print '<td colspan="2" class="left">'.$langs->trans("Total").':</td>';
348 print '<td class="right"><b>'.price($total_ttc).'</b></td>';
349 print '<td class="right"><b>'.price($totalrecu).'</b></td>';
350 print '<td class="right"><b>'.price($total_ttc - $totalrecu).'</b></td>';
351 print '<td class="center">&nbsp;</td>';
352 print "</tr>\n";
353 }
354
355 print "</table>";
356
357 print $form->buttonsSaveCancel();
358
359 print "</form>\n";
360}
361
362// End of page
363llxFooter();
364$db->close();
$id
Support class for third parties, contacts, members, users or resources.
Definition account.php:47
if(! $sortfield) if(! $sortorder) $object
Definition account.php:100
llxFooter($comment='', $zone='private', $disabledoutputofmessages=0)
Empty footer.
Definition wrapper.php:91
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:73
Class to manage Trips and Expenses.
Class to manage generation of HTML components Only common components must be here.
Class to manage payments of expense report.
if(!isModEnabled('ai')||!getDolGlobalString('AI_ASSISTANT_ENABLED')) global $conf
The main.inc.php has been included so the following variable are now defined:
if(!isModEnabled('ai')||!getDolGlobalString('AI_ASSISTANT_ENABLED')) global $db
API class for accounts.
dol_mktime($hour, $minute, $second, $month, $day, $year, $gm='auto', $check=1)
Return a timestamp date built from detailed information (by default a local PHP server timestamp) Rep...
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2, $allowothertags=array())
Show picto whatever it's its name (generic function)
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0, $morecssdiv='')
Show tabs of a record.
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
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.
get_date_range($date_start, $date_end, $format='', $outputlangs=null, $withparenthesis=1)
Format output for start and end date.
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...
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='', $morecssonpicto='widthpictotitle')
Load a title with picto.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
isModEnabled($module)
Is Dolibarr module enabled.
restrictedArea(User $user, $features, $object=0, $tableandshare='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid', $isdraft=0, $mode=0)
Check permissions of a user to show a page and an object.