dolibarr  16.0.1
list.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3  * Copyright (C) 2005-2016 Laurent Destailleur <eldy@users.sourceforge.net>
4  * Copyright (C) 2005-2009 Regis Houssin <regis.houssin@inodbox.com>
5  * Copyright (C) 2010-2018 Juanjo Menent <jmenent@2byte.es>
6  * Copyright (C) 2022 Alexandre Spangaro <aspangaro@open-dsi.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 require '../../main.inc.php';
29 require_once DOL_DOCUMENT_ROOT.'/compta/prelevement/class/bonprelevement.class.php';
30 require_once DOL_DOCUMENT_ROOT.'/compta/prelevement/class/ligneprelevement.class.php';
31 require_once DOL_DOCUMENT_ROOT.'/compta/bank/class/account.class.php';
32 
33 // Load translation files required by the page
34 $langs->loadLangs(array('banks', 'withdrawals', 'companies', 'categories'));
35 
36 $action = GETPOST('action', 'aZ09') ?GETPOST('action', 'aZ09') : 'view'; // The action 'add', 'create', 'edit', 'update', 'view', ...
37 $massaction = GETPOST('massaction', 'alpha'); // The bulk action (combo box choice into lists)
38 $show_files = GETPOST('show_files', 'int'); // Show files area generated by bulk actions ?
39 $confirm = GETPOST('confirm', 'alpha'); // Result of a confirmation
40 $cancel = GETPOST('cancel', 'alpha'); // We click on a Cancel button
41 $toselect = GETPOST('toselect', 'array'); // Array of ids of elements selected into a list
42 $contextpage = GETPOST('contextpage', 'aZ') ? GETPOST('contextpage', 'aZ') : 'directdebitcredittransferlinelist'; // To manage different context of search
43 $backtopage = GETPOST('backtopage', 'alpha'); // Go back to a dedicated page
44 $optioncss = GETPOST('optioncss', 'aZ'); // Option for the css output (always '' except when 'print')
45 
46 $type = GETPOST('type', 'aZ09');
47 
48 $limit = GETPOST('limit', 'int') ?GETPOST('limit', 'int') : $conf->liste_limit;
49 $sortfield = GETPOST('sortfield', 'aZ09comma');
50 $sortorder = GETPOST('sortorder', 'aZ09comma');
51 $page = GETPOSTISSET('pageplusone') ? (GETPOST('pageplusone') - 1) : GETPOST("page", 'int');
52 if (empty($page) || $page == -1) {
53  $page = 0;
54 } // If $page is not defined, or '' or -1
55 $offset = $limit * $page;
56 $pageprev = $page - 1;
57 $pagenext = $page + 1;
58 if (!$sortorder) {
59  $sortorder = "DESC";
60 }
61 if (!$sortfield) {
62  $sortfield = "p.datec";
63 }
64 
65 $search_line = GETPOST('search_line', 'alpha');
66 $search_bon = GETPOST('search_bon', 'alpha');
67 $search_code = GETPOST('search_code', 'alpha');
68 $search_company = GETPOST('search_company', 'alpha');
69 $statut = GETPOST('statut', 'int');
70 
71 $bon = new BonPrelevement($db);
72 $line = new LignePrelevement($db);
73 $company = new Societe($db);
74 
75 $hookmanager->initHooks(array('withdrawalsreceiptslineslist'));
76 
77 // Security check
78 $socid = GETPOST('socid', 'int');
79 if ($user->socid) {
80  $socid = $user->socid;
81 }
82 if ($type == 'bank-transfer') {
83  $result = restrictedArea($user, 'paymentbybanktransfer', '', '', '');
84 } else {
85  $result = restrictedArea($user, 'prelevement', '', '', 'bons');
86 }
87 
88 
89 /*
90  * Actions
91  */
92 
93 if (GETPOST('button_removefilter_x', 'alpha') || GETPOST('button_removefilter.x', 'alpha') || GETPOST('button_removefilter', 'alpha')) { // All tests are required to be compatible with all browsers
94  $search_line = "";
95  $search_bon = "";
96  $search_code = "";
97  $search_company = "";
98  $statut = "";
99 }
100 
101 
102 /*
103  * View
104  */
105 
106 $form = new Form($db);
107 
108 llxHeader('', $langs->trans("WithdrawalsLines"));
109 
110 $sql = "SELECT p.rowid, p.ref, p.statut as status, p.datec";
111 $sql .= " , f.rowid as facid, f.ref as invoiceref, f.total_ttc";
112 $sql .= " , s.rowid as socid, s.nom as name, s.code_client, s.code_fournisseur, s.email";
113 $sql .= " , pl.amount, pl.statut as statut_ligne, pl.rowid as rowid_ligne";
114 $sql .= " FROM ".MAIN_DB_PREFIX."prelevement_bons as p";
115 $sql .= " , ".MAIN_DB_PREFIX."prelevement_lignes as pl";
116 $sql .= " , ".MAIN_DB_PREFIX."prelevement_facture as pf";
117 if ($type == 'bank-transfer') {
118  $sql .= " , ".MAIN_DB_PREFIX."facture_fourn as f";
119 } else {
120  $sql .= " , ".MAIN_DB_PREFIX."facture as f";
121 }
122 $sql .= " , ".MAIN_DB_PREFIX."societe as s";
123 $sql .= " WHERE pl.fk_prelevement_bons = p.rowid";
124 $sql .= " AND pf.fk_prelevement_lignes = pl.rowid";
125 if ($type == 'bank-transfer') {
126  $sql .= " AND pf.fk_facture_fourn = f.rowid";
127 } else {
128  $sql .= " AND pf.fk_facture = f.rowid";
129 }
130 $sql .= " AND f.fk_soc = s.rowid";
131 $sql .= " AND f.entity IN (".getEntity('invoice').")";
132 if ($socid) {
133  $sql .= " AND s.rowid = ".((int) $socid);
134 }
135 if ($search_line) {
136  $sql .= " AND pl.rowid = '".$db->escape($search_line)."'";
137 }
138 if ($search_bon) {
139  $sql .= natural_search("p.ref", $search_bon);
140 }
141 if ($type == 'bank-transfer') {
142  if ($search_code) {
143  $sql .= natural_search("s.code_fournisseur", $search_code);
144  }
145 } else {
146  if ($search_code) {
147  $sql .= natural_search("s.code_client", $search_code);
148  }
149 }
150 if ($search_company) {
151  $sql .= natural_search("s.nom", $search_company);
152 }
153 
154 $sql .= $db->order($sortfield, $sortorder);
155 
156 // Count total nb of records
157 $nbtotalofrecords = '';
158 if (empty($conf->global->MAIN_DISABLE_FULL_SCANLIST)) {
159  $result = $db->query($sql);
160  $nbtotalofrecords = $db->num_rows($result);
161  if (($page * $limit) > $nbtotalofrecords) { // if total resultset is smaller then paging size (filtering), goto and load page 0
162  $page = 0;
163  $offset = 0;
164  }
165 }
166 
167 $sql .= $db->plimit($limit + 1, $offset);
168 
169 $result = $db->query($sql);
170 if ($result) {
171  $num = $db->num_rows($result);
172  $i = 0;
173 
174  $param = "&amp;statut=".urlencode($statut);
175  $param .= "&amp;search_bon=".urlencode($search_bon);
176  if ($type == 'bank-transfer') {
177  $param .= '&amp;type=bank-transfer';
178  }
179  if ($limit > 0 && $limit != $conf->liste_limit) {
180  $param .= '&limit='.urlencode($limit);
181  }
182 
183  print"\n<!-- debut table -->\n";
184  print '<form method="POST" id="searchFormList" action="'.$_SERVER["PHP_SELF"].'">'."\n";
185  if ($optioncss != '') {
186  print '<input type="hidden" name="optioncss" value="'.$optioncss.'">';
187  }
188  print '<input type="hidden" name="token" value="'.newToken().'">';
189  print '<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
190  print '<input type="hidden" name="action" value="list">';
191  print '<input type="hidden" name="sortfield" value="'.$sortfield.'">';
192  print '<input type="hidden" name="sortorder" value="'.$sortorder.'">';
193  print '<input type="hidden" name="contextpage" value="'.$contextpage.'">';
194 
195  $title = $langs->trans("WithdrawalsLines");
196  if ($type == 'bank-transfer') {
197  $title = $langs->trans("CreditTransferLines");
198  }
199  print_barre_liste($title, $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, '', $num, $nbtotalofrecords, 'generic', 0, '', '', $limit, 0, 0, 1);
200 
201  $moreforfilter = '';
202 
203  print '<div class="div-table-responsive">';
204  print '<table class="tagtable liste'.($moreforfilter ? " listwithfilterbefore" : "").'">'."\n";
205 
206  print '<tr class="liste_titre">';
207  print '<td class="liste_titre"><input type="text" class="flat" name="search_line" value="'.dol_escape_htmltag($search_line).'" size="6"></td>';
208  print '<td class="liste_titre"><input type="text" class="flat" name="search_bon" value="'.dol_escape_htmltag($search_bon).'" size="6"></td>';
209  print '<td class="liste_titre">&nbsp;</td>';
210  print '<td class="liste_titre"><input type="text" class="flat" name="search_company" value="'.dol_escape_htmltag($search_company).'" size="6"></td>';
211  print '<td class="liste_titre center"><input type="text" class="flat" name="search_code" value="'.dol_escape_htmltag($search_code).'" size="6"></td>';
212  print '<td class="liste_titre">&nbsp;</td>';
213  print '<td class="liste_titre">&nbsp;</td>';
214  print '<td class="liste_titre maxwidthsearch">';
215  $searchpicto = $form->showFilterButtons();
216  print $searchpicto;
217  print '</td>';
218  print '</tr>';
219 
220  $columntitle = "WithdrawalsReceipts";
221  $columntitlethirdparty = "CustomerCode";
222  $columncodethirdparty = "s.code_client";
223  if ($type == 'bank-transfer') {
224  $columntitle = "BankTransferReceipts";
225  $columntitlethirdparty = "SupplierCode";
226  $columncodethirdparty = "s.code_fournisseur";
227  }
228 
229  print '<tr class="liste_titre">';
230  print_liste_field_titre($columntitle, $_SERVER["PHP_SELF"], "p.ref", '', $param, '', $sortfield, $sortorder);
231  print_liste_field_titre("Line", $_SERVER["PHP_SELF"], '', '', $param, '', $sortfield, $sortorder);
232  print_liste_field_titre("Bill", $_SERVER["PHP_SELF"], "f.ref", '', $param, '', $sortfield, $sortorder);
233  print_liste_field_titre("Company", $_SERVER["PHP_SELF"], "s.nom", '', $param, '', $sortfield, $sortorder);
234  print_liste_field_titre($columntitlethirdparty, $_SERVER["PHP_SELF"], $columncodethirdparty, '', $param, '', $sortfield, $sortorder, 'center ');
235  print_liste_field_titre("Date", $_SERVER["PHP_SELF"], "p.datec", "", $param, '', $sortfield, $sortorder, 'center ');
236  print_liste_field_titre("Amount", $_SERVER["PHP_SELF"], "pl.amount", "", $param, '', $sortfield, $sortorder, 'right ');
238  print "</tr>\n";
239 
240  if ($num) {
241  while ($i < min($num, $limit)) {
242  $obj = $db->fetch_object($result);
243 
244  $bon->id = $obj->rowid;
245  $bon->ref = $obj->ref;
246  $bon->statut = $obj->status;
247 
248  $company->id = $obj->socid;
249  $company->name = $obj->name;
250  $company->email = $obj->email;
251  $company->code_client = $obj->code_client;
252 
253  print '<tr class="oddeven">';
254 
255  print '<td>';
256  print $bon->getNomUrl(1);
257  print "</td>\n";
258 
259  print '<td>';
260  print $line->LibStatut($obj->statut_ligne, 2);
261  print "&nbsp;";
262  print '<a href="'.DOL_URL_ROOT.'/compta/prelevement/line.php?id='.$obj->rowid_ligne.'">';
263  print substr('000000'.$obj->rowid_ligne, -6);
264  print '</a></td>';
265 
266  print '<td>';
267  $link_to_bill = '/compta/facture/card.php?facid=';
268  $link_title = 'Invoice';
269  $link_picto = 'bill';
270  if ($type == 'bank-transfer') {
271  $link_to_bill = '/fourn/facture/card.php?facid=';
272  $link_title = 'SupplierInvoice';
273  $link_picto = 'supplier_invoice';
274  }
275  print '<a href="'.DOL_URL_ROOT.$link_to_bill.$obj->facid.'">';
276  print img_object($langs->trans($link_title), $link_picto);
277  print '&nbsp;'.$obj->invoiceref."</td>\n";
278  print '</a>';
279  print '</td>';
280 
281  print '<td>';
282  print $company->getNomUrl(1);
283  print "</td>\n";
284 
285 
286  print '<td class="center">';
287  $link_to_tab = '/comm/card.php?socid=';
288  $link_code = $obj->code_client;
289  if ($type == 'bank-transfer') {
290  $link_to_tab = '/fourn/card.php?socid=';
291  $link_code = $obj->code_fournisseur;
292  }
293  print '<a href="'.DOL_URL_ROOT.$link_to_tab.$company->id.'">'.$link_code."</a></td>\n";
294 
295  print '<td class="center">'.dol_print_date($db->jdate($obj->datec), 'day')."</td>\n";
296 
297  print '<td class="right"><span class="amount">'.price($obj->amount)."</span></td>\n";
298 
299  print '<td>&nbsp;</td>';
300 
301  print "</tr>\n";
302  $i++;
303  }
304  } else {
305  print '<tr><td colspan="8"><span class="opacitymedium">'.$langs->trans("None").'</span></td></tr>';
306  }
307  print "</table>";
308  print '</div>';
309 
310  print '</form>';
311 
312  $db->free($result);
313 } else {
314  dol_print_error($db);
315 }
316 
317 // End of page
318 llxFooter();
319 $db->close();
GETPOST($paramname, $check= 'alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
if($cancel &&!$id) if($action== 'add'&&!$cancel) if($action== 'delete') if($id) $form
Actions.
Definition: card.php:142
if(!defined('NOREQUIRESOC')) if(!defined('NOREQUIRETRAN')) if(!defined('NOCSRFCHECK')) if(!defined('NOTOKENRENEWAL')) if(!defined('NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined('NOREQUIREAJAX')) llxHeader()
Empty header.
Definition: wrapper.php:59
print_barre_liste($titre, $page, $file, $options= '', $sortfield= '', $sortorder= '', $morehtmlcenter= '', $num=-1, $totalnboflines= '', $picto= 'generic', $pictoisfullpath=0, $morehtmlright= '', $morecss= '', $limit=-1, $hideselectlimit=0, $hidenavigation=0, $pagenavastextinput=0, $morehtmlrightbeforearrow= '')
Print a title with navigation controls for pagination.
Class to manage generation of HTML components Only common components must be here.
GETPOSTISSET($paramname)
Return true if we are in a context of submitting the parameter $paramname from a POST of a form...
Class to manage third parties objects (customers, suppliers, prospects...)
print_liste_field_titre($name, $file="", $field="", $begin="", $moreparam="", $moreattrib="", $sortfield="", $sortorder="", $prefix="", $tooltip="", $forcenowrapcolumntitle=0)
Show title line of an array.
Class to manage withdrawal receipts.
img_object($titlealt, $picto, $moreatt= '', $pictoisfullpath=false, $srconly=0, $notitle=0)
Show a picto called object_picto (generic function)
natural_search($fields, $value, $mode=0, $nofirstand=0)
Generate natural SQL search string for a criteria (this criteria can be tested on one or several fiel...
restrictedArea($user, $features, $objectid=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.
dol_print_error($db= '', $error= '', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
llxFooter()
Empty footer.
Definition: wrapper.php:73
Class to manage withdrawals.