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';
34 $langs->loadLangs(array(
'banks',
'withdrawals',
'companies',
'categories'));
36 $action =
GETPOST(
'action',
'aZ09') ?
GETPOST(
'action',
'aZ09') :
'view';
37 $massaction =
GETPOST(
'massaction',
'alpha');
38 $show_files =
GETPOST(
'show_files',
'int');
39 $confirm =
GETPOST(
'confirm',
'alpha');
40 $cancel =
GETPOST(
'cancel',
'alpha');
41 $toselect =
GETPOST(
'toselect',
'array');
42 $contextpage =
GETPOST(
'contextpage',
'aZ') ?
GETPOST(
'contextpage',
'aZ') :
'directdebitcredittransferlinelist';
43 $backtopage =
GETPOST(
'backtopage',
'alpha');
44 $optioncss =
GETPOST(
'optioncss',
'aZ');
46 $type =
GETPOST(
'type',
'aZ09');
48 $limit =
GETPOST(
'limit',
'int') ?
GETPOST(
'limit',
'int') : $conf->liste_limit;
49 $sortfield =
GETPOST(
'sortfield',
'aZ09comma');
50 $sortorder =
GETPOST(
'sortorder',
'aZ09comma');
52 if (empty($page) || $page == -1) {
55 $offset = $limit * $page;
56 $pageprev = $page - 1;
57 $pagenext = $page + 1;
62 $sortfield =
"p.datec";
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');
75 $hookmanager->initHooks(array(
'withdrawalsreceiptslineslist'));
78 $socid =
GETPOST(
'socid',
'int');
80 $socid = $user->socid;
82 if ($type ==
'bank-transfer') {
83 $result =
restrictedArea($user,
'paymentbybanktransfer',
'',
'',
'');
93 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
108 llxHeader(
'', $langs->trans(
"WithdrawalsLines"));
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";
120 $sql .=
" , ".MAIN_DB_PREFIX.
"facture as f";
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";
128 $sql .=
" AND pf.fk_facture = f.rowid";
130 $sql .=
" AND f.fk_soc = s.rowid";
131 $sql .=
" AND f.entity IN (".getEntity(
'invoice').
")";
133 $sql .=
" AND s.rowid = ".((int) $socid);
136 $sql .=
" AND pl.rowid = '".$db->escape($search_line).
"'";
141 if ($type ==
'bank-transfer') {
150 if ($search_company) {
154 $sql .= $db->order($sortfield, $sortorder);
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) {
167 $sql .= $db->plimit($limit + 1, $offset);
169 $result = $db->query($sql);
171 $num = $db->num_rows($result);
174 $param =
"&statut=".urlencode($statut);
175 $param .=
"&search_bon=".urlencode($search_bon);
176 if ($type ==
'bank-transfer') {
177 $param .=
'&type=bank-transfer';
179 if ($limit > 0 && $limit != $conf->liste_limit) {
180 $param .=
'&limit='.urlencode($limit);
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.
'">';
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.
'">';
195 $title = $langs->trans(
"WithdrawalsLines");
196 if ($type ==
'bank-transfer') {
197 $title = $langs->trans(
"CreditTransferLines");
199 print_barre_liste($title, $page, $_SERVER[
"PHP_SELF"], $param, $sortfield, $sortorder,
'', $num, $nbtotalofrecords,
'generic', 0,
'',
'', $limit, 0, 0, 1);
203 print
'<div class="div-table-responsive">';
204 print
'<table class="tagtable liste'.($moreforfilter ?
" listwithfilterbefore" :
"").
'">'.
"\n";
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"> </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"> </td>';
213 print
'<td class="liste_titre"> </td>';
214 print
'<td class="liste_titre maxwidthsearch">';
215 $searchpicto =
$form->showFilterButtons();
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";
229 print
'<tr class="liste_titre">';
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 ');
241 while ($i < min($num, $limit)) {
242 $obj = $db->fetch_object($result);
244 $bon->id = $obj->rowid;
245 $bon->ref = $obj->ref;
246 $bon->statut = $obj->status;
248 $company->id = $obj->socid;
249 $company->name = $obj->name;
250 $company->email = $obj->email;
251 $company->code_client = $obj->code_client;
253 print
'<tr class="oddeven">';
256 print $bon->getNomUrl(1);
260 print $line->LibStatut($obj->statut_ligne, 2);
262 print
'<a href="'.DOL_URL_ROOT.
'/compta/prelevement/line.php?id='.$obj->rowid_ligne.
'">';
263 print substr(
'000000'.$obj->rowid_ligne, -6);
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';
275 print
'<a href="'.DOL_URL_ROOT.$link_to_bill.$obj->facid.
'">';
276 print
img_object($langs->trans($link_title), $link_picto);
277 print
' '.$obj->invoiceref.
"</td>\n";
282 print $company->getNomUrl(1);
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;
293 print
'<a href="'.DOL_URL_ROOT.$link_to_tab.$company->id.
'">'.$link_code.
"</a></td>\n";
295 print
'<td class="center">'.dol_print_date($db->jdate($obj->datec),
'day').
"</td>\n";
297 print
'<td class="right"><span class="amount">'.price($obj->amount).
"</span></td>\n";
299 print
'<td> </td>';
305 print
'<tr><td colspan="8"><span class="opacitymedium">'.$langs->trans(
"None").
'</span></td></tr>';
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.
if(!defined('NOREQUIRESOC')) if(!defined('NOREQUIRETRAN')) if(!defined('NOCSRFCHECK')) if(!defined('NOTOKENRENEWAL')) if(!defined('NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined('NOREQUIREAJAX')) llxHeader()
Empty header.
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.
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...
Class to manage withdrawals.