123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328 |
- <?php
- /* Copyright (C) 2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
- * Copyright (C) 2010-2015 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2005-2009 Regis Houssin <regis.houssin@capnetworks.com>
- * Copyright (C) 2010-2012 Juanjo Menent <jmenent@2byte.es>
- * Copyright (C) 2018 Nicolas ZABOURI <info@inovea-conseil.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- /**
- * \file htdocs/compta/prelevement/create.php
- * \ingroup prelevement
- * \brief Prelevement creation page
- */
- require '../../main.inc.php';
- require_once DOL_DOCUMENT_ROOT.'/compta/prelevement/class/bonprelevement.class.php';
- require_once DOL_DOCUMENT_ROOT.'/compta/facture/class/facture.class.php';
- require_once DOL_DOCUMENT_ROOT.'/societe/class/societe.class.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/bank.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/prelevement.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/compta/bank/class/account.class.php';
- // Load translation files required by the page
- $langs->loadLangs(array('banks', 'categories', 'widthdrawals', 'companies', 'bills'));
- // Security check
- if ($user->societe_id) $socid=$user->societe_id;
- $result = restrictedArea($user, 'prelevement', '', '', 'bons');
- // Get supervariables
- $action = GETPOST('action','alpha');
- $mode = GETPOST('mode','alpha')?GETPOST('mode','alpha'):'real';
- $format = GETPOST('format','aZ09');
- /*
- * Actions
- */
- // Change customer bank information to withdraw
- if ($action == 'modify')
- {
- for ($i = 1 ; $i < 9 ; $i++)
- {
- dolibarr_set_const($db, GETPOST("nom$i"), GETPOST("value$i"),'chaine',0,'',$conf->entity);
- }
- }
- if ($action == 'create')
- {
- // $conf->global->PRELEVEMENT_CODE_BANQUE and $conf->global->PRELEVEMENT_CODE_GUICHET should be empty
- $bprev = new BonPrelevement($db);
- $executiondate = dol_mktime(0, 0, 0, GETPOST('remonth'), GETPOST('reday'), GETPOST('reyear'));
- $result = $bprev->create($conf->global->PRELEVEMENT_CODE_BANQUE, $conf->global->PRELEVEMENT_CODE_GUICHET, $mode, $format,$executiondate);
- if ($result < 0)
- {
- setEventMessages($bprev->error, $bprev->errors, 'errors');
- }
- elseif ($result == 0)
- {
- $mesg=$langs->trans("NoInvoiceCouldBeWithdrawed", $format);
- setEventMessages($mesg, null, 'errors');
- $mesg.='<br>'."\n";
- foreach($bprev->invoice_in_error as $key => $val)
- {
- $mesg.='<span class="warning">'.$val."</span><br>\n";
- }
- }
- else
- {
- setEventMessages($langs->trans("DirectDebitOrderCreated", $bprev->getNomUrl(1)), null);
- }
- }
- /*
- * View
- */
- $form = new Form($db);
- $thirdpartystatic=new Societe($db);
- $invoicestatic=new Facture($db);
- $bprev = new BonPrelevement($db);
- llxHeader('', $langs->trans("NewStandingOrder"));
- if (prelevement_check_config() < 0)
- {
- $langs->load("errors");
- setEventMessages($langs->trans("ErrorModuleSetupNotComplete"), null, 'errors');
- }
- /*$h=0;
- $head[$h][0] = DOL_URL_ROOT.'/compta/prelevement/create.php';
- $head[$h][1] = $langs->trans("NewStandingOrder");
- $head[$h][2] = 'payment';
- $hselected = 'payment';
- $h++;
- dol_fiche_head($head, $hselected, $langs->trans("StandingOrders"), 0, 'payment');
- */
- print load_fiche_titre($langs->trans("NewStandingOrder"));
- dol_fiche_head();
- $nb=$bprev->NbFactureAPrelever();
- $nb1=$bprev->NbFactureAPrelever(1);
- $nb11=$bprev->NbFactureAPrelever(1,1);
- $pricetowithdraw=$bprev->SommeAPrelever();
- if ($nb < 0 || $nb1 < 0 || $nb11 < 0)
- {
- dol_print_error($bprev->error);
- }
- print '<table class="border" width="100%">';
- print '<tr><td class="titlefield">'.$langs->trans("NbOfInvoiceToWithdraw").'</td>';
- print '<td>';
- print $nb;
- print '</td></tr>';
- print '<tr><td>'.$langs->trans("AmountToWithdraw").'</td>';
- print '<td>';
- print price($pricetowithdraw);
- print '</td>';
- print '</tr>';
- print '</table>';
- print '</div>';
- if ($mesg) print $mesg;
- print "<div class=\"tabsAction\">\n";
- print '<form action="' . $_SERVER['PHP_SELF'] . '?action=create" method="POST">';
- print '<input type="hidden" name="token" value="' . $_SESSION['newtoken'] . '">';
- if ($nb) {
- if ($pricetowithdraw) {
- print $langs->trans('ExecutionDate').' ';
- print $form->select_date();
- if ($mysoc->isInEEC()) {
- print '<select name="format"><option value="FRST">'.$langs->trans('SEPAFRST').'</option><option value="RCUR">'.$langs->trans('SEPARCUR').'</option></select>';
- print '<input class="butAction" type="submit" value="' . $langs->trans("CreateForSepa") . '"/>';
- } else {
- print '<a class="butAction" type="submit" href="create.php?action=create&format=ALL">' . $langs->trans("CreateAll") . "</a>\n";
- }
- }
- else
- {
- if ($mysoc->isInEEC())
- {
- print '<a class="butActionRefused" href="#">'.$langs->trans("CreateForSepaFRST")."</a>\n";
- print '<a class="butActionRefused" href="#">'.$langs->trans("CreateForSepaRCUR")."</a>\n";
- }
- else
- {
- print '<a class="butActionRefused" href="#">'.$langs->trans("CreateAll")."</a>\n";
- }
- }
- }
- else
- {
- print '<a class="butActionRefused" href="#" title="'.dol_escape_htmltag($langs->transnoentitiesnoconv("NoInvoiceToWithdraw", $langs->transnoentitiesnoconv("StandingOrders"))).'">'.$langs->trans("CreateAll")."</a>\n";
- }
- print "</div>\n";
- print '<br>';
- /*
- * Invoices waiting for withdraw
- */
- $sql = "SELECT f.facnumber, f.rowid, f.total_ttc, s.nom as name, s.rowid as socid,";
- $sql.= " pfd.date_demande, pfd.amount";
- $sql.= " FROM ".MAIN_DB_PREFIX."facture as f,";
- $sql.= " ".MAIN_DB_PREFIX."societe as s,";
- $sql.= " ".MAIN_DB_PREFIX."prelevement_facture_demande as pfd";
- $sql.= " WHERE s.rowid = f.fk_soc";
- $sql.= " AND f.entity = ".$conf->entity;
- $sql.= " AND pfd.traite = 0";
- $sql.= " AND pfd.fk_facture = f.rowid";
- if ($socid) $sql.= " AND f.fk_soc = ".$socid;
- $resql=$db->query($sql);
- if ($resql)
- {
- $num = $db->num_rows($resql);
- $i = 0;
- print load_fiche_titre($langs->trans("InvoiceWaitingWithdraw").($num > 0?' ('.$num.')':''),'','');
- print '<table class="noborder" width="100%">';
- print '<tr class="liste_titre">';
- print '<td>'.$langs->trans("Invoice").'</td>';
- print '<td>'.$langs->trans("ThirdParty").'</td>';
- print '<td>'.$langs->trans("RIB").'</td>';
- print '<td>'.$langs->trans("RUM").'</td>';
- print '<td align="right">'.$langs->trans("AmountTTC").'</td>';
- print '<td align="right">'.$langs->trans("DateRequest").'</td>';
- print '</tr>';
- if ($num)
- {
- require_once DOL_DOCUMENT_ROOT . '/societe/class/companybankaccount.class.php';
- $bac = new CompanyBankAccount($db);
- while ($i < $num && $i < 20)
- {
- $obj = $db->fetch_object($resql);
- print '<tr class="oddeven">';
- print '<td>';
- $invoicestatic->id=$obj->rowid;
- $invoicestatic->ref=$obj->facnumber;
- print $invoicestatic->getNomUrl(1,'withdraw');
- print '</td>';
- // Thirdparty
- print '<td>';
- $thirdpartystatic->fetch($obj->socid);
- print $thirdpartystatic->getNomUrl(1,'ban');
- print '</td>';
- // RIB
- print '<td>';
- print $thirdpartystatic->display_rib();
- $bac->fetch(0, $obj->socid);
- if ($bac->verif() <= 0) print img_warning('Error on default bank number for IBAN : '.$bac->error_message);
- print '</td>';
- // RUM
- print '<td>';
- print $thirdpartystatic->display_rib('rum');
- $format = $thirdpartystatic->display_rib('format');
- if ($format) print ' ('.$format.')';
- print '</td>';
- // Amount
- print '<td align="right">';
- print price($obj->amount,0,$langs,0,0,-1,$conf->currency);
- print '</td>';
- // Date
- print '<td align="right">';
- print dol_print_date($db->jdate($obj->date_demande),'day');
- print '</td>';
- print '</tr>';
- $i++;
- }
- }
- else print '<tr '.$bc[0].'><td colspan="5" class="opacitymedium">'.$langs->trans("None").'</td></tr>';
- print "</table>";
- print "<br>\n";
- }
- else
- {
- dol_print_error($db);
- }
- /*
- * List of latest withdraws
- */
- /*
- $limit=5;
- print load_fiche_titre($langs->trans("LastWithdrawalReceipts",$limit),'','');
- $sql = "SELECT p.rowid, p.ref, p.amount, p.statut";
- $sql.= ", p.datec";
- $sql.= " FROM ".MAIN_DB_PREFIX."prelevement_bons as p";
- $sql.= " WHERE p.entity IN (".getEntity('facture').")";
- $sql.= " ORDER BY datec DESC";
- $sql.=$db->plimit($limit);
- $result = $db->query($sql);
- if ($result)
- {
- $num = $db->num_rows($result);
- $i = 0;
- print"\n<!-- debut table -->\n";
- print '<table class="noborder" width="100%">';
- print '<tr class="liste_titre"><td>'.$langs->trans("Ref").'</td>';
- print '<td align="center">'.$langs->trans("Date").'</td><td align="right">'.$langs->trans("Amount").'</td>';
- print '</tr>';
- while ($i < min($num,$limit))
- {
- $obj = $db->fetch_object($result);
- print '<tr class="oddeven">';
- print "<td>";
- $bprev->id=$obj->rowid;
- $bprev->ref=$obj->ref;
- print $bprev->getNomUrl(1);
- print "</td>\n";
- print '<td align="center">'.dol_print_date($db->jdate($obj->datec),'day')."</td>\n";
- print '<td align="right">'.price($obj->amount,0,$langs,0,0,-1,$conf->currency)."</td>\n";
- print "</tr>\n";
- $i++;
- }
- print "</table><br>";
- $db->free($result);
- }
- else
- {
- dol_print_error($db);
- }
- */
- llxFooter();
- $db->close();
|