27 require
'../../main.inc.php';
28 require_once DOL_DOCUMENT_ROOT.
'/core/modules/modPrelevement.class.php';
29 require_once DOL_DOCUMENT_ROOT.
'/compta/facture/class/facture.class.php';
30 require_once DOL_DOCUMENT_ROOT.
'/fourn/class/fournisseur.facture.class.php';
31 require_once DOL_DOCUMENT_ROOT.
'/societe/class/societe.class.php';
32 require_once DOL_DOCUMENT_ROOT.
'/compta/bank/class/account.class.php';
35 $langs->loadLangs(array(
'banks',
'categories',
'withdrawals',
'companies'));
38 $socid =
GETPOST(
'socid',
'int');
39 $status =
GETPOST(
'status',
'int');
40 if ($user->socid) $socid = $user->socid;
43 $contextpage =
GETPOST(
'contextpage',
'aZ') ?
GETPOST(
'contextpage',
'aZ') :
'directdebitcredittransferlist';
44 $backtopage =
GETPOST(
'backtopage',
'alpha');
45 $optioncss =
GETPOST(
'optioncss',
'aZ');
47 $type =
GETPOST(
'type',
'aZ09');
49 $search_facture =
GETPOST(
'search_facture',
'alpha');
50 $search_societe =
GETPOST(
'search_societe',
'alpha');
53 $limit =
GETPOST(
'limit',
'int') ?
GETPOST(
'limit',
'int') : $conf->liste_limit;
54 $sortfield =
GETPOST(
"sortfield",
'alpha');
55 $sortorder =
GETPOST(
"sortorder",
'alpha');
57 if (empty($page) || $page == -1 ||
GETPOST(
'button_search',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha') || (empty($toselect) && $massaction ===
'0')) { $page = 0; }
58 $offset = $limit * $page;
59 $pageprev = $page - 1;
60 $pagenext = $page + 1;
61 if (!$sortorder) $sortorder =
"DESC";
62 if (!$sortfield) $sortfield =
"f.ref";
64 $massactionbutton =
'';
66 $hookmanager->initHooks(array(
'withdrawalstodolist'));
73 $parameters = array(
'socid' => $socid,
'limit' => $limit,
'page' => $page,
'offset' => $offset);
74 $reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action);
75 if ($reshook < 0)
setEventMessages($hookmanager->error, $hookmanager->errors,
'errors');
78 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha'))
82 $search_array_options = array();
91 if ($type !=
'bank-transfer') {
93 $title = $langs->trans(
"RequestStandingOrderToTreat");
95 $title = $langs->trans(
"RequestStandingOrderTreated");
99 $title = $langs->trans(
"RequestPaymentsByBankTransferToTreat");
101 $title = $langs->trans(
"RequestPaymentsByBankTransferTreated");
107 $thirdpartystatic =
new Societe($db);
108 if ($type ==
'bank-transfer') {
111 $invoicestatic =
new Facture($db);
116 $sql =
"SELECT f.ref, f.rowid, f.total_ttc,";
117 $sql .=
" s.nom as name, s.rowid as socid,";
118 $sql .=
" pfd.date_demande as date_demande, pfd.amount, pfd.fk_user_demande";
119 if ($type !=
'bank-transfer') {
120 $sql .=
" FROM ".MAIN_DB_PREFIX.
"facture as f,";
122 $sql .=
" FROM ".MAIN_DB_PREFIX.
"facture_fourn as f,";
124 $sql .=
" ".MAIN_DB_PREFIX.
"societe as s,";
125 $sql .=
" ".MAIN_DB_PREFIX.
"prelevement_facture_demande as pfd";
126 if (!$user->rights->societe->client->voir && !$socid) $sql .=
", ".MAIN_DB_PREFIX.
"societe_commerciaux as sc";
127 $sql .=
" WHERE s.rowid = f.fk_soc";
128 $sql .=
" AND f.entity IN (".getEntity(
'invoice').
")";
129 if (!$user->rights->societe->client->voir && !$socid) $sql .=
" AND s.rowid = sc.fk_soc AND sc.fk_user = ".$user->id;
130 if ($socid) $sql .=
" AND f.fk_soc = ".$socid;
131 if (!$status) $sql .=
" AND pfd.traite = 0";
132 $sql .=
" AND pfd.ext_payment_id IS NULL";
133 if ($status) $sql .=
" AND pfd.traite = ".$status;
134 $sql .=
" AND f.total_ttc > 0";
135 if (empty($conf->global->WITHDRAWAL_ALLOW_ANY_INVOICE_STATUS))
137 $sql .=
" AND f.fk_statut = ".Facture::STATUS_VALIDATED;
139 if ($type !=
'bank-transfer') {
140 $sql .=
" AND pfd.fk_facture = f.rowid";
142 $sql .=
" AND pfd.fk_facture_fourn = f.rowid";
144 if ($search_facture) $sql .=
natural_search(
"f.ref", $search_facture);
145 if ($search_societe) $sql .=
natural_search(
"s.nom", $search_societe);
146 $sql .= $db->order($sortfield, $sortorder);
149 $nbtotalofrecords =
'';
150 if (empty($conf->global->MAIN_DISABLE_FULL_SCANLIST))
152 $resql = $db->query($sql);
153 $nbtotalofrecords = $db->num_rows(
$resql);
154 if (($page * $limit) > $nbtotalofrecords)
161 if (is_numeric($nbtotalofrecords) && $limit > $nbtotalofrecords)
163 $num = $nbtotalofrecords;
165 $sql .= $db->plimit($limit + 1, $offset);
167 $resql = $db->query($sql);
174 $num = $db->num_rows(
$resql);
179 $newcardbutton =
'<a class="marginrightonly" href="'.DOL_URL_ROOT.
'/compta/prelevement/index.php">'.$langs->trans(
"Back").
'</a>';
180 if ($type ==
'bank-transfer') {
181 $newcardbutton =
'<a class="marginrightonly" href="'.DOL_URL_ROOT.
'/compta/paymentbybanktransfer/index.php">'.$langs->trans(
"Back").
'</a>';
184 print '<form action="'.$_SERVER[
"PHP_SELF"].
'" method="POST" id="searchFormList" name="searchFormList">';
185 if ($optioncss !=
'')
print '<input type="hidden" name="optioncss" value="'.$optioncss.
'">';
186 print '<input type="hidden" name="token" value="'.newToken().
'">';
187 print '<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
188 print '<input type="hidden" name="action" value="list">';
189 print '<input type="hidden" name="sortfield" value="'.$sortfield.
'">';
190 print '<input type="hidden" name="sortorder" value="'.$sortorder.
'">';
191 print '<input type="hidden" name="page" value="'.$page.
'">';
192 print '<input type="hidden" name="contextpage" value="'.$contextpage.
'">';
196 $label =
'NewStandingOrder';
198 if ($type ==
'bank-transfer') {
199 $label =
'NewPaymentByBankTransfer';
200 $typefilter =
'type='.$type;
202 $newcardbutton .=
dolGetButtonTitle($langs->trans($label),
'',
'fa fa-plus-circle', DOL_URL_ROOT.
'/compta/prelevement/create.php'.($typefilter ?
'?'.$typefilter :
''));
204 print_barre_liste($title, $page,
$_SERVER[
"PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords,
'generic', 0, $newcardbutton,
'', $limit);
206 print '<table class="liste centpercent">';
208 print '<tr class="liste_titre">';
216 print '<tr class="liste_titre">';
217 print '<td class="liste_titre"><input type="text" class="flat maxwidth150" name="search_facture" value="'.dol_escape_htmltag($search_facture).
'"></td>';
218 print '<td class="liste_titre"><input type="text" class="flat maxwidth150" name="search_societe" value="'.dol_escape_htmltag($search_societe).
'"></td>';
219 print '<td class="liste_titre"></td>';
220 print '<td class="liste_titre"></td>';
222 print '<td class="liste_titre maxwidthsearch">';
223 $searchpicto = $form->showFilterButtons();
229 while ($i < min($num, $limit))
231 $obj = $db->fetch_object(
$resql);
232 if (empty($obj))
break;
234 $invoicestatic->fetch($obj->rowid);
236 print '<tr class="oddeven">';
240 print $invoicestatic->getNomUrl(1,
'withdraw');
244 $thirdpartystatic->id = $obj->socid;
245 $thirdpartystatic->name = $obj->name;
246 print $thirdpartystatic->getNomUrl(1,
'customer');
249 print '<td class="right">';
250 print price($obj->amount, 1, $langs, 1, -1, -1, $conf->currency).
' / '.
price($obj->total_ttc, 1, $langs, 1, -1, -1, $conf->currency);
253 print '<td class="center">'.dol_print_date($db->jdate($obj->date_demande),
'day').
'</td>';
255 print '<td class="right"></td>';
261 print "</table><br>";
GETPOST($paramname, $check= 'alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dolGetButtonTitle($label, $helpText= '', $iconClass= 'fa fa-file', $url= '', $id= '', $status=1, $params=array())
Function dolGetButtonTitle : this kind of buttons are used in title in list.
Class to manage suppliers invoices.
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...
setEventMessages($mesg, $mesgs, $style= 'mesgs', $messagekey= '')
Set event messages in dol_events session object.
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.
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.
restrictedArea($user, $features, $objectid=0, $tableandshare= '', $feature2= '', $dbt_keyfield= 'fk_soc', $dbt_select= 'rowid', $isdraft=0)
Check permissions of a user to show a page and an object.
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...
print $_SERVER["PHP_SELF"]
Edit parameters.
print
Draft customers invoices.
if(!empty($conf->facture->enabled)&&$user->rights->facture->lire) if((!empty($conf->fournisseur->enabled)&&empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD)||!empty($conf->supplier_invoice->enabled))&&$user->rights->fournisseur->facture->lire) if(!empty($conf->don->enabled)&&$user->rights->don->lire) if(!empty($conf->tax->enabled)&&$user->rights->tax->charges->lire) if(!empty($conf->facture->enabled)&&!empty($conf->commande->enabled)&&$user->rights->commande->lire &&empty($conf->global->WORKFLOW_DISABLE_CREATE_INVOICE_FROM_ORDER)) if(!empty($conf->facture->enabled)&&$user->rights->facture->lire) if((!empty($conf->fournisseur->enabled)&&empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD)||!empty($conf->supplier_invoice->enabled))&&$user->rights->fournisseur->facture->lire) $resql
Social contributions to pay.
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 invoices.