30 require_once DOL_DOCUMENT_ROOT.
'/core/class/commonobject.class.php';
31 require_once DOL_DOCUMENT_ROOT.
'/compta/facture/class/facture.class.php';
32 require_once DOL_DOCUMENT_ROOT.
'/fourn/class/fournisseur.facture.class.php';
33 require_once DOL_DOCUMENT_ROOT.
'/compta/bank/class/account.class.php';
34 require_once DOL_DOCUMENT_ROOT.
'/societe/class/societe.class.php';
35 require_once DOL_DOCUMENT_ROOT.
'/compta/paiement/class/paiement.class.php';
36 require_once DOL_DOCUMENT_ROOT.
'/fourn/class/paiementfourn.class.php';
48 public $element =
'widthdraw';
53 public $table_element =
'prelevement_bons';
58 public $picto =
'payment';
60 public $date_echeance;
61 public $raison_sociale;
62 public $reference_remise;
63 public $emetteur_code_guichet;
64 public $emetteur_numero_compte;
65 public $emetteur_code_banque;
66 public $emetteur_number_key;
67 public $sepa_xml_pti_in_ctti;
69 public $emetteur_iban;
79 public $labelStatus = array();
81 public $factures = array();
83 public $invoice_in_error = array();
84 public $thirdparty_in_error = array();
86 const STATUS_DRAFT = 0;
87 const STATUS_TRANSFERED = 1;
88 const STATUS_CREDITED = 2;
89 const STATUS_DEBITED = 2;
103 $this->filename =
'';
105 $this->date_echeance =
dol_now();
106 $this->raison_sociale =
"";
107 $this->reference_remise =
"";
109 $this->emetteur_code_guichet =
"";
110 $this->emetteur_numero_compte =
"";
111 $this->emetteur_code_banque =
"";
112 $this->emetteur_number_key =
"";
113 $this->sepa_xml_pti_in_ctti =
false;
115 $this->emetteur_iban =
"";
116 $this->emetteur_bic =
"";
117 $this->emetteur_ics =
"";
119 $this->factures = array();
121 $this->methodes_trans = array();
123 $this->methodes_trans[0] =
"Internet";
143 public function AddFacture($invoice_id, $client_id, $client_nom, $amount, $code_banque, $code_guichet, $number, $number_key, $type =
'debit-order')
150 $result = $this->
addline($line_id, $client_id, $client_nom, $amount, $code_banque, $code_guichet, $number, $number_key);
154 $sql =
"INSERT INTO ".MAIN_DB_PREFIX.
"prelevement_facture (";
155 if ($type !=
'bank-transfer') {
156 $sql .=
"fk_facture";
158 $sql .=
"fk_facture_fourn";
160 $sql .=
",fk_prelevement_lignes";
161 $sql .=
") VALUES (";
162 $sql .= ((int) $invoice_id);
163 $sql .=
", ".((int) $line_id);
166 if ($this->
db->query($sql)) {
170 $this->errors[] = get_class($this).
"::AddFacture ".$this->
db->lasterror;
171 dol_syslog(get_class($this).
"::AddFacture Error $result");
175 $this->errors[] = get_class($this).
"::AddFacture linedid Empty";
176 dol_syslog(get_class($this).
"::AddFacture Error $result");
180 dol_syslog(get_class($this).
"::AddFacture Error $result");
199 public function addline(&$line_id, $client_id, $client_nom, $amount, $code_banque, $code_guichet, $number, $number_key)
208 $sql =
"SELECT rowid";
209 $sql .=
" FROM ".MAIN_DB_PREFIX.
"prelevement_lignes";
210 $sql .=
" WHERE fk_prelevement_bons = ".((int) $this->
id);
211 $sql .=
" AND fk_soc =".((int) $client_id);
212 $sql .=
" AND code_banque = '".$this->db->escape($code_banque).
"'";
213 $sql .=
" AND code_guichet = '".$this->db->escape($code_guichet).
"'";
214 $sql .=
" AND number = '".$this->db->escape($number).
"'";
226 $sql =
"INSERT INTO ".MAIN_DB_PREFIX.
"prelevement_lignes (";
227 $sql .=
"fk_prelevement_bons";
229 $sql .=
", client_nom";
231 $sql .=
", code_banque";
232 $sql .=
", code_guichet";
235 $sql .=
") VALUES (";
237 $sql .=
", ".((int) $client_id);
238 $sql .=
", '".$this->db->escape($client_nom).
"'";
239 $sql .=
", ".((float)
price2num($amount));
240 $sql .=
", '".$this->db->escape($code_banque).
"'";
241 $sql .=
", '".$this->db->escape($code_guichet).
"'";
242 $sql .=
", '".$this->db->escape($number).
"'";
243 $sql .=
", '".$this->db->escape($number_key).
"'";
246 if ($this->
db->query($sql)) {
247 $line_id = $this->
db->last_insert_id(MAIN_DB_PREFIX.
"prelevement_lignes");
250 $this->errors[] = get_class($this).
"::addline Error -2 ".$this->
db->lasterror;
251 dol_syslog(get_class($this).
"::addline Error -2");
271 $errors[1027] = $langs->trans(
"DateInvalid");
273 return $errors[abs($error)];
283 public function fetch($rowid, $ref =
'')
287 $sql =
"SELECT p.rowid, p.ref, p.amount, p.note";
288 $sql .=
", p.datec as dc";
289 $sql .=
", p.date_trans as date_trans";
290 $sql .=
", p.method_trans, p.fk_user_trans";
291 $sql .=
", p.date_credit as date_credit";
292 $sql .=
", p.fk_user_credit";
294 $sql .=
", p.statut as status";
295 $sql .=
" FROM ".MAIN_DB_PREFIX.
"prelevement_bons as p";
296 $sql .=
" WHERE p.entity IN (".getEntity(
'invoice').
")";
298 $sql .=
" AND p.rowid = ".((int) $rowid);
300 $sql .=
" AND p.ref = '".$this->db->escape($ref).
"'";
303 dol_syslog(get_class($this).
"::fetch", LOG_DEBUG);
304 $result = $this->
db->query($sql);
306 if ($this->
db->num_rows($result)) {
307 $obj = $this->
db->fetch_object($result);
309 $this->
id = $obj->rowid;
310 $this->
ref = $obj->ref;
311 $this->amount = $obj->amount;
312 $this->note = $obj->note;
313 $this->datec = $this->
db->jdate($obj->dc);
315 $this->date_trans = $this->
db->jdate($obj->date_trans);
316 $this->method_trans = $obj->method_trans;
317 $this->user_trans = $obj->fk_user_trans;
319 $this->date_credit = $this->
db->jdate($obj->date_credit);
320 $this->user_credit = $obj->fk_user_credit;
322 $this->
type = $obj->type;
324 $this->status = $obj->status;
325 $this->statut = $obj->status;
331 dol_syslog(get_class($this).
"::Fetch Erreur aucune ligne retournee");
350 global $conf, $langs;
354 if ($this->fetched == 1) {
355 if ($date < $this->date_trans) {
356 $this->error =
'DateOfMovementLowerThanDateOfFileTransmission';
357 dol_syslog(
"bon-prelevment::set_infocredit 1027 ".$this->error);
363 $sql =
" UPDATE ".MAIN_DB_PREFIX.
"prelevement_bons ";
364 $sql .=
" SET fk_user_credit = ".$user->id;
365 $sql .=
", statut = ".self::STATUS_CREDITED;
366 $sql .=
", date_credit = '".$this->db->idate($date).
"'";
367 $sql .=
" WHERE rowid=".((int) $this->
id);
368 $sql .=
" AND entity = ".((int) $conf->entity);
369 $sql .=
" AND statut = ".self::STATUS_TRANSFERED;
373 $langs->load(
'withdrawals');
374 $subject = $langs->trans(
"InfoCreditSubject", $this->
ref);
375 $message = $langs->trans(
"InfoCreditMessage", $this->
ref,
dol_print_date($date,
'dayhour'));
378 $bankaccount = ($this->
type ==
'bank-transfer' ? $conf->global->PAYMENTBYBANKTRANSFER_ID_BANKACCOUNT : $conf->global->PRELEVEMENT_ID_BANKACCOUNT);
381 $amountsperthirdparty = array();
387 for ($i = 0; $i < $num; $i++) {
388 if ($this->
type ==
'bank-transfer') {
394 $result = $fac->fetch($facs[$i][0]);
396 $amounts[$fac->id] = $facs[$i][1];
397 $amountsperthirdparty[$fac->socid][$fac->id] = $facs[$i][1];
399 $totalpaid = $fac->getSommePaiement();
400 $totalcreditnotes = $fac->getSumCreditNotesUsed();
401 $totaldeposits = $fac->getSumDepositsUsed();
402 $alreadypayed = $totalpaid + $totalcreditnotes + $totaldeposits;
405 if (
price2num($alreadypayed + $facs[$i][1],
'MT') == $fac->total_ttc) {
406 $result = $fac->setPaid($user);
408 $this->error = $fac->error;
409 $this->errors = $fac->errors;
416 foreach ($amountsperthirdparty as $thirdpartyid => $cursoramounts) {
417 if ($this->
type ==
'bank-transfer') {
422 $paiement->datepaye = $date;
423 $paiement->amounts = $cursoramounts;
425 if ($this->
type ==
'bank-transfer') {
426 $paiement->paiementid = 2;
427 $paiement->paiementcode =
'VIR';
429 $paiement->paiementid = 3;
430 $paiement->paiementcode =
'PRE';
433 $paiement->num_payment = $this->ref;
434 $paiement->id_prelevement = $this->id;
436 $paiement_id = $paiement->create($user);
437 if ($paiement_id < 0) {
439 $this->error = $paiement->error;
440 $this->errors = $paiement->errors;
441 dol_syslog(get_class($this).
"::set_infocredit AddPayment Error ".$this->error);
443 if ($this->
type ==
'bank-transfer') {
444 $modeforaddpayment =
'payment_supplier';
446 $modeforaddpayment =
'payment';
449 $result = $paiement->addPaymentToBank($user, $modeforaddpayment,
'(WithdrawalPayment)', $bankaccount,
'',
'');
452 $this->error = $paiement->error;
453 $this->errors = $paiement->errors;
454 dol_syslog(get_class($this).
"::set_infocredit AddPaymentToBank Error ".$this->error);
462 $sql =
" UPDATE ".MAIN_DB_PREFIX.
"prelevement_lignes";
463 $sql .=
" SET statut = 2";
464 $sql .=
" WHERE fk_prelevement_bons = ".((int) $this->
id);
466 if (!$this->
db->query($sql)) {
467 dol_syslog(get_class($this).
"::set_infocredit Update lines Error");
472 $this->error = $this->
db->lasterror();
473 dol_syslog(get_class($this).
"::set_infocredit Update Bons Error");
481 $this->date_credit = $date;
482 $this->statut = self::STATUS_CREDITED;
487 $this->
db->rollback();
507 global $conf, $langs;
511 dol_syslog(get_class($this).
"::set_infotrans Start", LOG_INFO);
512 if ($this->
db->begin()) {
513 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"prelevement_bons ";
514 $sql .=
" SET fk_user_trans = ".$user->id;
515 $sql .=
" , date_trans = '".$this->db->idate($date).
"'";
516 $sql .=
" , method_trans = ".((int) $method);
517 $sql .=
" , statut = ".self::STATUS_TRANSFERED;
518 $sql .=
" WHERE rowid = ".((int) $this->
id);
519 $sql .=
" AND entity = ".((int) $conf->entity);
520 $sql .=
" AND statut = 0";
522 if ($this->
db->query($sql)) {
523 $this->method_trans = $method;
524 $langs->load(
'withdrawals');
525 $subject = $langs->trans(
"InfoTransSubject", $this->
ref);
526 $message = $langs->trans(
"InfoTransMessage", $this->
ref,
dolGetFirstLastname($user->firstname, $user->lastname));
527 $message .= $langs->trans(
"InfoTransData",
price($this->amount), $this->methodes_trans[$this->method_trans],
dol_print_date($date,
'day'));
535 $this->date_trans = $date;
537 $this->user_trans = $user->id;
542 $this->
db->rollback();
543 dol_syslog(get_class($this).
"::set_infotrans ROLLBACK", LOG_ERR);
548 dol_syslog(get_class($this).
"::set_infotrans Ouverture transaction SQL impossible", LOG_CRIT);
569 if ($this->
type ==
'bank-transfer') {
570 $sql .=
" pf.fk_facture_fourn";
572 $sql .=
" pf.fk_facture";
575 $sql .=
", SUM(pl.amount)";
577 $sql .=
" FROM ".MAIN_DB_PREFIX.
"prelevement_bons as p";
578 $sql .=
" , ".MAIN_DB_PREFIX.
"prelevement_lignes as pl";
579 $sql .=
" , ".MAIN_DB_PREFIX.
"prelevement_facture as pf";
580 $sql .=
" WHERE pf.fk_prelevement_lignes = pl.rowid";
581 $sql .=
" AND pl.fk_prelevement_bons = p.rowid";
582 $sql .=
" AND p.rowid = ".((int) $this->
id);
583 $sql .=
" AND p.entity = ".((int) $conf->entity);
585 if ($this->
type ==
'bank-transfer') {
586 $sql .=
" GROUP BY fk_facture_fourn";
588 $sql .=
" GROUP BY fk_facture";
599 $row = $this->
db->fetch_row(
$resql);
613 dol_syslog(get_class($this).
"::getListInvoices Erreur");
631 $sql =
"SELECT sum(pfd.amount) as nb";
632 if ($mode !=
'bank-transfer') {
633 $sql .=
" FROM ".MAIN_DB_PREFIX.
"facture as f,";
635 $sql .=
" FROM ".MAIN_DB_PREFIX.
"facture_fourn as f,";
637 $sql .=
" ".MAIN_DB_PREFIX.
"prelevement_facture_demande as pfd";
638 $sql .=
" WHERE f.entity IN (".getEntity(
'invoice').
")";
639 if (empty($conf->global->WITHDRAWAL_ALLOW_ANY_INVOICE_STATUS)) {
640 $sql .=
" AND f.fk_statut = ".Facture::STATUS_VALIDATED;
642 if ($mode !=
'bank-transfer') {
643 $sql .=
" AND f.rowid = pfd.fk_facture";
645 $sql .=
" AND f.rowid = pfd.fk_facture_fourn";
647 $sql .=
" AND f.paye = 0";
648 $sql .=
" AND pfd.traite = 0";
649 $sql .=
" AND pfd.ext_payment_id IS NULL";
650 $sql .=
" AND f.total_ttc > 0";
654 $obj = $this->
db->fetch_object(
$resql);
661 dol_syslog(get_class($this).
"::SommeAPrelever Erreur -1");
691 $sql =
"SELECT count(f.rowid) as nb";
692 if ($type ==
'bank-transfer') {
693 $sql .=
" FROM ".MAIN_DB_PREFIX.
"facture_fourn as f";
695 $sql .=
" FROM ".MAIN_DB_PREFIX.
"facture as f";
697 $sql .=
", ".MAIN_DB_PREFIX.
"prelevement_facture_demande as pfd";
698 $sql .=
" WHERE f.entity IN (".getEntity(
'invoice').
")";
699 if (empty($conf->global->WITHDRAWAL_ALLOW_ANY_INVOICE_STATUS)) {
700 $sql .=
" AND f.fk_statut = ".Facture::STATUS_VALIDATED;
702 if ($type ==
'bank-transfer') {
703 $sql .=
" AND f.rowid = pfd.fk_facture_fourn";
705 $sql .=
" AND f.rowid = pfd.fk_facture";
707 $sql .=
" AND pfd.traite = 0";
708 $sql .=
" AND pfd.ext_payment_id IS NULL";
709 $sql .=
" AND f.total_ttc > 0";
711 dol_syslog(get_class($this).
"::NbFactureAPrelever");
715 $obj = $this->
db->fetch_object(
$resql);
721 $this->error = get_class($this).
"::NbFactureAPrelever Erreur -1 sql=".$this->
db->error();
741 public function create($banque = 0, $agence = 0, $mode =
'real', $format =
'ALL', $executiondate =
'', $notrigger = 0, $type =
'direct-debit')
744 global $conf, $langs, $user;
746 dol_syslog(__METHOD__.
"::Bank=".$banque.
" Office=".$agence.
" mode=".$mode.
" format=".$format, LOG_DEBUG);
748 require_once DOL_DOCUMENT_ROOT.
"/compta/facture/class/facture.class.php";
749 require_once DOL_DOCUMENT_ROOT.
"/societe/class/societe.class.php";
751 if ($type !=
'bank-transfer') {
752 if (empty($format)) {
753 $this->error =
'ErrorBadParametersForDirectDebitFileCreate';
760 $datetimeprev = time();
762 if (!empty($executiondate)) {
763 $datetimeprev = $executiondate;
766 $month = strftime(
"%m", $datetimeprev);
767 $year = strftime(
"%Y", $datetimeprev);
769 $this->invoice_in_error = array();
770 $this->thirdparty_in_error = array();
774 $factures_prev = array();
775 $factures_result = array();
776 $factures_prev_id = array();
777 $factures_errors = array();
780 $sql =
"SELECT f.rowid, pfd.rowid as pfdrowid, f.fk_soc";
781 $sql .=
", pfd.code_banque, pfd.code_guichet, pfd.number, pfd.cle_rib";
782 $sql .=
", pfd.amount";
783 $sql .=
", s.nom as name";
784 if ($type !=
'bank-transfer') {
785 $sql .=
" FROM ".MAIN_DB_PREFIX.
"facture as f";
787 $sql .=
" FROM ".MAIN_DB_PREFIX.
"facture_fourn as f";
789 $sql .=
", ".MAIN_DB_PREFIX.
"societe as s";
790 $sql .=
", ".MAIN_DB_PREFIX.
"prelevement_facture_demande as pfd";
791 $sql .=
" WHERE f.entity IN (".getEntity(
'invoice').
')';
792 if ($type !=
'bank-transfer') {
793 $sql .=
" AND f.rowid = pfd.fk_facture";
795 $sql .=
" AND f.rowid = pfd.fk_facture_fourn";
797 $sql .=
" AND s.rowid = f.fk_soc";
798 $sql .=
" AND f.fk_statut = 1";
799 $sql .=
" AND f.paye = 0";
800 $sql .=
" AND pfd.traite = 0";
801 $sql .=
" AND f.total_ttc > 0";
802 $sql .=
" AND pfd.ext_payment_id IS NULL";
804 dol_syslog(__METHOD__.
"::Read invoices,", LOG_DEBUG);
812 $row = $this->
db->fetch_row(
$resql);
813 $factures[$i] = $row;
816 dol_syslog(__METHOD__.
"::Read invoices error Found a null invoice", LOG_ERR);
817 $this->invoice_in_error[$row[0]] =
"Error for invoice id ".$row[0].
", found a null amount";
823 dol_syslog(__METHOD__.
"::Read invoices, ".$i.
" invoices to withdraw", LOG_DEBUG);
826 dol_syslog(__METHOD__.
"::Read invoices error ".$this->db->error(), LOG_ERR);
831 require_once DOL_DOCUMENT_ROOT.
'/societe/class/companybankaccount.class.php';
836 dol_syslog(__METHOD__.
"::Check BAN", LOG_DEBUG);
838 if (count($factures) > 0) {
839 foreach ($factures as $key => $fac) {
840 if ($type !=
'bank-transfer') {
845 $resfetch = $tmpinvoice->fetch($fac[0]);
846 if ($resfetch >= 0) {
847 if ($soc->fetch($tmpinvoice->socid) >= 0) {
849 $bac->fetch(0, $soc->id);
851 if ($type !=
'bank-transfer') {
852 if ($format ==
'FRST' && $bac->frstrecur !=
'FRST') {
855 if ($format ==
'RCUR' && ($bac->frstrecur !=
'RCUR' && $bac->frstrecur !=
'RECUR')) {
860 if ($bac->verif() >= 1) {
861 $factures_prev[$i] = $fac;
863 $factures_prev_id[$i] = $fac[0];
867 dol_syslog(__METHOD__.
"::Check BAN Error on default bank number IBAN/BIC for thirdparty reported by verif() ".$tmpinvoice->socid.
" ".$soc->name, LOG_WARNING);
868 $this->invoice_in_error[$fac[0]] =
"Error on default bank number IBAN/BIC for invoice ".$tmpinvoice->getNomUrl(0).
" for thirdparty ".$soc->getNomUrl(0);
869 $this->thirdparty_in_error[$soc->id] =
"Error on default bank number IBAN/BIC for invoice ".$tmpinvoice->getNomUrl(0).
" for thirdparty ".$soc->getNomUrl(0);
872 dol_syslog(__METHOD__.
"::Check BAN Failed to read company", LOG_WARNING);
875 dol_syslog(__METHOD__.
"::Check BAN Failed to read invoice", LOG_WARNING);
879 dol_syslog(__METHOD__.
"::Check BAN No invoice to process", LOG_WARNING);
886 $out = count($factures_prev).
" invoices will be included.";
899 if (count($factures_prev) > 0) {
900 if ($mode ==
'real') {
903 print $langs->trans(
"ModeWarning");
921 $ref = substr($year, -2).$month;
923 $sql =
"SELECT substring(ref from char_length(ref) - 1)";
924 $sql .=
" FROM ".MAIN_DB_PREFIX.
"prelevement_bons";
925 $sql .=
" WHERE ref LIKE '_".$this->db->escape($ref).
"%'";
926 $sql .=
" AND entity = ".((int) $conf->entity);
927 $sql .=
" ORDER BY ref DESC LIMIT 1";
929 dol_syslog(get_class($this).
"::create", LOG_DEBUG);
933 $row = $this->
db->fetch_row(
$resql);
936 $ref =
"T".$ref.sprintf(
"%02d", (intval($row[0]) + 1));
942 if ($type !=
'bank-transfer') {
943 $dir = $conf->prelevement->dir_output.
'/receipts';
945 $dir = $conf->paymentbybanktransfer->dir_output.
'/receipts';
951 $this->filename = $dir.
'/'.$ref.
'.xml';
954 $sql =
"INSERT INTO ".MAIN_DB_PREFIX.
"prelevement_bons (";
955 $sql .=
"ref, entity, datec, type";
956 $sql .=
") VALUES (";
957 $sql .=
"'".$this->db->escape($ref).
"'";
958 $sql .=
", ".((int) $conf->entity);
959 $sql .=
", '".$this->db->idate($now).
"'";
960 $sql .=
", '".($type ==
'bank-transfer' ?
'bank-transfer' :
'debit-order').
"'";
965 $prev_id = $this->
db->last_insert_id(MAIN_DB_PREFIX.
"prelevement_bons");
966 $this->
id = $prev_id;
970 dol_syslog(__METHOD__.
"::Create withdraw receipt ".$this->db->lasterror(), LOG_ERR);
974 dol_syslog(__METHOD__.
"::Get last withdraw receipt ".$this->db->lasterror(), LOG_ERR);
979 if ($type !=
'bank-transfer') {
988 if (count($factures_prev) > 0) {
989 foreach ($factures_prev as $fac) {
991 $result = $fact->fetch($fac[0]);
993 $this->error =
'ERRORBONPRELEVEMENT Failed to load invoice with id '.$fac[0];
1010 $ri = $this->
AddFacture($fac[0], $fac[2], $fac[8], $fac[7], $fac[3], $fac[4], $fac[5], $fac[6], $type);
1016 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"prelevement_facture_demande";
1017 $sql .=
" SET traite = 1";
1018 $sql .=
", date_traite = '".$this->db->idate($now).
"'";
1019 $sql .=
", fk_prelevement_bons = ".((int) $this->
id);
1020 $sql .=
" WHERE rowid = ".((int) $fac[1]);
1025 $this->errors[] = $this->
db->lasterror();
1026 dol_syslog(__METHOD__.
"::Update Error=".$this->db->lasterror(), LOG_ERR);
1037 dol_syslog(__METHOD__.
"::Init direct debit or credit transfer file for ".count($factures_prev).
" invoices", LOG_DEBUG);
1039 if (count($factures_prev) > 0) {
1040 $this->date_echeance = $datetimeprev;
1041 $this->reference_remise = $ref;
1043 $id = $conf->global->PRELEVEMENT_ID_BANKACCOUNT;
1044 if ($type ==
'bank-transfer') {
1045 $id = $conf->global->PAYMENTBYBANKTRANSFER_ID_BANKACCOUNT;
1048 if ($account->fetch($id) > 0) {
1049 $this->emetteur_code_banque = $account->code_banque;
1050 $this->emetteur_code_guichet = $account->code_guichet;
1051 $this->emetteur_numero_compte = $account->number;
1052 $this->emetteur_number_key = $account->cle_rib;
1053 $this->sepa_xml_pti_in_ctti = (bool) $account->pti_in_ctti;
1054 $this->emetteur_iban = $account->iban;
1055 $this->emetteur_bic = $account->bic;
1057 $this->emetteur_ics = ($type ==
'bank-transfer' ? $account->ics_transfer : $account->ics);
1059 $this->raison_sociale = $account->proprio;
1062 $this->factures = $factures_prev_id;
1063 $this->context[
'factures_prev'] = $factures_prev;
1067 $result = $this->
generate($format, $executiondate, $type);
1074 dol_syslog(__METHOD__.
"::End withdraw receipt, file ".$this->filename, LOG_DEBUG);
1082 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"prelevement_bons";
1083 $sql .=
" SET amount = ".price2num($this->total);
1084 $sql .=
" WHERE rowid = ".((int) $this->
id);
1085 $sql .=
" AND entity = ".((int) $conf->entity);
1090 dol_syslog(__METHOD__.
"::Error update total: ".$this->db->error(), LOG_ERR);
1094 if (!$error && !$notrigger) {
1095 $triggername =
'DIRECT_DEBIT_ORDER_CREATE';
1096 if ($type !=
'bank-transfer') {
1097 $triggername =
'CREDIT_TRANSFER_ORDER_CREATE';
1109 $this->
db->commit();
1110 return count($factures_prev);
1112 $this->
db->rollback();
1128 public function delete($user = null, $notrigger = 0)
1133 $resql1 = $resql2 = $resql3 = $resql4 = 0;
1136 $triggername =
'DIRECT_DEBIT_ORDER_DELETE';
1137 if ($this->
type ==
'bank-transfer') {
1138 $triggername =
'PAYMENTBYBANKTRANFER_DELETE';
1149 $sql =
"DELETE FROM ".MAIN_DB_PREFIX.
"prelevement_facture WHERE fk_prelevement_lignes IN (SELECT rowid FROM ".MAIN_DB_PREFIX.
"prelevement_lignes WHERE fk_prelevement_bons = ".((int) $this->
id).
")";
1150 $resql1 = $this->
db->query($sql);
1157 $sql =
"DELETE FROM ".MAIN_DB_PREFIX.
"prelevement_lignes WHERE fk_prelevement_bons = ".((int) $this->
id);
1158 $resql2 = $this->
db->query($sql);
1165 $sql =
"DELETE FROM ".MAIN_DB_PREFIX.
"prelevement_bons WHERE rowid = ".((int) $this->
id);
1166 $resql3 = $this->
db->query($sql);
1173 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"prelevement_facture_demande SET fk_prelevement_bons = NULL, traite = 0 WHERE fk_prelevement_bons = ".((int) $this->
id);
1174 $resql4 = $this->
db->query($sql);
1180 if ($resql1 && $resql2 && $resql3 && $resql4 && !$error) {
1181 $this->
db->commit();
1184 $this->
db->rollback();
1200 public function getNomUrl($withpicto = 0, $option =
'', $notooltip = 0, $morecss =
'', $save_lastsearch_value = -1)
1202 global $conf, $langs, $hookmanager;
1204 if (!empty($conf->dol_no_mouse_hover)) {
1210 $labeltoshow =
'PaymentByDirectDebit';
1211 if ($this->
type ==
'bank-transfer') {
1212 $labeltoshow =
'PaymentByBankTransfer';
1215 $label =
'<u>'.$langs->trans($labeltoshow).
'</u>';
1217 $label .=
'<b>'.$langs->trans(
'Ref').
':</b> '.$this->ref;
1218 if (isset($this->statut)) {
1219 $label .=
'<br><b>'.$langs->trans(
"Status").
":</b> ".$this->
getLibStatut(5);
1222 $url = DOL_URL_ROOT.
'/compta/prelevement/card.php?id='.$this->id;
1223 if ($this->
type ==
'bank-transfer') {
1224 $url = DOL_URL_ROOT.
'/compta/prelevement/card.php?id='.$this->id;
1227 if ($option !=
'nolink') {
1229 $add_save_lastsearch_values = ($save_lastsearch_value == 1 ? 1 : 0);
1230 if ($save_lastsearch_value == -1 && preg_match(
'/list\.php/', $_SERVER[
"PHP_SELF"])) {
1231 $add_save_lastsearch_values = 1;
1233 if ($add_save_lastsearch_values) {
1234 $url .=
'&save_lastsearch_values=1';
1239 if (empty($notooltip)) {
1240 if (!empty($conf->global->MAIN_OPTIMIZEFORTEXTBROWSER)) {
1241 $label = $langs->trans(
"ShowMyObject");
1242 $linkclose .=
' alt="'.dol_escape_htmltag($label, 1).
'"';
1244 $linkclose .=
' title="'.dol_escape_htmltag($label, 1).
'"';
1245 $linkclose .=
' class="classfortooltip'.($morecss ?
' '.$morecss :
'').
'"';
1247 $linkclose = ($morecss ?
' class="'.$morecss.
'"' :
'');
1250 $linkstart =
'<a href="'.$url.
'"';
1251 $linkstart .= $linkclose.
'>';
1254 $result .= $linkstart;
1256 $result .=
img_object(($notooltip ?
'' : $label), ($this->picto ? $this->picto :
'generic'), ($notooltip ? (($withpicto != 2) ?
'class="paddingright"' :
'') :
'class="'.(($withpicto != 2) ?
'paddingright ' :
'').
'classfortooltip"'), 0, 0, $notooltip ? 0 : 1);
1258 if ($withpicto != 2) {
1259 $result .= $this->ref;
1261 $result .= $linkend;
1263 global $action, $hookmanager;
1264 $hookmanager->initHooks(array(
'banktransferdao'));
1265 $parameters = array(
'id'=>$this->
id,
'getnomurl' => &$result);
1266 $reshook = $hookmanager->executeHooks(
'getNomUrl', $parameters, $this, $action);
1268 $result = $hookmanager->resPrint;
1270 $result .= $hookmanager->resPrint;
1285 $sql =
"DELETE FROM ".MAIN_DB_PREFIX.
"notify_def";
1286 $sql .=
" WHERE rowid = ".((int) $rowid);
1288 if ($this->
db->query($sql)) {
1304 if (is_object($user)) {
1305 $userid = $user->id;
1310 $sql =
"DELETE FROM ".MAIN_DB_PREFIX.
"notify_def";
1311 $sql .=
" WHERE fk_user=".((int) $userid).
" AND fk_action='".$this->
db->escape($action).
"'";
1313 if ($this->
db->query($sql)) {
1334 if (is_object($user)) {
1335 $userid = $user->id;
1343 $sql =
"INSERT INTO ".MAIN_DB_PREFIX.
"notify_def (datec,fk_user, fk_soc, fk_contact, fk_action)";
1344 $sql .=
" VALUES ('".$this->db->idate($now).
"', ".((int) $userid).
", 'NULL', 'NULL', '".$this->
db->escape($action).
"')";
1347 if ($this->
db->query($sql)) {
1351 dol_syslog(get_class($this).
"::addNotification Error $result");
1371 public function generate($format =
'ALL', $executiondate =
'', $type =
'direct-debit')
1373 global $conf, $langs, $mysoc;
1379 dol_syslog(get_class($this).
"::generate build file=".$this->filename.
" type=".$type);
1381 $this->file = fopen($this->filename,
"w");
1382 if (empty($this->file)) {
1383 $this->error = $langs->trans(
'ErrorFailedToOpenFile', $this->filename);
1391 if ($mysoc->isInEEC()) {
1394 if ($type !=
'bank-transfer') {
1406 if (!empty($executiondate)) {
1407 $date_actu = $executiondate;
1412 $fileDebiteurSection =
'';
1413 $fileEmetteurSection =
'';
1420 $sql =
"SELECT soc.rowid as socid, soc.code_client as code, soc.address, soc.zip, soc.town, c.code as country_code,";
1421 $sql .=
" pl.client_nom as nom, pl.code_banque as cb, pl.code_guichet as cg, pl.number as cc, pl.amount as somme,";
1422 $sql .=
" f.ref as fac, pf.fk_facture as idfac,";
1423 $sql .=
" rib.rowid, rib.datec, rib.iban_prefix as iban, rib.bic as bic, rib.rowid as drum, rib.rum, rib.date_rum";
1425 $sql .=
" ".MAIN_DB_PREFIX.
"prelevement_lignes as pl,";
1426 $sql .=
" ".MAIN_DB_PREFIX.
"facture as f,";
1427 $sql .=
" ".MAIN_DB_PREFIX.
"prelevement_facture as pf,";
1428 $sql .=
" ".MAIN_DB_PREFIX.
"societe as soc,";
1429 $sql .=
" ".MAIN_DB_PREFIX.
"c_country as c,";
1430 $sql .=
" ".MAIN_DB_PREFIX.
"societe_rib as rib";
1431 $sql .=
" WHERE pl.fk_prelevement_bons = ".((int) $this->
id);
1432 $sql .=
" AND pl.rowid = pf.fk_prelevement_lignes";
1433 $sql .=
" AND pf.fk_facture = f.rowid";
1434 $sql .=
" AND f.fk_soc = soc.rowid";
1435 $sql .=
" AND soc.fk_pays = c.rowid";
1436 $sql .=
" AND rib.fk_soc = f.fk_soc";
1437 $sql .=
" AND rib.default_rib = 1";
1438 $sql .=
" AND rib.type = 'ban'";
1443 $cachearraytotestduplicate = array();
1445 $num = $this->
db->num_rows(
$resql);
1447 $obj = $this->
db->fetch_object(
$resql);
1449 if (!empty($cachearraytotestduplicate[$obj->idfac])) {
1450 $this->error = $langs->trans(
'ErrorCompanyHasDuplicateDefaultBAN', $obj->socid);
1451 $this->invoice_in_error[$obj->idfac] = $this->error;
1455 $cachearraytotestduplicate[$obj->idfac] = $obj->rowid;
1457 $daterum = (!empty($obj->date_rum)) ? $this->
db->jdate($obj->date_rum) : $this->
db->jdate($obj->datec);
1458 $fileDebiteurSection .= $this->
EnregDestinataireSEPA($obj->code, $obj->nom, $obj->address, $obj->zip, $obj->town, $obj->country_code, $obj->cb, $obj->cg, $obj->cc, $obj->somme, $obj->fac, $obj->idfac, $obj->iban, $obj->bic, $daterum, $obj->drum, $obj->rum, $type);
1459 $this->total = $this->total + $obj->somme;
1462 $nbtotalDrctDbtTxInf = $i;
1464 $this->error = $this->
db->lasterror();
1465 fputs($this->file,
'ERROR DEBITOR '.$sql.$CrLf);
1470 if ($result != -2) {
1471 $fileEmetteurSection .= $this->
EnregEmetteurSEPA($conf, $date_actu, $nbtotalDrctDbtTxInf, $this->total, $CrLf, $format, $type);
1478 fputs($this->file,
'<'.
'?xml version="1.0" encoding="UTF-8" standalone="yes"?'.
'>'.$CrLf);
1479 fputs($this->file,
'<Document xmlns="urn:iso:std:iso:20022:tech:xsd:pain.008.001.02" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">'.$CrLf);
1480 fputs($this->file,
' <CstmrDrctDbtInitn>'.$CrLf);
1482 fputs($this->file,
' <GrpHdr>'.$CrLf);
1483 fputs($this->file,
' <MsgId>'.(
'DD/'.$dateTime_YMD.
'/REF'.$this->id).
'</MsgId>'.$CrLf);
1484 fputs($this->file,
' <CreDtTm>'.$dateTime_ECMA.
'</CreDtTm>'.$CrLf);
1485 fputs($this->file,
' <NbOfTxs>'.$i.
'</NbOfTxs>'.$CrLf);
1486 fputs($this->file,
' <CtrlSum>'.$this->total.
'</CtrlSum>'.$CrLf);
1487 fputs($this->file,
' <InitgPty>'.$CrLf);
1489 fputs($this->file,
' <Id>'.$CrLf);
1490 fputs($this->file,
' <PrvtId>'.$CrLf);
1491 fputs($this->file,
' <Othr>'.$CrLf);
1492 fputs($this->file,
' <Id>'.$this->emetteur_ics.
'</Id>'.$CrLf);
1493 fputs($this->file,
' </Othr>'.$CrLf);
1494 fputs($this->file,
' </PrvtId>'.$CrLf);
1495 fputs($this->file,
' </Id>'.$CrLf);
1496 fputs($this->file,
' </InitgPty>'.$CrLf);
1497 fputs($this->file,
' </GrpHdr>'.$CrLf);
1499 if ($result != -2) {
1500 fputs($this-> file, $fileEmetteurSection);
1503 if ($result != -2) {
1504 fputs($this-> file, $fileDebiteurSection);
1507 fputs($this->file,
' </PmtInf>'.$CrLf);
1508 fputs($this->file,
' </CstmrDrctDbtInitn>'.$CrLf);
1509 fputs($this->file,
'</Document>'.$CrLf);
1522 if (!empty($executiondate)) {
1523 $date_actu = $executiondate;
1528 $fileCrediteurSection =
'';
1529 $fileEmetteurSection =
'';
1536 $sql =
"SELECT soc.rowid as socid, soc.code_client as code, soc.address, soc.zip, soc.town, c.code as country_code,";
1537 $sql .=
" pl.client_nom as nom, pl.code_banque as cb, pl.code_guichet as cg, pl.number as cc, pl.amount as somme,";
1538 $sql .=
" f.ref as fac, pf.fk_facture_fourn as idfac, f.ref_supplier as fac_ref_supplier,";
1539 $sql .=
" rib.rowid, rib.datec, rib.iban_prefix as iban, rib.bic as bic, rib.rowid as drum, rib.rum, rib.date_rum";
1541 $sql .=
" ".MAIN_DB_PREFIX.
"prelevement_lignes as pl,";
1542 $sql .=
" ".MAIN_DB_PREFIX.
"facture_fourn as f,";
1543 $sql .=
" ".MAIN_DB_PREFIX.
"prelevement_facture as pf,";
1544 $sql .=
" ".MAIN_DB_PREFIX.
"societe as soc,";
1545 $sql .=
" ".MAIN_DB_PREFIX.
"c_country as c,";
1546 $sql .=
" ".MAIN_DB_PREFIX.
"societe_rib as rib";
1547 $sql .=
" WHERE pl.fk_prelevement_bons = ".((int) $this->
id);
1548 $sql .=
" AND pl.rowid = pf.fk_prelevement_lignes";
1549 $sql .=
" AND pf.fk_facture_fourn = f.rowid";
1550 $sql .=
" AND f.fk_soc = soc.rowid";
1551 $sql .=
" AND soc.fk_pays = c.rowid";
1552 $sql .=
" AND rib.fk_soc = f.fk_soc";
1553 $sql .=
" AND rib.default_rib = 1";
1554 $sql .=
" AND rib.type = 'ban'";
1559 $cachearraytotestduplicate = array();
1561 $num = $this->
db->num_rows(
$resql);
1563 $obj = $this->
db->fetch_object(
$resql);
1565 if (!empty($cachearraytotestduplicate[$obj->idfac])) {
1566 $this->error = $langs->trans(
'ErrorCompanyHasDuplicateDefaultBAN', $obj->socid);
1567 $this->invoice_in_error[$obj->idfac] = $this->error;
1571 $cachearraytotestduplicate[$obj->idfac] = $obj->rowid;
1573 $daterum = (!empty($obj->date_rum)) ? $this->
db->jdate($obj->date_rum) : $this->
db->jdate($obj->datec);
1574 $fileCrediteurSection .= $this->
EnregDestinataireSEPA($obj->code, $obj->nom, $obj->address, $obj->zip, $obj->town, $obj->country_code, $obj->cb, $obj->cg, $obj->cc, $obj->somme, $obj->fac_ref_supplier, $obj->idfac, $obj->iban, $obj->bic, $daterum, $obj->drum, $obj->rum, $type);
1575 $this->total = $this->total + $obj->somme;
1578 $nbtotalDrctDbtTxInf = $i;
1580 $this->error = $this->
db->lasterror();
1581 fputs($this->file,
'ERROR CREDITOR '.$sql.$CrLf);
1586 if ($result != -2) {
1587 $fileEmetteurSection .= $this->
EnregEmetteurSEPA($conf, $date_actu, $nbtotalDrctDbtTxInf, $this->total, $CrLf, $format, $type);
1594 fputs($this->file,
'<'.
'?xml version="1.0" encoding="UTF-8" standalone="yes"?'.
'>'.$CrLf);
1595 fputs($this->file,
'<Document xmlns="urn:iso:std:iso:20022:tech:xsd:pain.001.001.03" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">'.$CrLf);
1596 fputs($this->file,
' <CstmrCdtTrfInitn>'.$CrLf);
1598 fputs($this->file,
' <GrpHdr>'.$CrLf);
1599 fputs($this->file,
' <MsgId>'.(
'TRF/'.$dateTime_YMD.
'/REF'.$this->id).
'</MsgId>'.$CrLf);
1600 fputs($this->file,
' <CreDtTm>'.$dateTime_ECMA.
'</CreDtTm>'.$CrLf);
1601 fputs($this->file,
' <NbOfTxs>'.$i.
'</NbOfTxs>'.$CrLf);
1602 fputs($this->file,
' <CtrlSum>'.$this->total.
'</CtrlSum>'.$CrLf);
1603 fputs($this->file,
' <InitgPty>'.$CrLf);
1605 fputs($this->file,
' <Id>'.$CrLf);
1606 fputs($this->file,
' <PrvtId>'.$CrLf);
1607 fputs($this->file,
' <Othr>'.$CrLf);
1608 fputs($this->file,
' <Id>'.$this->emetteur_ics.
'</Id>'.$CrLf);
1609 fputs($this->file,
' </Othr>'.$CrLf);
1610 fputs($this->file,
' </PrvtId>'.$CrLf);
1611 fputs($this->file,
' </Id>'.$CrLf);
1612 fputs($this->file,
' </InitgPty>'.$CrLf);
1613 fputs($this->file,
' </GrpHdr>'.$CrLf);
1615 if ($result != -2) {
1616 fputs($this-> file, $fileEmetteurSection);
1619 if ($result != -2) {
1620 fputs($this-> file, $fileCrediteurSection);
1623 fputs($this->file,
' </PmtInf>'.$CrLf);
1624 fputs($this->file,
' </CstmrCdtTrfInitn>'.$CrLf);
1625 fputs($this->file,
'</Document>'.$CrLf);
1631 if ($type !=
'bank-transfer') {
1632 $sql =
"SELECT pl.amount";
1634 $sql .=
" ".MAIN_DB_PREFIX.
"prelevement_lignes as pl,";
1635 $sql .=
" ".MAIN_DB_PREFIX.
"facture as f,";
1636 $sql .=
" ".MAIN_DB_PREFIX.
"prelevement_facture as pf";
1637 $sql .=
" WHERE pl.fk_prelevement_bons = ".((int) $this->
id);
1638 $sql .=
" AND pl.rowid = pf.fk_prelevement_lignes";
1639 $sql .=
" AND pf.fk_facture = f.rowid";
1645 $num = $this->
db->num_rows(
$resql);
1648 $obj = $this->
db->fetch_object(
$resql);
1649 $this->total = $this->total + $obj->amount;
1658 $sql =
"SELECT pl.amount";
1660 $sql .=
" ".MAIN_DB_PREFIX.
"prelevement_lignes as pl,";
1661 $sql .=
" ".MAIN_DB_PREFIX.
"facture_fourn as f,";
1662 $sql .=
" ".MAIN_DB_PREFIX.
"prelevement_facture as pf";
1663 $sql .=
" WHERE pl.fk_prelevement_bons = ".((int) $this->
id);
1664 $sql .=
" AND pl.rowid = pf.fk_prelevement_lignes";
1665 $sql .=
" AND pf.fk_facture_fourn = f.rowid";
1671 $num = $this->
db->num_rows(
$resql);
1674 $obj = $this->
db->fetch_object(
$resql);
1675 $this->total = $this->total + $obj->amount;
1685 $langs->load(
'withdrawals');
1688 fputs($this->file, $langs->transnoentitiesnoconv(
'WithdrawalFileNotCapable', $mysoc->country_code));
1691 fclose($this->file);
1692 if (!empty($conf->global->MAIN_UMASK)) {
1693 @chmod($this->file, octdec($conf->global->MAIN_UMASK));
1712 return $pre.
'-'.$row_code_client.
'-'.$row_drum.
'-'.date(
'U', $row_datec);
1733 public function EnregDestinataire($rowid, $client_nom, $rib_banque, $rib_guichet, $rib_number, $amount, $ref, $facid, $rib_dom =
'', $type =
'direct-debit')
1736 fputs($this->file,
"06");
1737 fputs($this->file,
"08");
1739 fputs($this->file,
" ");
1741 fputs($this->file, $this->emetteur_ics);
1745 fputs($this->file,
" ");
1746 fputs($this->file, strftime(
"%d%m", $this->date_echeance));
1747 fputs($this->file, substr(strftime(
"%y", $this->date_echeance), 1));
1751 fputs($this->file, substr(strtoupper($client_nom).
" ", 0, 24));
1754 $domiciliation = strtr($rib_dom, array(
" " =>
"-", CHR(13) =>
" ", CHR(10) =>
""));
1755 fputs($this->file, substr($domiciliation.
" ", 0, 24));
1759 fputs($this->file, substr(
" ", 0, 8));
1763 fputs($this->file, $rib_guichet);
1767 fputs($this->file, substr(
"000000000000000".$rib_number, -11));
1771 $montant = (round($amount, 2) * 100);
1773 fputs($this->file, substr(
"000000000000000".$montant, -16));
1777 fputs($this->file, substr(
"*_".$ref.
"_RDVnet".$rowid.
" ", 0, 31));
1781 fputs($this->file, $rib_banque);
1785 fputs($this->file, substr(
" ", 0, 5));
1787 fputs($this->file,
"\n");
1815 public function EnregDestinataireSEPA($row_code_client, $row_nom, $row_address, $row_zip, $row_town, $row_country_code, $row_cb, $row_cg, $row_cc, $row_somme, $row_ref, $row_idfac, $row_iban, $row_bic, $row_datec, $row_drum, $row_rum, $type =
'direct-debit')
1820 include_once DOL_DOCUMENT_ROOT.
'/core/lib/functions2.lib.php';
1823 $Rowing = sprintf(
"%010d", $row_idfac);
1827 $Rum = empty($row_rum) ? $this->
buildRumNumber($row_code_client, $row_datec, $row_drum) : $row_rum;
1832 if ($type !=
'bank-transfer') {
1835 $XML_DEBITOR .=
' <DrctDbtTxInf>'.$CrLf;
1836 $XML_DEBITOR .=
' <PmtId>'.$CrLf;
1838 $XML_DEBITOR .=
' <EndToEndId>'.(($conf->global->PRELEVEMENT_END_TO_END !=
"") ? $conf->global->PRELEVEMENT_END_TO_END : (
'DD-'.dol_trunc($row_idfac.
'-'.$row_ref, 20,
'right',
'UTF-8', 1)).
'-'.$Rowing).
'</EndToEndId>'.$CrLf;
1839 $XML_DEBITOR .=
' </PmtId>'.$CrLf;
1840 $XML_DEBITOR .=
' <InstdAmt Ccy="EUR">'.round($row_somme, 2).
'</InstdAmt>'.$CrLf;
1841 $XML_DEBITOR .=
' <DrctDbtTx>'.$CrLf;
1842 $XML_DEBITOR .=
' <MndtRltdInf>'.$CrLf;
1843 $XML_DEBITOR .=
' <MndtId>'.$Rum.
'</MndtId>'.$CrLf;
1844 $XML_DEBITOR .=
' <DtOfSgntr>'.$DtOfSgntr.
'</DtOfSgntr>'.$CrLf;
1845 $XML_DEBITOR .=
' <AmdmntInd>false</AmdmntInd>'.$CrLf;
1846 $XML_DEBITOR .=
' </MndtRltdInf>'.$CrLf;
1847 $XML_DEBITOR .=
' </DrctDbtTx>'.$CrLf;
1848 $XML_DEBITOR .=
' <DbtrAgt>'.$CrLf;
1849 $XML_DEBITOR .=
' <FinInstnId>'.$CrLf;
1850 $XML_DEBITOR .=
' <BIC>'.$row_bic.
'</BIC>'.$CrLf;
1851 $XML_DEBITOR .=
' </FinInstnId>'.$CrLf;
1852 $XML_DEBITOR .=
' </DbtrAgt>'.$CrLf;
1853 $XML_DEBITOR .=
' <Dbtr>'.$CrLf;
1855 $XML_DEBITOR .=
' <PstlAdr>'.$CrLf;
1856 $XML_DEBITOR .=
' <Ctry>'.$row_country_code.
'</Ctry>'.$CrLf;
1857 $addressline1 = strtr($row_address, array(CHR(13) =>
", ", CHR(10) =>
""));
1858 $addressline2 = strtr($row_zip.(($row_zip && $row_town) ?
' ' :
''.$row_town), array(CHR(13) =>
", ", CHR(10) =>
""));
1859 if (trim($addressline1)) {
1862 if (trim($addressline2)) {
1865 $XML_DEBITOR .=
' </PstlAdr>'.$CrLf;
1866 $XML_DEBITOR .=
' </Dbtr>'.$CrLf;
1867 $XML_DEBITOR .=
' <DbtrAcct>'.$CrLf;
1868 $XML_DEBITOR .=
' <Id>'.$CrLf;
1869 $XML_DEBITOR .=
' <IBAN>'.preg_replace(
'/\s/',
'', $row_iban).
'</IBAN>'.$CrLf;
1870 $XML_DEBITOR .=
' </Id>'.$CrLf;
1871 $XML_DEBITOR .=
' </DbtrAcct>'.$CrLf;
1872 $XML_DEBITOR .=
' <RmtInf>'.$CrLf;
1874 $XML_DEBITOR .=
' <Ustrd>'.(($conf->global->PRELEVEMENT_USTRD !=
"") ? $conf->global->PRELEVEMENT_USTRD :
dol_trunc($row_ref, 135,
'right',
'UTF-8', 1)).
'</Ustrd>'.$CrLf;
1875 $XML_DEBITOR .=
' </RmtInf>'.$CrLf;
1876 $XML_DEBITOR .=
' </DrctDbtTxInf>'.$CrLf;
1877 return $XML_DEBITOR;
1881 $XML_CREDITOR .=
' <CdtTrfTxInf>'.$CrLf;
1882 $XML_CREDITOR .=
' <PmtId>'.$CrLf;
1884 $XML_CREDITOR .=
' <EndToEndId>'.(($conf->global->PRELEVEMENT_END_TO_END !=
"") ? $conf->global->PRELEVEMENT_END_TO_END : (
'CT-'.dol_trunc($row_idfac.
'-'.$row_ref, 20,
'right',
'UTF-8', 1)).
'-'.$Rowing).
'</EndToEndId>'.$CrLf;
1885 $XML_CREDITOR .=
' </PmtId>'.$CrLf;
1886 if (!empty($this->sepa_xml_pti_in_ctti)) {
1887 $XML_CREDITOR .=
' <PmtTpInf>' . $CrLf;
1890 if (!empty($conf->global->PAYMENTBYBANKTRANSFER_FORCE_HIGH_PRIORITY)) {
1891 $instrprty =
'HIGH';
1893 $instrprty =
'NORM';
1895 $XML_CREDITOR .=
' <InstrPrty>'.$instrprty.
'</InstrPrty>' . $CrLf;
1896 $XML_CREDITOR .=
' <SvcLvl>' . $CrLf;
1897 $XML_CREDITOR .=
' <Cd>SEPA</Cd>' . $CrLf;
1898 $XML_CREDITOR .=
' </SvcLvl>' . $CrLf;
1899 $XML_CREDITOR .=
' <CtgyPurp>' . $CrLf;
1900 $XML_CREDITOR .=
' <Cd>CORE</Cd>' . $CrLf;
1901 $XML_CREDITOR .=
' </CtgyPurp>' . $CrLf;
1902 $XML_CREDITOR .=
' </PmtTpInf>' . $CrLf;
1904 $XML_CREDITOR .=
' <Amt>'.$CrLf;
1905 $XML_CREDITOR .=
' <InstdAmt Ccy="EUR">'.round($row_somme, 2).
'</InstdAmt>'.$CrLf;
1906 $XML_CREDITOR .=
' </Amt>'.$CrLf;
1917 $XML_CREDITOR .=
' <CdtrAgt>'.$CrLf;
1918 $XML_CREDITOR .=
' <FinInstnId>'.$CrLf;
1919 $XML_CREDITOR .=
' <BIC>'.$row_bic.
'</BIC>'.$CrLf;
1920 $XML_CREDITOR .=
' </FinInstnId>'.$CrLf;
1921 $XML_CREDITOR .=
' </CdtrAgt>'.$CrLf;
1922 $XML_CREDITOR .=
' <Cdtr>'.$CrLf;
1924 $XML_CREDITOR .=
' <PstlAdr>'.$CrLf;
1925 $XML_CREDITOR .=
' <Ctry>'.$row_country_code.
'</Ctry>'.$CrLf;
1926 $addressline1 = strtr($row_address, array(CHR(13) =>
", ", CHR(10) =>
""));
1927 $addressline2 = strtr($row_zip.(($row_zip && $row_town) ?
' ' :
''.$row_town), array(CHR(13) =>
", ", CHR(10) =>
""));
1928 if (trim($addressline1)) {
1931 if (trim($addressline2)) {
1934 $XML_CREDITOR .=
' </PstlAdr>'.$CrLf;
1935 $XML_CREDITOR .=
' </Cdtr>'.$CrLf;
1936 $XML_CREDITOR .=
' <CdtrAcct>'.$CrLf;
1937 $XML_CREDITOR .=
' <Id>'.$CrLf;
1938 $XML_CREDITOR .=
' <IBAN>'.preg_replace(
'/\s/',
'', $row_iban).
'</IBAN>'.$CrLf;
1939 $XML_CREDITOR .=
' </Id>'.$CrLf;
1940 $XML_CREDITOR .=
' </CdtrAcct>'.$CrLf;
1941 $XML_CREDITOR .=
' <RmtInf>'.$CrLf;
1943 $XML_CREDITOR .=
' <Ustrd>'.(($conf->global->PRELEVEMENT_USTRD !=
"") ? $conf->global->PRELEVEMENT_USTRD :
dol_trunc($row_ref, 135,
'right',
'UTF-8', 1)).
'</Ustrd>'.$CrLf;
1944 $XML_CREDITOR .=
' </RmtInf>'.$CrLf;
1945 $XML_CREDITOR .=
' </CdtTrfTxInf>'.$CrLf;
1946 return $XML_CREDITOR;
1962 fputs($this->file,
"03");
1963 fputs($this->file,
"08");
1965 fputs($this->file,
" ");
1967 fputs($this->file, $this->emetteur_ics);
1971 fputs($this->file,
" ");
1972 fputs($this->file, strftime(
"%d%m", $this->date_echeance));
1973 fputs($this->file, substr(strftime(
"%y", $this->date_echeance), 1));
1977 fputs($this->file, substr($this->raison_sociale.
" ", 0, 24));
1981 fputs($this->file, substr($this->reference_remise.
" ", 0, 7));
1985 fputs($this->file, substr(
" ", 0, 17));
1989 fputs($this->file, substr(
" ", 0, 2));
1990 fputs($this->file,
"E");
1991 fputs($this->file, substr(
" ", 0, 5));
1995 fputs($this->file, $this->emetteur_code_guichet);
1999 fputs($this->file, substr(
"000000000000000".$this->emetteur_numero_compte, -11));
2003 fputs($this->file, substr(
" ", 0, 16));
2007 fputs($this->file, substr(
" ", 0, 31));
2011 fputs($this->file, $this->emetteur_code_banque);
2015 fputs($this->file, substr(
" ", 0, 5));
2017 fputs($this->file,
"\n");
2035 public function EnregEmetteurSEPA($configuration, $ladate, $nombre, $total, $CrLf =
'\n', $format =
'FRST', $type =
'direct-debit')
2047 $id = ($type ==
'bank-transfer' ? $conf->global->PAYMENTBYBANKTRANSFER_ID_BANKACCOUNT : $conf->global->PRELEVEMENT_ID_BANKACCOUNT);
2049 if ($account->fetch($id) > 0) {
2050 $this->emetteur_code_banque = $account->code_banque;
2051 $this->emetteur_code_guichet = $account->code_guichet;
2052 $this->emetteur_numero_compte = $account->number;
2053 $this->emetteur_number_key = $account->cle_rib;
2054 $this->sepa_xml_pti_in_ctti = (bool) $account->pti_in_ctti;
2055 $this->emetteur_iban = $account->iban;
2056 $this->emetteur_bic = $account->bic;
2058 $this->emetteur_ics = ($type ==
'bank-transfer' ? $account->ics_transfer : $account->ics);
2060 $this->raison_sociale = $account->proprio;
2064 $sql =
"SELECT rowid, ref";
2066 $sql .=
" ".MAIN_DB_PREFIX.
"prelevement_bons as pb";
2067 $sql .=
" WHERE pb.rowid = ".((int) $this->
id);
2071 $obj = $this->
db->fetch_object(
$resql);
2073 $country = explode(
':', $configuration->global->MAIN_INFO_SOCIETE_COUNTRY);
2074 $IdBon = sprintf(
"%05d", $obj->rowid);
2075 $RefBon = $obj->ref;
2077 if ($type !=
'bank-transfer') {
2079 $XML_SEPA_INFO =
'';
2080 $XML_SEPA_INFO .=
' <PmtInf>'.$CrLf;
2081 $XML_SEPA_INFO .=
' <PmtInfId>'.(
'DD/'.$dateTime_YMD.
'/ID'.$IdBon.
'-'.$RefBon).
'</PmtInfId>'.$CrLf;
2082 $XML_SEPA_INFO .=
' <PmtMtd>DD</PmtMtd>'.$CrLf;
2083 $XML_SEPA_INFO .=
' <NbOfTxs>'.$nombre.
'</NbOfTxs>'.$CrLf;
2084 $XML_SEPA_INFO .=
' <CtrlSum>'.$total.
'</CtrlSum>'.$CrLf;
2085 $XML_SEPA_INFO .=
' <PmtTpInf>'.$CrLf;
2086 $XML_SEPA_INFO .=
' <SvcLvl>'.$CrLf;
2087 $XML_SEPA_INFO .=
' <Cd>SEPA</Cd>'.$CrLf;
2088 $XML_SEPA_INFO .=
' </SvcLvl>'.$CrLf;
2089 $XML_SEPA_INFO .=
' <LclInstrm>'.$CrLf;
2090 $XML_SEPA_INFO .=
' <Cd>CORE</Cd>'.$CrLf;
2091 $XML_SEPA_INFO .=
' </LclInstrm>'.$CrLf;
2092 $XML_SEPA_INFO .=
' <SeqTp>'.$format.
'</SeqTp>'.$CrLf;
2093 $XML_SEPA_INFO .=
' </PmtTpInf>'.$CrLf;
2094 $XML_SEPA_INFO .=
' <ReqdColltnDt>'.$dateTime_ETAD.
'</ReqdColltnDt>'.$CrLf;
2095 $XML_SEPA_INFO .=
' <Cdtr>'.$CrLf;
2097 $XML_SEPA_INFO .=
' <PstlAdr>'.$CrLf;
2098 $XML_SEPA_INFO .=
' <Ctry>'.$country[1].
'</Ctry>'.$CrLf;
2099 $addressline1 = strtr($configuration->global->MAIN_INFO_SOCIETE_ADDRESS, array(CHR(13) =>
", ", CHR(10) =>
""));
2100 $addressline2 = strtr($configuration->global->MAIN_INFO_SOCIETE_ZIP.(($configuration->global->MAIN_INFO_SOCIETE_ZIP ||
' '.$configuration->global->MAIN_INFO_SOCIETE_TOWN) ?
' ' :
'').$configuration->global->MAIN_INFO_SOCIETE_TOWN, array(CHR(13) =>
", ", CHR(10) =>
""));
2101 if ($addressline1) {
2104 if ($addressline2) {
2107 $XML_SEPA_INFO .=
' </PstlAdr>'.$CrLf;
2108 $XML_SEPA_INFO .=
' </Cdtr>'.$CrLf;
2109 $XML_SEPA_INFO .=
' <CdtrAcct>'.$CrLf;
2110 $XML_SEPA_INFO .=
' <Id>'.$CrLf;
2111 $XML_SEPA_INFO .=
' <IBAN>'.preg_replace(
'/\s/',
'', $this->emetteur_iban).
'</IBAN>'.$CrLf;
2112 $XML_SEPA_INFO .=
' </Id>'.$CrLf;
2113 $XML_SEPA_INFO .=
' </CdtrAcct>'.$CrLf;
2114 $XML_SEPA_INFO .=
' <CdtrAgt>'.$CrLf;
2115 $XML_SEPA_INFO .=
' <FinInstnId>'.$CrLf;
2116 $XML_SEPA_INFO .=
' <BIC>'.$this->emetteur_bic.
'</BIC>'.$CrLf;
2117 $XML_SEPA_INFO .=
' </FinInstnId>'.$CrLf;
2118 $XML_SEPA_INFO .=
' </CdtrAgt>'.$CrLf;
2127 $XML_SEPA_INFO .=
' <ChrgBr>SLEV</ChrgBr>'.$CrLf;
2128 $XML_SEPA_INFO .=
' <CdtrSchmeId>'.$CrLf;
2129 $XML_SEPA_INFO .=
' <Id>'.$CrLf;
2130 $XML_SEPA_INFO .=
' <PrvtId>'.$CrLf;
2131 $XML_SEPA_INFO .=
' <Othr>'.$CrLf;
2132 $XML_SEPA_INFO .=
' <Id>'.$this->emetteur_ics.
'</Id>'.$CrLf;
2133 $XML_SEPA_INFO .=
' <SchmeNm>'.$CrLf;
2134 $XML_SEPA_INFO .=
' <Prtry>SEPA</Prtry>'.$CrLf;
2135 $XML_SEPA_INFO .=
' </SchmeNm>'.$CrLf;
2136 $XML_SEPA_INFO .=
' </Othr>'.$CrLf;
2137 $XML_SEPA_INFO .=
' </PrvtId>'.$CrLf;
2138 $XML_SEPA_INFO .=
' </Id>'.$CrLf;
2139 $XML_SEPA_INFO .=
' </CdtrSchmeId>'.$CrLf;
2142 $XML_SEPA_INFO =
'';
2143 $XML_SEPA_INFO .=
' <PmtInf>'.$CrLf;
2144 $XML_SEPA_INFO .=
' <PmtInfId>'.(
'TRF/'.$dateTime_YMD.
'/ID'.$IdBon.
'-'.$RefBon).
'</PmtInfId>'.$CrLf;
2145 $XML_SEPA_INFO .=
' <PmtMtd>TRF</PmtMtd>'.$CrLf;
2147 $XML_SEPA_INFO .=
' <NbOfTxs>'.$nombre.
'</NbOfTxs>'.$CrLf;
2148 $XML_SEPA_INFO .=
' <CtrlSum>'.$total.
'</CtrlSum>'.$CrLf;
2149 if (!empty($this->sepa_xml_pti_in_ctti) && !empty($format)) {
2150 $XML_SEPA_INFO .=
' <PmtTpInf>' . $CrLf;
2151 $XML_SEPA_INFO .=
' <SvcLvl>' . $CrLf;
2152 $XML_SEPA_INFO .=
' <Cd>SEPA</Cd>' . $CrLf;
2153 $XML_SEPA_INFO .=
' </SvcLvl>' . $CrLf;
2154 $XML_SEPA_INFO .=
' <LclInstrm>' . $CrLf;
2155 $XML_SEPA_INFO .=
' <Cd>CORE</Cd>' . $CrLf;
2156 $XML_SEPA_INFO .=
' </LclInstrm>' . $CrLf;
2157 $XML_SEPA_INFO .=
' <SeqTp>' . $format .
'</SeqTp>' . $CrLf;
2158 $XML_SEPA_INFO .=
' </PmtTpInf>' . $CrLf;
2160 $XML_SEPA_INFO .=
' <ReqdExctnDt>'.dol_print_date($dateTime_ETAD,
'dayrfc').
'</ReqdExctnDt>'.$CrLf;
2161 $XML_SEPA_INFO .=
' <Dbtr>'.$CrLf;
2163 $XML_SEPA_INFO .=
' <PstlAdr>'.$CrLf;
2164 $XML_SEPA_INFO .=
' <Ctry>'.$country[1].
'</Ctry>'.$CrLf;
2165 $addressline1 = strtr($configuration->global->MAIN_INFO_SOCIETE_ADDRESS, array(CHR(13) =>
", ", CHR(10) =>
""));
2166 $addressline2 = strtr($configuration->global->MAIN_INFO_SOCIETE_ZIP.(($configuration->global->MAIN_INFO_SOCIETE_ZIP ||
' '.$configuration->global->MAIN_INFO_SOCIETE_TOWN) ?
' ' :
'').$configuration->global->MAIN_INFO_SOCIETE_TOWN, array(CHR(13) =>
", ", CHR(10) =>
""));
2167 if ($addressline1) {
2170 if ($addressline2) {
2173 $XML_SEPA_INFO .=
' </PstlAdr>'.$CrLf;
2174 $XML_SEPA_INFO .=
' </Dbtr>'.$CrLf;
2175 $XML_SEPA_INFO .=
' <DbtrAcct>'.$CrLf;
2176 $XML_SEPA_INFO .=
' <Id>'.$CrLf;
2177 $XML_SEPA_INFO .=
' <IBAN>'.preg_replace(
'/\s/',
'', $this->emetteur_iban).
'</IBAN>'.$CrLf;
2178 $XML_SEPA_INFO .=
' </Id>'.$CrLf;
2179 $XML_SEPA_INFO .=
' </DbtrAcct>'.$CrLf;
2180 $XML_SEPA_INFO .=
' <DbtrAgt>'.$CrLf;
2181 $XML_SEPA_INFO .=
' <FinInstnId>'.$CrLf;
2182 $XML_SEPA_INFO .=
' <BIC>'.$this->emetteur_bic.
'</BIC>'.$CrLf;
2183 $XML_SEPA_INFO .=
' </FinInstnId>'.$CrLf;
2184 $XML_SEPA_INFO .=
' </DbtrAgt>'.$CrLf;
2193 $XML_SEPA_INFO .=
' <ChrgBr>SLEV</ChrgBr>'.$CrLf;
2208 fputs($this->file,
'INCORRECT EMETTEUR '.$this->raison_sociale.$CrLf);
2209 $XML_SEPA_INFO =
'';
2211 return $XML_SEPA_INFO;
2224 fputs($this->file,
"08");
2225 fputs($this->file,
"08");
2227 fputs($this->file,
" ");
2229 fputs($this->file, $this->emetteur_ics);
2233 fputs($this->file, substr(
" ", 0, 12));
2238 fputs($this->file, substr(
" ", 0, 24));
2242 fputs($this->file, substr(
" ", 0, 24));
2246 fputs($this->file, substr(
" ", 0, 8));
2250 fputs($this->file, substr(
" ", 0, 5));
2254 fputs($this->file, substr(
" ", 0, 11));
2258 $montant = ($total * 100);
2260 fputs($this->file, substr(
"000000000000000".$montant, -16));
2264 fputs($this->file, substr(
" ", 0, 31));
2268 fputs($this->file, substr(
" ", 0, 5));
2272 fputs($this->file, substr(
" ", 0, 5));
2274 fputs($this->file,
"\n");
2285 return $this->
LibStatut($this->statut, $mode);
2299 if (empty($this->labelStatus) || empty($this->labelStatusShort)) {
2302 $this->labelStatus[self::STATUS_DRAFT] = $langs->transnoentitiesnoconv(
'StatusWaiting');
2303 $this->labelStatus[self::STATUS_TRANSFERED] = $langs->transnoentitiesnoconv(
'StatusTrans');
2304 $this->labelStatusShort[self::STATUS_DRAFT] = $langs->transnoentitiesnoconv(
'StatusWaiting');
2305 $this->labelStatusShort[self::STATUS_TRANSFERED] = $langs->transnoentitiesnoconv(
'StatusTrans');
2306 if ($this->
type ==
'bank-transfer') {
2307 $this->labelStatus[self::STATUS_DEBITED] = $langs->transnoentitiesnoconv(
'StatusDebited');
2308 $this->labelStatusShort[self::STATUS_DEBITED] = $langs->transnoentitiesnoconv(
'StatusDebited');
2310 $this->labelStatus[self::STATUS_CREDITED] = $langs->transnoentitiesnoconv(
'StatusCredited');
2311 $this->labelStatusShort[self::STATUS_CREDITED] = $langs->transnoentitiesnoconv(
'StatusCredited');
2315 $statusType =
'status1';
2316 if ($status == self::STATUS_TRANSFERED) {
2317 $statusType =
'status3';
2319 if ($status == self::STATUS_CREDITED || $status == self::STATUS_DEBITED) {
2320 $statusType =
'status6';
2323 return dolGetStatus($this->labelStatus[$status], $this->labelStatusShort[$status],
'', $statusType, $mode);
2337 global $conf, $langs;
addline(&$line_id, $client_id, $client_nom, $amount, $code_banque, $code_guichet, $number, $number_key)
Add line to withdrawal.
EnregTotal($total)
Write end.
AddFacture($invoice_id, $client_id, $client_nom, $amount, $code_banque, $code_guichet, $number, $number_key, $type= 'debit-order')
Add invoice to withdrawal.
__construct($db)
Constructor.
dol_mkdir($dir, $dataroot= '', $newmask= '')
Creation of a directory (this can create recursive subdir)
nbOfInvoiceToPay($mode= 'direct-debit')
Get number of invoices waiting for payment.
$conf db
API class for accounts.
EnregDestinataire($rowid, $client_nom, $rib_banque, $rib_guichet, $rib_number, $amount, $ref, $facid, $rib_dom= '', $type= 'direct-debit')
Write recipient of request (customer)
SommeAPrelever($mode= 'direct-debit')
Returns amount waiting for direct debit payment or credit transfer payment.
dol_now($mode= 'auto')
Return date for now.
static buildRumNumber($row_code_client, $row_datec, $row_drum)
Generate dynamically a RUM number for a customer bank account.
Class to manage bank accounts description of third parties.
set_infotrans($user, $date, $method)
Set withdrawal to transmited status.
deleteNotificationById($rowid)
Delete a notification def by id.
dol_string_nospecial($str, $newstr= '_', $badcharstoreplace= '', $badcharstoremove= '')
Clean a string from all punctuation characters to use it as a ref or login.
Class to manage suppliers invoices.
set_infocredit($user, $date)
Set direct debit or credit transfer order to "paid" status.
getListInvoices($amounts=0)
Get invoice list.
NbFactureAPrelever($type= 'direct-debit')
Get number of invoices to pay.
Class to manage bank accounts.
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...
addNotification($db, $user, $action)
Add a notification.
getNomUrl($withpicto=0, $option= '', $notooltip=0, $morecss= '', $save_lastsearch_value=-1)
Returns clickable name (with picto)
Class to manage third parties objects (customers, suppliers, prospects...)
EnregDestinataireSEPA($row_code_client, $row_nom, $row_address, $row_zip, $row_town, $row_country_code, $row_cb, $row_cg, $row_cc, $row_somme, $row_ref, $row_idfac, $row_iban, $row_bic, $row_datec, $row_drum, $row_rum, $type= 'direct-debit')
Write recipient of request (customer)
price2num($amount, $rounding= '', $option=0)
Function that return a number with universal decimal format (decimal separator is '...
create($banque=0, $agence=0, $mode= 'real', $format= 'ALL', $executiondate= '', $notrigger=0, $type= 'direct-debit')
Create a direct debit order or a credit transfer order TODO delete params banque and agence when not ...
Class to manage withdrawal receipts.
getErrorString($error)
Return error string.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename= '', $restricttologhandler= '', $logcontext=null)
Write log message into outputs.
Class to manage payments of customer invoices.
img_object($titlealt, $picto, $moreatt= '', $pictoisfullpath=false, $srconly=0, $notitle=0)
Show a picto called object_picto (generic function)
dol_string_unaccent($str)
Clean a string from all accent characters to be used as ref, login or by dol_sanitizeFileName.
generate($format= 'ALL', $executiondate= '', $type= 'direct-debit')
Generate a direct debit or credit transfer file.
if(isModEnabled('facture')&&!empty($user->rights->facture->lire)) if((isModEnabled('fournisseur')&&empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD)&&$user->rights->fournisseur->facture->lire)||(isModEnabled('supplier_invoice')&&$user->rights->supplier_invoice->lire)) if(isModEnabled('don')&&!empty($user->rights->don->lire)) if(isModEnabled('tax')&&!empty($user->rights->tax->charges->lire)) if(isModEnabled('facture')&&isModEnabled('commande')&&$user->rights->commande->lire &&empty($conf->global->WORKFLOW_DISABLE_CREATE_INVOICE_FROM_ORDER)) $resql
Social contributions to pay.
getLibStatut($mode=0)
Return status label of object.
dol_print_date($time, $format= '', $tzoutput= 'auto', $outputlangs= '', $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
call_trigger($triggerName, $user)
Call trigger based on this instance.
dol_print_error($db= '', $error= '', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
EnregEmetteur($type= 'direct-debit')
Write sender of request (me).
dol_trunc($string, $size=40, $trunc= 'right', $stringencoding= 'UTF-8', $nodot=0, $display=0)
Truncate a string to a particular length adding '…' if string larger than length. ...
dolGetStatus($statusLabel= '', $statusLabelShort= '', $html= '', $statusType= 'status0', $displayMode=0, $url= '', $params=array())
Output the badge of a status.
deleteNotification($user, $action)
Delete a notification.
Class to manage invoices.
EnregEmetteurSEPA($configuration, $ladate, $nombre, $total, $CrLf= '\n', $format= 'FRST', $type= 'direct-debit')
Write sender of request (me).
fetch($rowid, $ref= '')
Get object and lines from database.
Class to manage payments for supplier invoices.
LibStatut($status, $mode=0)
Return status label for a status.
if(preg_match('/crypted:/i', $dolibarr_main_db_pass)||!empty($dolibarr_main_db_encrypted_pass)) $conf db type
load_board($user, $mode)
Load indicators for dashboard (this->nbtodo and this->nbtodolate)
Parent class of all other business classes (invoices, contracts, proposals, orders, ...)
dolGetFirstLastname($firstname, $lastname, $nameorder=-1)
Return firstname and lastname in correct order.