dolibarr 21.0.0-beta
fiche-rejet.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3 * Copyright (C) 2005 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2005-2010 Regis Houssin <regis.houssin@inodbox.com>
5 * Copyright (C) 2010-2012 Juanjo Menent <jmenent@2byte.es>
6 * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <https://www.gnu.org/licenses/>.
20 */
21
28// Load Dolibarr environment
29require '../../main.inc.php';
30require_once DOL_DOCUMENT_ROOT.'/core/lib/prelevement.lib.php';
31require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
32require_once DOL_DOCUMENT_ROOT.'/societe/class/societe.class.php';
33require_once DOL_DOCUMENT_ROOT.'/compta/facture/class/facture.class.php';
34require_once DOL_DOCUMENT_ROOT.'/fourn/class/fournisseur.facture.class.php';
35require_once DOL_DOCUMENT_ROOT.'/compta/prelevement/class/bonprelevement.class.php';
36require_once DOL_DOCUMENT_ROOT.'/compta/prelevement/class/rejetprelevement.class.php';
37require_once DOL_DOCUMENT_ROOT.'/compta/paiement/class/paiement.class.php';
38require_once DOL_DOCUMENT_ROOT.'/compta/bank/class/account.class.php';
39
48// Load translation files required by the page
49$langs->loadLangs(array("banks", "categories", 'withdrawals', 'bills'));
50
51// Security check
52if ($user->socid > 0) {
54}
55
56// Get supervariables
57$id = GETPOSTINT('id');
58$ref = GETPOST('ref', 'alpha');
59
60$type = GETPOST('type', 'aZ09');
61
62// Load variable for pagination
63$limit = GETPOSTINT('limit') ? GETPOSTINT('limit') : $conf->liste_limit;
64$sortfield = GETPOST('sortfield', 'aZ09comma');
65$sortorder = GETPOST('sortorder', 'aZ09comma');
66$page = GETPOSTISSET('pageplusone') ? (GETPOSTINT('pageplusone') - 1) : GETPOSTINT("page");
67if (empty($page) || $page == -1) {
68 $page = 0;
69} // If $page is not defined, or '' or -1
70$offset = $limit * $page;
71$pageprev = $page - 1;
72$pagenext = $page + 1;
73
74$object = new BonPrelevement($db);
75
76// Load object
77include DOL_DOCUMENT_ROOT.'/core/actions_fetchobject.inc.php'; // Must be 'include', not 'include_once'. Include fetch and fetch_thirdparty but not fetch_optionals
78
79// Security check
80if ($user->socid > 0) {
82}
83
84$type = $object->type;
85if ($type == 'bank-transfer') {
86 $result = restrictedArea($user, 'paymentbybanktransfer', '', '', '');
87} else {
88 $result = restrictedArea($user, 'prelevement', '', '', 'bons');
89}
90
91
92
93/*
94 * View
95 */
96
97$form = new Form($db);
98
99$thirdpartystatic = new Societe($db);
100$invoicestatic = new Facture($db);
101$invoicesupplierstatic = new FactureFournisseur($db);
102$rej = new RejetPrelevement($db, $user, $type);
103
104
105llxHeader('', $langs->trans("WithdrawalsReceipts"));
106
107if ($id > 0 || $ref) {
108 if ($object->fetch($id, $ref) >= 0) {
109 $head = prelevement_prepare_head($object);
110 print dol_get_fiche_head($head, 'rejects', $langs->trans("WithdrawalsReceipts"), -1, 'payment');
111
112 $linkback = '<a href="'.DOL_URL_ROOT.'/compta/prelevement/orders_list.php?restore_lastsearch_values=1'.($object->type != 'bank-transfer' ? '' : '&type=bank-transfer').'">'.$langs->trans("BackToList").'</a>';
113
114 dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'ref');
115
116 print '<div class="fichecenter">';
117 print '<div class="underbanner clearboth"></div>';
118 print '<table class="border centpercent tableforfield">'."\n";
119
120 //print '<tr><td class="titlefieldcreate">'.$langs->trans("Ref").'</td><td>'.$object->getNomUrl(1).'</td></tr>';
121 print '<tr><td class="titlefieldcreate">'.$langs->trans("Date").'</td><td>'.dol_print_date($object->datec, 'day').'</td></tr>';
122 print '<tr><td>'.$langs->trans("Amount").'</td><td><span class="amount">'.price($object->amount).'</span></td></tr>';
123
124 if (!empty($object->date_trans)) {
125 $muser = new User($db);
126 $muser->fetch($object->user_trans);
127
128 print '<tr><td>'.$langs->trans("TransData").'</td><td>';
129 print dol_print_date($object->date_trans, 'day');
130 print ' &nbsp; <span class="opacitymedium">'.$langs->trans("By").'</span> '.$muser->getNomUrl(-1).'</td></tr>';
131 print '<tr><td>'.$langs->trans("TransMetod").'</td><td>';
132 print $object->methodes_trans[$object->method_trans];
133 print '</td></tr>';
134 }
135 if (!empty($object->date_credit)) {
136 print '<tr><td>'.$langs->trans('CreditDate').'</td><td>';
137 print dol_print_date($object->date_credit, 'day');
138 print '</td></tr>';
139 }
140
141 print '</table>';
142
143 print '<br>';
144
145 print '<div class="underbanner clearboth"></div>';
146 print '<table class="border centpercent tableforfield">';
147
148 // Get bank account for the payment
149 $acc = new Account($db);
150 $fk_bank_account = $object->fk_bank_account;
151 if (empty($fk_bank_account)) {
152 $fk_bank_account = ($object->type == 'bank-transfer' ? getDolGlobalInt('PAYMENTBYBANKTRANSFER_ID_BANKACCOUNT') : getDolGlobalInt('PRELEVEMENT_ID_BANKACCOUNT'));
153 }
154 if ($fk_bank_account > 0) {
155 $result = $acc->fetch($fk_bank_account);
156 }
157
158 $labelofbankfield = "BankToReceiveWithdraw";
159 if ($object->type == 'bank-transfer') {
160 $labelofbankfield = 'BankToPayCreditTransfer';
161 }
162
163 print '<tr><td class="titlefieldcreate">';
164 print $form->textwithpicto($langs->trans("BankAccount"), $langs->trans($labelofbankfield));
165 print '</td>';
166 print '<td>';
167 if ($acc->id > 0) {
168 print $acc->getNomUrl(1);
169 }
170 print '</td>';
171 print '</tr>';
172
173 $modulepart = 'prelevement';
174 if ($object->type == 'bank-transfer') {
175 $modulepart = 'paymentbybanktransfer';
176 }
177
178 print '<tr><td class="titlefieldcreate">';
179 $labelfororderfield = 'WithdrawalFile';
180 if ($object->type == 'bank-transfer') {
181 $labelfororderfield = 'CreditTransferFile';
182 }
183 print $langs->trans($labelfororderfield).'</td><td>';
184
185 if (isModEnabled('multicompany')) {
186 $labelentity = $conf->entity;
187 $relativepath = 'receipts/'.$object->ref.'-'.$labelentity.'.xml';
188
189 if ($type != 'bank-transfer') {
190 $dir = $conf->prelevement->dir_output;
191 } else {
192 $dir = $conf->paymentbybanktransfer->dir_output;
193 }
194 if (!dol_is_file($dir.'/'.$relativepath)) { // For backward compatibility
195 $relativepath = 'receipts/'.$object->ref.'.xml';
196 }
197 } else {
198 $relativepath = 'receipts/'.$object->ref.'.xml';
199 }
200
201 print '<a data-ajax="false" href="'.DOL_URL_ROOT.'/document.php?type=text/plain&amp;modulepart='.$modulepart.'&amp;file='.urlencode($relativepath).'">'.$relativepath;
202 print img_picto('', 'download', 'class="paddingleft"');
203 print '</a>';
204 print '</td></tr></table>';
205
206 print '</div>';
207
208 print dol_get_fiche_end();
209 } else {
210 dol_print_error($db);
211 }
212}
213
214
215// List errors
216
217$sql = "SELECT pl.rowid, pl.amount, pl.statut";
218$sql .= " , s.rowid as socid, s.nom as name";
219$sql .= " , pr.motif, pr.afacturer, pr.fk_facture";
220$sql .= " FROM ".MAIN_DB_PREFIX."prelevement_bons as p";
221$sql .= " , ".MAIN_DB_PREFIX."prelevement_lignes as pl";
222$sql .= " , ".MAIN_DB_PREFIX."societe as s";
223$sql .= " , ".MAIN_DB_PREFIX."prelevement_rejet as pr";
224$sql .= " WHERE p.rowid=".((int) $object->id);
225$sql .= " AND pl.fk_prelevement_bons = p.rowid";
226$sql .= " AND p.entity IN (".getEntity('facture').")";
227$sql .= " AND pl.fk_soc = s.rowid";
228$sql .= " AND pl.statut = 3 ";
229$sql .= " AND pr.fk_prelevement_lignes = pl.rowid";
230/*if ($socid) {
231 $sql .= " AND s.rowid = ".((int) $socid);
232}*/
233$sql .= " ORDER BY pl.amount DESC";
234
235// Count total nb of records
236$nbtotalofrecords = '';
237if (!getDolGlobalInt('MAIN_DISABLE_FULL_SCANLIST')) {
238 $result = $db->query($sql);
239 $nbtotalofrecords = $db->num_rows($result);
240 if (($page * $limit) > $nbtotalofrecords) { // if total resultset is smaller then paging size (filtering), goto and load page 0
241 $page = 0;
242 $offset = 0;
243 }
244}
245
246$sql .= $db->plimit($limit + 1, $offset);
247
248$resql = $db->query($sql);
249if ($resql) {
250 $num = $db->num_rows($resql);
251
252 // @phan-suppress-next-line PhanPluginSuspiciousParamOrder
253 print_barre_liste($langs->trans("Rejects"), $page, $_SERVER["PHP_SELF"], '', $sortfield, $sortorder, '', $num, $nbtotalofrecords, '');
254
255 print"\n<!-- debut table -->\n";
256 print '<div class="div-table-responsive-no-min">'; // You can use div-table-responsive-no-min if you don't need reserved height for your table
257 print '<table class="noborder centpercent">';
258 print '<tr class="liste_titre">';
259 print '<td>'.$langs->trans("Line").'</td><td>'.$langs->trans("ThirdParty").'</td><td class="right">'.$langs->trans("Amount").'</td>';
260 print '<td>'.$langs->trans("Reason").'</td><td align="center">'.$langs->trans("ToBill").'</td>';
261 print '<td class="center">';
262 // Invoice to charge the error. No yet implemented.
263 //print $langs->trans("Invoice");
264 print '</td>';
265 print '</tr>';
266
267 $total = 0;
268
269 if ($num > 0) {
270 $i = 0;
271 while ($i < $num) {
272 $obj = $db->fetch_object($resql);
273
274 $thirdpartystatic->id = $obj->socid;
275 $thirdpartystatic->name = $obj->name;
276
277 if ($obj->fk_facture > 0) {
278 $invoicestatic->fetch($obj->fk_facture);
279 }
280
281 print '<tr class="oddeven">';
282 print '<td>';
283 print '<a href="'.DOL_URL_ROOT.'/compta/prelevement/line.php?id='.$obj->rowid.'">';
284 print img_picto('', 'statut'.$obj->statut).' ';
285 print substr('000000'.$obj->rowid, -6);
286 print '</a></td>';
287 print '<td>';
288 if ($type != 'bank-transfer') {
289 print $thirdpartystatic->getNomUrl(1, 'customer');
290 } else {
291 print $thirdpartystatic->getNomUrl(1, 'supplier');
292 }
293 print '</td>'."\n";
294
295 print '<td class="right"><span class="amount">'.price($obj->amount)."</span></td>\n";
296 print '<td>'.dol_escape_htmltag($rej->motifs[$obj->motif]).'</td>';
297
298 print '<td class="center">'.yn($obj->afacturer).'</td>';
299
300 // Invoice used to charge the error
301 print '<td class="center">';
302 if ($obj->fk_facture > 0) {
303 print $invoicestatic->getNomUrl(1);
304 }
305 print '</td>';
306
307 print "</tr>\n";
308
309 $total += $obj->amount;
310
311 $i++;
312 }
313 } else {
314 print '<tr><td colspan="6"><span class="opacitymedium">'.$langs->trans("None").'</span></td></tr>';
315 }
316
317 if ($num > 0) {
318 print '<tr class="liste_total"><td>&nbsp;</td>';
319 print '<td class="liste_total">'.$langs->trans("Total").'</td>';
320 print '<td class="right"><span class="amount">'.price($total)."</span></td>\n";
321 print '<td colspan="3">&nbsp;</td>';
322 print "</tr>\n";
323 }
324 print "</table>\n";
325 print '</div>';
326
327 $db->free($resql);
328} else {
329 dol_print_error($db);
330}
331
332// End of page
333llxFooter();
334$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 accounts.
Class to manage withdrawal receipts.
Class to manage suppliers invoices.
Class to manage invoices.
Class to manage generation of HTML components Only common components must be here.
Class to manage standing orders rejects.
Class to manage third parties objects (customers, suppliers, prospects...)
Class to manage Dolibarr users.
llxFooter()
Footer empty.
Definition document.php:107
dol_is_file($pathoffile)
Return if path is a file.
print_barre_liste($title, $page, $file, $options='', $sortfield='', $sortorder='', $morehtmlcenter='', $num=-1, $totalnboflines='', $picto='generic', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limit=-1, $selectlimitsuffix=0, $hidenavigation=0, $pagenavastextinput=0, $morehtmlrightbeforearrow='')
Print a title with navigation controls for pagination.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
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)
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.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
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).
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...
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...
Definition member.php:79
prelevement_prepare_head(BonPrelevement $object)
Prepare array with list of tabs.
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.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.