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 $langs->load(
"errors");
357 $this->error = $langs->trans(
'ErrorDateOfMovementLowerThanDateOfFileTransmission');
358 dol_syslog(
"bon-prelevment::set_infocredit 1027 ".$this->error);
364 $sql =
" UPDATE ".MAIN_DB_PREFIX.
"prelevement_bons ";
365 $sql .=
" SET fk_user_credit = ".$user->id;
366 $sql .=
", statut = ".self::STATUS_CREDITED;
367 $sql .=
", date_credit = '".$this->db->idate($date).
"'";
368 $sql .=
" WHERE rowid=".((int) $this->
id);
369 $sql .=
" AND entity = ".((int) $conf->entity);
370 $sql .=
" AND statut = ".self::STATUS_TRANSFERED;
374 $langs->load(
'withdrawals');
375 $subject = $langs->trans(
"InfoCreditSubject", $this->
ref);
376 $message = $langs->trans(
"InfoCreditMessage", $this->
ref,
dol_print_date($date,
'dayhour'));
379 $bankaccount = ($this->
type ==
'bank-transfer' ? $conf->global->PAYMENTBYBANKTRANSFER_ID_BANKACCOUNT : $conf->global->PRELEVEMENT_ID_BANKACCOUNT);
382 $amountsperthirdparty = array();
388 for ($i = 0; $i < $num; $i++) {
389 if ($this->
type ==
'bank-transfer') {
395 $result = $fac->fetch($facs[$i][0]);
397 $amounts[$fac->id] = $facs[$i][1];
398 $amountsperthirdparty[$fac->socid][$fac->id] = $facs[$i][1];
400 $totalpaid = $fac->getSommePaiement();
401 $totalcreditnotes = $fac->getSumCreditNotesUsed();
402 $totaldeposits = $fac->getSumDepositsUsed();
403 $alreadypayed = $totalpaid + $totalcreditnotes + $totaldeposits;
406 if (
price2num($alreadypayed + $facs[$i][1],
'MT') == $fac->total_ttc) {
407 $result = $fac->setPaid($user);
409 $this->error = $fac->error;
410 $this->errors = $fac->errors;
417 foreach ($amountsperthirdparty as $thirdpartyid => $cursoramounts) {
418 if ($this->
type ==
'bank-transfer') {
423 $paiement->datepaye = $date;
424 $paiement->amounts = $cursoramounts;
426 if ($this->
type ==
'bank-transfer') {
427 $paiement->paiementid = 2;
428 $paiement->paiementcode =
'VIR';
430 $paiement->paiementid = 3;
431 $paiement->paiementcode =
'PRE';
434 $paiement->num_payment = $this->ref;
435 $paiement->id_prelevement = $this->id;
437 $paiement_id = $paiement->create($user);
438 if ($paiement_id < 0) {
440 $this->error = $paiement->error;
441 $this->errors = $paiement->errors;
442 dol_syslog(get_class($this).
"::set_infocredit AddPayment Error ".$this->error);
444 if ($this->
type ==
'bank-transfer') {
445 $modeforaddpayment =
'payment_supplier';
447 $modeforaddpayment =
'payment';
450 $result = $paiement->addPaymentToBank($user, $modeforaddpayment,
'(WithdrawalPayment)', $bankaccount,
'',
'');
453 $this->error = $paiement->error;
454 $this->errors = $paiement->errors;
455 dol_syslog(get_class($this).
"::set_infocredit AddPaymentToBank Error ".$this->error);
463 $sql =
" UPDATE ".MAIN_DB_PREFIX.
"prelevement_lignes";
464 $sql .=
" SET statut = 2";
465 $sql .=
" WHERE fk_prelevement_bons = ".((int) $this->
id);
467 if (!$this->
db->query($sql)) {
468 dol_syslog(get_class($this).
"::set_infocredit Update lines Error");
473 $this->error = $this->
db->lasterror();
474 dol_syslog(get_class($this).
"::set_infocredit Update Bons Error");
482 $this->date_credit = $date;
483 $this->statut = self::STATUS_CREDITED;
488 $this->
db->rollback();
508 global $conf, $langs;
512 dol_syslog(get_class($this).
"::set_infotrans Start", LOG_INFO);
513 if ($this->
db->begin()) {
514 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"prelevement_bons ";
515 $sql .=
" SET fk_user_trans = ".$user->id;
516 $sql .=
" , date_trans = '".$this->db->idate($date).
"'";
517 $sql .=
" , method_trans = ".((int) $method);
518 $sql .=
" , statut = ".self::STATUS_TRANSFERED;
519 $sql .=
" WHERE rowid = ".((int) $this->
id);
520 $sql .=
" AND entity = ".((int) $conf->entity);
521 $sql .=
" AND statut = 0";
523 if ($this->
db->query($sql)) {
524 $this->method_trans = $method;
525 $langs->load(
'withdrawals');
526 $subject = $langs->trans(
"InfoTransSubject", $this->
ref);
527 $message = $langs->trans(
"InfoTransMessage", $this->
ref,
dolGetFirstLastname($user->firstname, $user->lastname));
528 $message .= $langs->trans(
"InfoTransData",
price($this->amount), $this->methodes_trans[$this->method_trans],
dol_print_date($date,
'day'));
536 $this->date_trans = $date;
538 $this->user_trans = $user->id;
543 $this->
db->rollback();
544 dol_syslog(get_class($this).
"::set_infotrans ROLLBACK", LOG_ERR);
549 dol_syslog(get_class($this).
"::set_infotrans Ouverture transaction SQL impossible", LOG_CRIT);
570 if ($this->
type ==
'bank-transfer') {
571 $sql .=
" pf.fk_facture_fourn";
573 $sql .=
" pf.fk_facture";
576 $sql .=
", SUM(pl.amount)";
578 $sql .=
" FROM ".MAIN_DB_PREFIX.
"prelevement_bons as p";
579 $sql .=
" , ".MAIN_DB_PREFIX.
"prelevement_lignes as pl";
580 $sql .=
" , ".MAIN_DB_PREFIX.
"prelevement_facture as pf";
581 $sql .=
" WHERE pf.fk_prelevement_lignes = pl.rowid";
582 $sql .=
" AND pl.fk_prelevement_bons = p.rowid";
583 $sql .=
" AND p.rowid = ".((int) $this->
id);
584 $sql .=
" AND p.entity = ".((int) $conf->entity);
586 if ($this->
type ==
'bank-transfer') {
587 $sql .=
" GROUP BY fk_facture_fourn";
589 $sql .=
" GROUP BY fk_facture";
600 $row = $this->
db->fetch_row(
$resql);
614 dol_syslog(get_class($this).
"::getListInvoices Erreur");
632 $sql =
"SELECT sum(pfd.amount) as nb";
633 if ($mode !=
'bank-transfer') {
634 $sql .=
" FROM ".MAIN_DB_PREFIX.
"facture as f,";
636 $sql .=
" FROM ".MAIN_DB_PREFIX.
"facture_fourn as f,";
638 $sql .=
" ".MAIN_DB_PREFIX.
"prelevement_facture_demande as pfd";
639 $sql .=
" WHERE f.entity IN (".getEntity(
'invoice').
")";
640 if (empty($conf->global->WITHDRAWAL_ALLOW_ANY_INVOICE_STATUS)) {
641 $sql .=
" AND f.fk_statut = ".Facture::STATUS_VALIDATED;
643 if ($mode !=
'bank-transfer') {
644 $sql .=
" AND f.rowid = pfd.fk_facture";
646 $sql .=
" AND f.rowid = pfd.fk_facture_fourn";
648 $sql .=
" AND f.paye = 0";
649 $sql .=
" AND pfd.traite = 0";
650 $sql .=
" AND pfd.ext_payment_id IS NULL";
651 $sql .=
" AND f.total_ttc > 0";
655 $obj = $this->
db->fetch_object(
$resql);
662 dol_syslog(get_class($this).
"::SommeAPrelever Erreur -1");
692 $sql =
"SELECT count(f.rowid) as nb";
693 if ($type ==
'bank-transfer') {
694 $sql .=
" FROM ".MAIN_DB_PREFIX.
"facture_fourn as f";
696 $sql .=
" FROM ".MAIN_DB_PREFIX.
"facture as f";
698 $sql .=
", ".MAIN_DB_PREFIX.
"prelevement_facture_demande as pfd";
699 $sql .=
" WHERE f.entity IN (".getEntity(
'invoice').
")";
700 if (empty($conf->global->WITHDRAWAL_ALLOW_ANY_INVOICE_STATUS)) {
701 $sql .=
" AND f.fk_statut = ".Facture::STATUS_VALIDATED;
703 if ($type ==
'bank-transfer') {
704 $sql .=
" AND f.rowid = pfd.fk_facture_fourn";
706 $sql .=
" AND f.rowid = pfd.fk_facture";
708 $sql .=
" AND pfd.traite = 0";
709 $sql .=
" AND pfd.ext_payment_id IS NULL";
710 $sql .=
" AND f.total_ttc > 0";
712 dol_syslog(get_class($this).
"::NbFactureAPrelever");
716 $obj = $this->
db->fetch_object(
$resql);
722 $this->error = get_class($this).
"::NbFactureAPrelever Erreur -1 sql=".$this->
db->error();
742 public function create($banque = 0, $agence = 0, $mode =
'real', $format =
'ALL', $executiondate =
'', $notrigger = 0, $type =
'direct-debit')
745 global $conf, $langs, $user;
747 dol_syslog(__METHOD__.
"::Bank=".$banque.
" Office=".$agence.
" mode=".$mode.
" format=".$format, LOG_DEBUG);
749 require_once DOL_DOCUMENT_ROOT.
"/compta/facture/class/facture.class.php";
750 require_once DOL_DOCUMENT_ROOT.
"/societe/class/societe.class.php";
752 if ($type !=
'bank-transfer') {
753 if (empty($format)) {
754 $this->error =
'ErrorBadParametersForDirectDebitFileCreate';
761 $datetimeprev = time();
763 if (!empty($executiondate)) {
764 $datetimeprev = $executiondate;
767 $month = strftime(
"%m", $datetimeprev);
768 $year = strftime(
"%Y", $datetimeprev);
770 $this->invoice_in_error = array();
771 $this->thirdparty_in_error = array();
775 $factures_prev = array();
776 $factures_result = array();
777 $factures_prev_id = array();
778 $factures_errors = array();
781 $sql =
"SELECT f.rowid, pfd.rowid as pfdrowid, f.fk_soc";
782 $sql .=
", pfd.code_banque, pfd.code_guichet, pfd.number, pfd.cle_rib";
783 $sql .=
", pfd.amount";
784 $sql .=
", s.nom as name";
785 if ($type !=
'bank-transfer') {
786 $sql .=
" FROM ".MAIN_DB_PREFIX.
"facture as f";
788 $sql .=
" FROM ".MAIN_DB_PREFIX.
"facture_fourn as f";
790 $sql .=
", ".MAIN_DB_PREFIX.
"societe as s";
791 $sql .=
", ".MAIN_DB_PREFIX.
"prelevement_facture_demande as pfd";
792 $sql .=
" WHERE f.entity IN (".getEntity(
'invoice').
')';
793 if ($type !=
'bank-transfer') {
794 $sql .=
" AND f.rowid = pfd.fk_facture";
796 $sql .=
" AND f.rowid = pfd.fk_facture_fourn";
798 $sql .=
" AND s.rowid = f.fk_soc";
799 $sql .=
" AND f.fk_statut = 1";
800 $sql .=
" AND f.paye = 0";
801 $sql .=
" AND pfd.traite = 0";
802 $sql .=
" AND f.total_ttc > 0";
803 $sql .=
" AND pfd.ext_payment_id IS NULL";
805 dol_syslog(__METHOD__.
"::Read invoices,", LOG_DEBUG);
813 $row = $this->
db->fetch_row(
$resql);
814 $factures[$i] = $row;
817 dol_syslog(__METHOD__.
"::Read invoices error Found a null invoice", LOG_ERR);
818 $this->invoice_in_error[$row[0]] =
"Error for invoice id ".$row[0].
", found a null amount";
824 dol_syslog(__METHOD__.
"::Read invoices, ".$i.
" invoices to withdraw", LOG_DEBUG);
827 dol_syslog(__METHOD__.
"::Read invoices error ".$this->db->error(), LOG_ERR);
832 require_once DOL_DOCUMENT_ROOT.
'/societe/class/companybankaccount.class.php';
837 dol_syslog(__METHOD__.
"::Check BAN", LOG_DEBUG);
839 if (count($factures) > 0) {
840 foreach ($factures as $key => $fac) {
841 if ($type !=
'bank-transfer') {
846 $resfetch = $tmpinvoice->fetch($fac[0]);
847 if ($resfetch >= 0) {
848 if ($soc->fetch($tmpinvoice->socid) >= 0) {
850 $bac->fetch(0, $soc->id);
852 if ($type !=
'bank-transfer') {
853 if ($format ==
'FRST' && $bac->frstrecur !=
'FRST') {
856 if ($format ==
'RCUR' && ($bac->frstrecur !=
'RCUR' && $bac->frstrecur !=
'RECUR')) {
861 if ($bac->verif() >= 1) {
862 $factures_prev[$i] = $fac;
864 $factures_prev_id[$i] = $fac[0];
868 dol_syslog(__METHOD__.
"::Check BAN Error on default bank number IBAN/BIC for thirdparty reported by verif() ".$tmpinvoice->socid.
" ".$soc->name, LOG_WARNING);
869 $this->invoice_in_error[$fac[0]] =
"Error on default bank number IBAN/BIC for invoice ".$tmpinvoice->getNomUrl(0).
" for thirdparty ".$soc->getNomUrl(0);
870 $this->thirdparty_in_error[$soc->id] =
"Error on default bank number IBAN/BIC for invoice ".$tmpinvoice->getNomUrl(0).
" for thirdparty ".$soc->getNomUrl(0);
873 dol_syslog(__METHOD__.
"::Check BAN Failed to read company", LOG_WARNING);
876 dol_syslog(__METHOD__.
"::Check BAN Failed to read invoice", LOG_WARNING);
880 dol_syslog(__METHOD__.
"::Check BAN No invoice to process", LOG_WARNING);
887 $out = count($factures_prev).
" invoices will be included.";
900 if (count($factures_prev) > 0) {
901 if ($mode ==
'real') {
904 print $langs->trans(
"ModeWarning");
922 $ref = substr($year, -2).$month;
924 $sql =
"SELECT substring(ref from char_length(ref) - 1)";
925 $sql .=
" FROM ".MAIN_DB_PREFIX.
"prelevement_bons";
926 $sql .=
" WHERE ref LIKE '_".$this->db->escape($ref).
"%'";
927 $sql .=
" AND entity = ".((int) $conf->entity);
928 $sql .=
" ORDER BY ref DESC LIMIT 1";
930 dol_syslog(get_class($this).
"::create", LOG_DEBUG);
934 $row = $this->
db->fetch_row(
$resql);
937 $ref =
"T".$ref.sprintf(
"%02d", (intval($row[0]) + 1));
943 if ($type !=
'bank-transfer') {
944 $dir = $conf->prelevement->dir_output.
'/receipts';
946 $dir = $conf->paymentbybanktransfer->dir_output.
'/receipts';
952 $this->filename = $dir.
'/'.$ref.
'.xml';
955 $sql =
"INSERT INTO ".MAIN_DB_PREFIX.
"prelevement_bons (";
956 $sql .=
"ref, entity, datec, type";
957 $sql .=
") VALUES (";
958 $sql .=
"'".$this->db->escape($ref).
"'";
959 $sql .=
", ".((int) $conf->entity);
960 $sql .=
", '".$this->db->idate($now).
"'";
961 $sql .=
", '".($type ==
'bank-transfer' ?
'bank-transfer' :
'debit-order').
"'";
966 $prev_id = $this->
db->last_insert_id(MAIN_DB_PREFIX.
"prelevement_bons");
967 $this->
id = $prev_id;
971 dol_syslog(__METHOD__.
"::Create withdraw receipt ".$this->db->lasterror(), LOG_ERR);
975 dol_syslog(__METHOD__.
"::Get last withdraw receipt ".$this->db->lasterror(), LOG_ERR);
980 if ($type !=
'bank-transfer') {
989 if (count($factures_prev) > 0) {
990 foreach ($factures_prev as $fac) {
992 $result = $fact->fetch($fac[0]);
994 $this->error =
'ERRORBONPRELEVEMENT Failed to load invoice with id '.$fac[0];
1011 $ri = $this->
AddFacture($fac[0], $fac[2], $fac[8], $fac[7], $fac[3], $fac[4], $fac[5], $fac[6], $type);
1017 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"prelevement_facture_demande";
1018 $sql .=
" SET traite = 1";
1019 $sql .=
", date_traite = '".$this->db->idate($now).
"'";
1020 $sql .=
", fk_prelevement_bons = ".((int) $this->
id);
1021 $sql .=
" WHERE rowid = ".((int) $fac[1]);
1026 $this->errors[] = $this->
db->lasterror();
1027 dol_syslog(__METHOD__.
"::Update Error=".$this->db->lasterror(), LOG_ERR);
1038 dol_syslog(__METHOD__.
"::Init direct debit or credit transfer file for ".count($factures_prev).
" invoices", LOG_DEBUG);
1040 if (count($factures_prev) > 0) {
1041 $this->date_echeance = $datetimeprev;
1042 $this->reference_remise = $ref;
1044 $id = $conf->global->PRELEVEMENT_ID_BANKACCOUNT;
1045 if ($type ==
'bank-transfer') {
1046 $id = $conf->global->PAYMENTBYBANKTRANSFER_ID_BANKACCOUNT;
1049 if ($account->fetch($id) > 0) {
1050 $this->emetteur_code_banque = $account->code_banque;
1051 $this->emetteur_code_guichet = $account->code_guichet;
1052 $this->emetteur_numero_compte = $account->number;
1053 $this->emetteur_number_key = $account->cle_rib;
1054 $this->sepa_xml_pti_in_ctti = (bool) $account->pti_in_ctti;
1055 $this->emetteur_iban = $account->iban;
1056 $this->emetteur_bic = $account->bic;
1058 $this->emetteur_ics = ($type ==
'bank-transfer' ? $account->ics_transfer : $account->ics);
1060 $this->raison_sociale = $account->proprio;
1063 $this->factures = $factures_prev_id;
1064 $this->context[
'factures_prev'] = $factures_prev;
1068 $result = $this->
generate($format, $executiondate, $type);
1075 dol_syslog(__METHOD__.
"::End withdraw receipt, file ".$this->filename, LOG_DEBUG);
1083 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"prelevement_bons";
1084 $sql .=
" SET amount = ".price2num($this->total);
1085 $sql .=
" WHERE rowid = ".((int) $this->
id);
1086 $sql .=
" AND entity = ".((int) $conf->entity);
1091 dol_syslog(__METHOD__.
"::Error update total: ".$this->db->error(), LOG_ERR);
1095 if (!$error && !$notrigger) {
1096 $triggername =
'DIRECT_DEBIT_ORDER_CREATE';
1097 if ($type !=
'bank-transfer') {
1098 $triggername =
'CREDIT_TRANSFER_ORDER_CREATE';
1110 $this->
db->commit();
1111 return count($factures_prev);
1113 $this->
db->rollback();
1129 public function delete($user =
null, $notrigger = 0)
1134 $resql1 = $resql2 = $resql3 = $resql4 = 0;
1137 $triggername =
'DIRECT_DEBIT_ORDER_DELETE';
1138 if ($this->
type ==
'bank-transfer') {
1139 $triggername =
'PAYMENTBYBANKTRANFER_DELETE';
1150 $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).
")";
1151 $resql1 = $this->
db->query($sql);
1158 $sql =
"DELETE FROM ".MAIN_DB_PREFIX.
"prelevement_lignes WHERE fk_prelevement_bons = ".((int) $this->
id);
1159 $resql2 = $this->
db->query($sql);
1166 $sql =
"DELETE FROM ".MAIN_DB_PREFIX.
"prelevement_bons WHERE rowid = ".((int) $this->
id);
1167 $resql3 = $this->
db->query($sql);
1174 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"prelevement_facture_demande SET fk_prelevement_bons = NULL, traite = 0 WHERE fk_prelevement_bons = ".((int) $this->
id);
1175 $resql4 = $this->
db->query($sql);
1181 if ($resql1 && $resql2 && $resql3 && $resql4 && !$error) {
1182 $this->
db->commit();
1185 $this->
db->rollback();
1201 public function getNomUrl($withpicto = 0, $option =
'', $notooltip = 0, $morecss =
'', $save_lastsearch_value = -1)
1203 global $conf, $langs, $hookmanager;
1205 if (!empty($conf->dol_no_mouse_hover)) {
1211 $labeltoshow =
'PaymentByDirectDebit';
1212 if ($this->
type ==
'bank-transfer') {
1213 $labeltoshow =
'PaymentByBankTransfer';
1216 $label =
'<u>'.$langs->trans($labeltoshow).
'</u>';
1218 $label .=
'<b>'.$langs->trans(
'Ref').
':</b> '.$this->ref;
1219 if (isset($this->statut)) {
1220 $label .=
'<br><b>'.$langs->trans(
"Status").
":</b> ".$this->
getLibStatut(5);
1223 $url = DOL_URL_ROOT.
'/compta/prelevement/card.php?id='.$this->id;
1224 if ($this->
type ==
'bank-transfer') {
1225 $url = DOL_URL_ROOT.
'/compta/prelevement/card.php?id='.$this->id;
1228 if ($option !=
'nolink') {
1230 $add_save_lastsearch_values = ($save_lastsearch_value == 1 ? 1 : 0);
1231 if ($save_lastsearch_value == -1 && preg_match(
'/list\.php/', $_SERVER[
"PHP_SELF"])) {
1232 $add_save_lastsearch_values = 1;
1234 if ($add_save_lastsearch_values) {
1235 $url .=
'&save_lastsearch_values=1';
1240 if (empty($notooltip)) {
1241 if (!empty($conf->global->MAIN_OPTIMIZEFORTEXTBROWSER)) {
1242 $label = $langs->trans(
"ShowMyObject");
1243 $linkclose .=
' alt="'.dol_escape_htmltag($label, 1).
'"';
1245 $linkclose .=
' title="'.dol_escape_htmltag($label, 1).
'"';
1246 $linkclose .=
' class="classfortooltip'.($morecss ?
' '.$morecss :
'').
'"';
1248 $linkclose = ($morecss ?
' class="'.$morecss.
'"' :
'');
1251 $linkstart =
'<a href="'.$url.
'"';
1252 $linkstart .= $linkclose.
'>';
1255 $result .= $linkstart;
1257 $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);
1259 if ($withpicto != 2) {
1260 $result .= $this->ref;
1262 $result .= $linkend;
1264 global $action, $hookmanager;
1265 $hookmanager->initHooks(array(
'banktransferdao'));
1266 $parameters = array(
'id'=>$this->
id,
'getnomurl' => &$result);
1267 $reshook = $hookmanager->executeHooks(
'getNomUrl', $parameters, $this, $action);
1269 $result = $hookmanager->resPrint;
1271 $result .= $hookmanager->resPrint;
1286 $sql =
"DELETE FROM ".MAIN_DB_PREFIX.
"notify_def";
1287 $sql .=
" WHERE rowid = ".((int) $rowid);
1289 if ($this->
db->query($sql)) {
1305 if (is_object($user)) {
1306 $userid = $user->id;
1311 $sql =
"DELETE FROM ".MAIN_DB_PREFIX.
"notify_def";
1312 $sql .=
" WHERE fk_user=".((int) $userid).
" AND fk_action='".$this->
db->escape($action).
"'";
1314 if ($this->
db->query($sql)) {
1335 if (is_object($user)) {
1336 $userid = $user->id;
1344 $sql =
"INSERT INTO ".MAIN_DB_PREFIX.
"notify_def (datec,fk_user, fk_soc, fk_contact, fk_action)";
1345 $sql .=
" VALUES ('".$this->db->idate($now).
"', ".((int) $userid).
", 'NULL', 'NULL', '".$this->
db->escape($action).
"')";
1348 if ($this->
db->query($sql)) {
1352 dol_syslog(get_class($this).
"::addNotification Error $result");
1372 public function generate($format =
'ALL', $executiondate =
'', $type =
'direct-debit')
1374 global $conf, $langs, $mysoc;
1380 dol_syslog(get_class($this).
"::generate build file=".$this->filename.
" type=".$type);
1382 $this->file = fopen($this->filename,
"w");
1383 if (empty($this->file)) {
1384 $this->error = $langs->trans(
'ErrorFailedToOpenFile', $this->filename);
1392 if ($mysoc->isInEEC()) {
1395 if ($type !=
'bank-transfer') {
1407 if (!empty($executiondate)) {
1408 $date_actu = $executiondate;
1413 $fileDebiteurSection =
'';
1414 $fileEmetteurSection =
'';
1421 $sql =
"SELECT soc.rowid as socid, soc.code_client as code, soc.address, soc.zip, soc.town, c.code as country_code,";
1422 $sql .=
" pl.client_nom as nom, pl.code_banque as cb, pl.code_guichet as cg, pl.number as cc, pl.amount as somme,";
1423 $sql .=
" f.ref as fac, pf.fk_facture as idfac,";
1424 $sql .=
" rib.rowid, rib.datec, rib.iban_prefix as iban, rib.bic as bic, rib.rowid as drum, rib.rum, rib.date_rum";
1426 $sql .=
" ".MAIN_DB_PREFIX.
"prelevement_lignes as pl,";
1427 $sql .=
" ".MAIN_DB_PREFIX.
"facture as f,";
1428 $sql .=
" ".MAIN_DB_PREFIX.
"prelevement_facture as pf,";
1429 $sql .=
" ".MAIN_DB_PREFIX.
"societe as soc,";
1430 $sql .=
" ".MAIN_DB_PREFIX.
"c_country as c,";
1431 $sql .=
" ".MAIN_DB_PREFIX.
"societe_rib as rib";
1432 $sql .=
" WHERE pl.fk_prelevement_bons = ".((int) $this->
id);
1433 $sql .=
" AND pl.rowid = pf.fk_prelevement_lignes";
1434 $sql .=
" AND pf.fk_facture = f.rowid";
1435 $sql .=
" AND f.fk_soc = soc.rowid";
1436 $sql .=
" AND soc.fk_pays = c.rowid";
1437 $sql .=
" AND rib.fk_soc = f.fk_soc";
1438 $sql .=
" AND rib.default_rib = 1";
1439 $sql .=
" AND rib.type = 'ban'";
1444 $cachearraytotestduplicate = array();
1446 $num = $this->
db->num_rows(
$resql);
1448 $obj = $this->
db->fetch_object(
$resql);
1450 if (!empty($cachearraytotestduplicate[$obj->idfac])) {
1451 $this->error = $langs->trans(
'ErrorCompanyHasDuplicateDefaultBAN', $obj->socid);
1452 $this->invoice_in_error[$obj->idfac] = $this->error;
1456 $cachearraytotestduplicate[$obj->idfac] = $obj->rowid;
1458 $daterum = (!empty($obj->date_rum)) ? $this->
db->jdate($obj->date_rum) : $this->
db->jdate($obj->datec);
1459 $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);
1460 $this->total = $this->total + $obj->somme;
1463 $nbtotalDrctDbtTxInf = $i;
1465 $this->error = $this->
db->lasterror();
1466 fputs($this->file,
'ERROR DEBITOR '.$sql.$CrLf);
1471 if ($result != -2) {
1472 $fileEmetteurSection .= $this->
EnregEmetteurSEPA($conf, $date_actu, $nbtotalDrctDbtTxInf, $this->total, $CrLf, $format, $type);
1479 fputs($this->file,
'<'.
'?xml version="1.0" encoding="UTF-8" standalone="yes"?'.
'>'.$CrLf);
1480 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);
1481 fputs($this->file,
' <CstmrDrctDbtInitn>'.$CrLf);
1483 fputs($this->file,
' <GrpHdr>'.$CrLf);
1484 fputs($this->file,
' <MsgId>'.(
'DD/'.$dateTime_YMD.
'/REF'.$this->id).
'</MsgId>'.$CrLf);
1485 fputs($this->file,
' <CreDtTm>'.$dateTime_ECMA.
'</CreDtTm>'.$CrLf);
1486 fputs($this->file,
' <NbOfTxs>'.$i.
'</NbOfTxs>'.$CrLf);
1487 fputs($this->file,
' <CtrlSum>'.$this->total.
'</CtrlSum>'.$CrLf);
1488 fputs($this->file,
' <InitgPty>'.$CrLf);
1490 fputs($this->file,
' <Id>'.$CrLf);
1491 fputs($this->file,
' <PrvtId>'.$CrLf);
1492 fputs($this->file,
' <Othr>'.$CrLf);
1493 fputs($this->file,
' <Id>'.$this->emetteur_ics.
'</Id>'.$CrLf);
1494 fputs($this->file,
' </Othr>'.$CrLf);
1495 fputs($this->file,
' </PrvtId>'.$CrLf);
1496 fputs($this->file,
' </Id>'.$CrLf);
1497 fputs($this->file,
' </InitgPty>'.$CrLf);
1498 fputs($this->file,
' </GrpHdr>'.$CrLf);
1500 if ($result != -2) {
1501 fputs($this-> file, $fileEmetteurSection);
1504 if ($result != -2) {
1505 fputs($this-> file, $fileDebiteurSection);
1508 fputs($this->file,
' </PmtInf>'.$CrLf);
1509 fputs($this->file,
' </CstmrDrctDbtInitn>'.$CrLf);
1510 fputs($this->file,
'</Document>'.$CrLf);
1523 if (!empty($executiondate)) {
1524 $date_actu = $executiondate;
1529 $fileCrediteurSection =
'';
1530 $fileEmetteurSection =
'';
1537 $sql =
"SELECT soc.rowid as socid, soc.code_client as code, soc.address, soc.zip, soc.town, c.code as country_code,";
1538 $sql .=
" pl.client_nom as nom, pl.code_banque as cb, pl.code_guichet as cg, pl.number as cc, pl.amount as somme,";
1539 $sql .=
" f.ref as fac, pf.fk_facture_fourn as idfac, f.ref_supplier as fac_ref_supplier,";
1540 $sql .=
" rib.rowid, rib.datec, rib.iban_prefix as iban, rib.bic as bic, rib.rowid as drum, rib.rum, rib.date_rum";
1542 $sql .=
" ".MAIN_DB_PREFIX.
"prelevement_lignes as pl,";
1543 $sql .=
" ".MAIN_DB_PREFIX.
"facture_fourn as f,";
1544 $sql .=
" ".MAIN_DB_PREFIX.
"prelevement_facture as pf,";
1545 $sql .=
" ".MAIN_DB_PREFIX.
"societe as soc,";
1546 $sql .=
" ".MAIN_DB_PREFIX.
"c_country as c,";
1547 $sql .=
" ".MAIN_DB_PREFIX.
"societe_rib as rib";
1548 $sql .=
" WHERE pl.fk_prelevement_bons = ".((int) $this->
id);
1549 $sql .=
" AND pl.rowid = pf.fk_prelevement_lignes";
1550 $sql .=
" AND pf.fk_facture_fourn = f.rowid";
1551 $sql .=
" AND f.fk_soc = soc.rowid";
1552 $sql .=
" AND soc.fk_pays = c.rowid";
1553 $sql .=
" AND rib.fk_soc = f.fk_soc";
1554 $sql .=
" AND rib.default_rib = 1";
1555 $sql .=
" AND rib.type = 'ban'";
1560 $cachearraytotestduplicate = array();
1562 $num = $this->
db->num_rows(
$resql);
1564 $obj = $this->
db->fetch_object(
$resql);
1566 if (!empty($cachearraytotestduplicate[$obj->idfac])) {
1567 $this->error = $langs->trans(
'ErrorCompanyHasDuplicateDefaultBAN', $obj->socid);
1568 $this->invoice_in_error[$obj->idfac] = $this->error;
1572 $cachearraytotestduplicate[$obj->idfac] = $obj->rowid;
1574 $daterum = (!empty($obj->date_rum)) ? $this->
db->jdate($obj->date_rum) : $this->
db->jdate($obj->datec);
1575 $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);
1576 $this->total = $this->total + $obj->somme;
1579 $nbtotalDrctDbtTxInf = $i;
1581 $this->error = $this->
db->lasterror();
1582 fputs($this->file,
'ERROR CREDITOR '.$sql.$CrLf);
1587 if ($result != -2) {
1588 $fileEmetteurSection .= $this->
EnregEmetteurSEPA($conf, $date_actu, $nbtotalDrctDbtTxInf, $this->total, $CrLf, $format, $type);
1595 fputs($this->file,
'<'.
'?xml version="1.0" encoding="UTF-8" standalone="yes"?'.
'>'.$CrLf);
1596 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);
1597 fputs($this->file,
' <CstmrCdtTrfInitn>'.$CrLf);
1599 fputs($this->file,
' <GrpHdr>'.$CrLf);
1600 fputs($this->file,
' <MsgId>'.(
'TRF/'.$dateTime_YMD.
'/REF'.$this->id).
'</MsgId>'.$CrLf);
1601 fputs($this->file,
' <CreDtTm>'.$dateTime_ECMA.
'</CreDtTm>'.$CrLf);
1602 fputs($this->file,
' <NbOfTxs>'.$i.
'</NbOfTxs>'.$CrLf);
1603 fputs($this->file,
' <CtrlSum>'.$this->total.
'</CtrlSum>'.$CrLf);
1604 fputs($this->file,
' <InitgPty>'.$CrLf);
1606 fputs($this->file,
' <Id>'.$CrLf);
1607 fputs($this->file,
' <PrvtId>'.$CrLf);
1608 fputs($this->file,
' <Othr>'.$CrLf);
1609 fputs($this->file,
' <Id>'.$this->emetteur_ics.
'</Id>'.$CrLf);
1610 fputs($this->file,
' </Othr>'.$CrLf);
1611 fputs($this->file,
' </PrvtId>'.$CrLf);
1612 fputs($this->file,
' </Id>'.$CrLf);
1613 fputs($this->file,
' </InitgPty>'.$CrLf);
1614 fputs($this->file,
' </GrpHdr>'.$CrLf);
1616 if ($result != -2) {
1617 fputs($this-> file, $fileEmetteurSection);
1620 if ($result != -2) {
1621 fputs($this-> file, $fileCrediteurSection);
1624 fputs($this->file,
' </PmtInf>'.$CrLf);
1625 fputs($this->file,
' </CstmrCdtTrfInitn>'.$CrLf);
1626 fputs($this->file,
'</Document>'.$CrLf);
1632 if ($type !=
'bank-transfer') {
1633 $sql =
"SELECT pl.amount";
1635 $sql .=
" ".MAIN_DB_PREFIX.
"prelevement_lignes as pl,";
1636 $sql .=
" ".MAIN_DB_PREFIX.
"facture as f,";
1637 $sql .=
" ".MAIN_DB_PREFIX.
"prelevement_facture as pf";
1638 $sql .=
" WHERE pl.fk_prelevement_bons = ".((int) $this->
id);
1639 $sql .=
" AND pl.rowid = pf.fk_prelevement_lignes";
1640 $sql .=
" AND pf.fk_facture = f.rowid";
1646 $num = $this->
db->num_rows(
$resql);
1649 $obj = $this->
db->fetch_object(
$resql);
1650 $this->total = $this->total + $obj->amount;
1659 $sql =
"SELECT pl.amount";
1661 $sql .=
" ".MAIN_DB_PREFIX.
"prelevement_lignes as pl,";
1662 $sql .=
" ".MAIN_DB_PREFIX.
"facture_fourn as f,";
1663 $sql .=
" ".MAIN_DB_PREFIX.
"prelevement_facture as pf";
1664 $sql .=
" WHERE pl.fk_prelevement_bons = ".((int) $this->
id);
1665 $sql .=
" AND pl.rowid = pf.fk_prelevement_lignes";
1666 $sql .=
" AND pf.fk_facture_fourn = f.rowid";
1672 $num = $this->
db->num_rows(
$resql);
1675 $obj = $this->
db->fetch_object(
$resql);
1676 $this->total = $this->total + $obj->amount;
1686 $langs->load(
'withdrawals');
1689 fputs($this->file, $langs->transnoentitiesnoconv(
'WithdrawalFileNotCapable', $mysoc->country_code));
1692 fclose($this->file);
1693 if (!empty($conf->global->MAIN_UMASK)) {
1694 @chmod($this->filename, octdec($conf->global->MAIN_UMASK));
1713 return $pre.
'-'.$row_code_client.
'-'.$row_drum.
'-'.date(
'U', $row_datec);
1734 public function EnregDestinataire($rowid, $client_nom, $rib_banque, $rib_guichet, $rib_number, $amount, $ref, $facid, $rib_dom =
'', $type =
'direct-debit')
1737 fputs($this->file,
"06");
1738 fputs($this->file,
"08");
1740 fputs($this->file,
" ");
1742 fputs($this->file, $this->emetteur_ics);
1746 fputs($this->file,
" ");
1747 fputs($this->file, strftime(
"%d%m", $this->date_echeance));
1748 fputs($this->file, substr(strftime(
"%y", $this->date_echeance), 1));
1752 fputs($this->file, substr(strtoupper($client_nom).
" ", 0, 24));
1755 $domiciliation = strtr($rib_dom, array(
" " =>
"-", CHR(13) =>
" ", CHR(10) =>
""));
1756 fputs($this->file, substr($domiciliation.
" ", 0, 24));
1760 fputs($this->file, substr(
" ", 0, 8));
1764 fputs($this->file, $rib_guichet);
1768 fputs($this->file, substr(
"000000000000000".$rib_number, -11));
1772 $montant = (round($amount, 2) * 100);
1774 fputs($this->file, substr(
"000000000000000".$montant, -16));
1778 fputs($this->file, substr(
"*_".$ref.
"_RDVnet".$rowid.
" ", 0, 31));
1782 fputs($this->file, $rib_banque);
1786 fputs($this->file, substr(
" ", 0, 5));
1788 fputs($this->file,
"\n");
1816 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')
1821 include_once DOL_DOCUMENT_ROOT.
'/core/lib/functions2.lib.php';
1824 $Rowing = sprintf(
"%010d", $row_idfac);
1828 $Rum = empty($row_rum) ? $this->
buildRumNumber($row_code_client, $row_datec, $row_drum) : $row_rum;
1833 if ($type !=
'bank-transfer') {
1836 $XML_DEBITOR .=
' <DrctDbtTxInf>'.$CrLf;
1837 $XML_DEBITOR .=
' <PmtId>'.$CrLf;
1839 $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;
1840 $XML_DEBITOR .=
' </PmtId>'.$CrLf;
1841 $XML_DEBITOR .=
' <InstdAmt Ccy="EUR">'.round($row_somme, 2).
'</InstdAmt>'.$CrLf;
1842 $XML_DEBITOR .=
' <DrctDbtTx>'.$CrLf;
1843 $XML_DEBITOR .=
' <MndtRltdInf>'.$CrLf;
1844 $XML_DEBITOR .=
' <MndtId>'.$Rum.
'</MndtId>'.$CrLf;
1845 $XML_DEBITOR .=
' <DtOfSgntr>'.$DtOfSgntr.
'</DtOfSgntr>'.$CrLf;
1846 $XML_DEBITOR .=
' <AmdmntInd>false</AmdmntInd>'.$CrLf;
1847 $XML_DEBITOR .=
' </MndtRltdInf>'.$CrLf;
1848 $XML_DEBITOR .=
' </DrctDbtTx>'.$CrLf;
1849 $XML_DEBITOR .=
' <DbtrAgt>'.$CrLf;
1850 $XML_DEBITOR .=
' <FinInstnId>'.$CrLf;
1851 $XML_DEBITOR .=
' <BIC>'.$row_bic.
'</BIC>'.$CrLf;
1852 $XML_DEBITOR .=
' </FinInstnId>'.$CrLf;
1853 $XML_DEBITOR .=
' </DbtrAgt>'.$CrLf;
1854 $XML_DEBITOR .=
' <Dbtr>'.$CrLf;
1856 $XML_DEBITOR .=
' <PstlAdr>'.$CrLf;
1857 $XML_DEBITOR .=
' <Ctry>'.$row_country_code.
'</Ctry>'.$CrLf;
1858 $addressline1 = strtr($row_address, array(CHR(13) =>
", ", CHR(10) =>
""));
1859 $addressline2 = strtr($row_zip.(($row_zip && $row_town) ?
' ' :
''.$row_town), array(CHR(13) =>
", ", CHR(10) =>
""));
1860 if (trim($addressline1)) {
1863 if (trim($addressline2)) {
1866 $XML_DEBITOR .=
' </PstlAdr>'.$CrLf;
1867 $XML_DEBITOR .=
' </Dbtr>'.$CrLf;
1868 $XML_DEBITOR .=
' <DbtrAcct>'.$CrLf;
1869 $XML_DEBITOR .=
' <Id>'.$CrLf;
1870 $XML_DEBITOR .=
' <IBAN>'.preg_replace(
'/\s/',
'', $row_iban).
'</IBAN>'.$CrLf;
1871 $XML_DEBITOR .=
' </Id>'.$CrLf;
1872 $XML_DEBITOR .=
' </DbtrAcct>'.$CrLf;
1873 $XML_DEBITOR .=
' <RmtInf>'.$CrLf;
1875 $XML_DEBITOR .=
' <Ustrd>'.(($conf->global->PRELEVEMENT_USTRD !=
"") ? $conf->global->PRELEVEMENT_USTRD :
dol_trunc($row_ref, 135,
'right',
'UTF-8', 1)).
'</Ustrd>'.$CrLf;
1876 $XML_DEBITOR .=
' </RmtInf>'.$CrLf;
1877 $XML_DEBITOR .=
' </DrctDbtTxInf>'.$CrLf;
1878 return $XML_DEBITOR;
1882 $XML_CREDITOR .=
' <CdtTrfTxInf>'.$CrLf;
1883 $XML_CREDITOR .=
' <PmtId>'.$CrLf;
1885 $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;
1886 $XML_CREDITOR .=
' </PmtId>'.$CrLf;
1887 if (!empty($this->sepa_xml_pti_in_ctti)) {
1888 $XML_CREDITOR .=
' <PmtTpInf>' . $CrLf;
1891 if (!empty($conf->global->PAYMENTBYBANKTRANSFER_FORCE_HIGH_PRIORITY)) {
1892 $instrprty =
'HIGH';
1894 $instrprty =
'NORM';
1896 $XML_CREDITOR .=
' <InstrPrty>'.$instrprty.
'</InstrPrty>' . $CrLf;
1897 $XML_CREDITOR .=
' <SvcLvl>' . $CrLf;
1898 $XML_CREDITOR .=
' <Cd>SEPA</Cd>' . $CrLf;
1899 $XML_CREDITOR .=
' </SvcLvl>' . $CrLf;
1900 $XML_CREDITOR .=
' <CtgyPurp>' . $CrLf;
1901 $XML_CREDITOR .=
' <Cd>CORE</Cd>' . $CrLf;
1902 $XML_CREDITOR .=
' </CtgyPurp>' . $CrLf;
1903 $XML_CREDITOR .=
' </PmtTpInf>' . $CrLf;
1905 $XML_CREDITOR .=
' <Amt>'.$CrLf;
1906 $XML_CREDITOR .=
' <InstdAmt Ccy="EUR">'.round($row_somme, 2).
'</InstdAmt>'.$CrLf;
1907 $XML_CREDITOR .=
' </Amt>'.$CrLf;
1918 $XML_CREDITOR .=
' <CdtrAgt>'.$CrLf;
1919 $XML_CREDITOR .=
' <FinInstnId>'.$CrLf;
1920 $XML_CREDITOR .=
' <BIC>'.$row_bic.
'</BIC>'.$CrLf;
1921 $XML_CREDITOR .=
' </FinInstnId>'.$CrLf;
1922 $XML_CREDITOR .=
' </CdtrAgt>'.$CrLf;
1923 $XML_CREDITOR .=
' <Cdtr>'.$CrLf;
1925 $XML_CREDITOR .=
' <PstlAdr>'.$CrLf;
1926 $XML_CREDITOR .=
' <Ctry>'.$row_country_code.
'</Ctry>'.$CrLf;
1927 $addressline1 = strtr($row_address, array(CHR(13) =>
", ", CHR(10) =>
""));
1928 $addressline2 = strtr($row_zip.(($row_zip && $row_town) ?
' ' :
''.$row_town), array(CHR(13) =>
", ", CHR(10) =>
""));
1929 if (trim($addressline1)) {
1932 if (trim($addressline2)) {
1935 $XML_CREDITOR .=
' </PstlAdr>'.$CrLf;
1936 $XML_CREDITOR .=
' </Cdtr>'.$CrLf;
1937 $XML_CREDITOR .=
' <CdtrAcct>'.$CrLf;
1938 $XML_CREDITOR .=
' <Id>'.$CrLf;
1939 $XML_CREDITOR .=
' <IBAN>'.preg_replace(
'/\s/',
'', $row_iban).
'</IBAN>'.$CrLf;
1940 $XML_CREDITOR .=
' </Id>'.$CrLf;
1941 $XML_CREDITOR .=
' </CdtrAcct>'.$CrLf;
1942 $XML_CREDITOR .=
' <RmtInf>'.$CrLf;
1944 $XML_CREDITOR .=
' <Ustrd>'.(($conf->global->PRELEVEMENT_USTRD !=
"") ? $conf->global->PRELEVEMENT_USTRD :
dol_trunc($row_ref, 135,
'right',
'UTF-8', 1)).
'</Ustrd>'.$CrLf;
1945 $XML_CREDITOR .=
' </RmtInf>'.$CrLf;
1946 $XML_CREDITOR .=
' </CdtTrfTxInf>'.$CrLf;
1947 return $XML_CREDITOR;
1963 fputs($this->file,
"03");
1964 fputs($this->file,
"08");
1966 fputs($this->file,
" ");
1968 fputs($this->file, $this->emetteur_ics);
1972 fputs($this->file,
" ");
1973 fputs($this->file, strftime(
"%d%m", $this->date_echeance));
1974 fputs($this->file, substr(strftime(
"%y", $this->date_echeance), 1));
1978 fputs($this->file, substr($this->raison_sociale.
" ", 0, 24));
1982 fputs($this->file, substr($this->reference_remise.
" ", 0, 7));
1986 fputs($this->file, substr(
" ", 0, 17));
1990 fputs($this->file, substr(
" ", 0, 2));
1991 fputs($this->file,
"E");
1992 fputs($this->file, substr(
" ", 0, 5));
1996 fputs($this->file, $this->emetteur_code_guichet);
2000 fputs($this->file, substr(
"000000000000000".$this->emetteur_numero_compte, -11));
2004 fputs($this->file, substr(
" ", 0, 16));
2008 fputs($this->file, substr(
" ", 0, 31));
2012 fputs($this->file, $this->emetteur_code_banque);
2016 fputs($this->file, substr(
" ", 0, 5));
2018 fputs($this->file,
"\n");
2036 public function EnregEmetteurSEPA($configuration, $ladate, $nombre, $total, $CrLf =
'\n', $format =
'FRST', $type =
'direct-debit')
2048 $id = ($type ==
'bank-transfer' ? $conf->global->PAYMENTBYBANKTRANSFER_ID_BANKACCOUNT : $conf->global->PRELEVEMENT_ID_BANKACCOUNT);
2050 if ($account->fetch($id) > 0) {
2051 $this->emetteur_code_banque = $account->code_banque;
2052 $this->emetteur_code_guichet = $account->code_guichet;
2053 $this->emetteur_numero_compte = $account->number;
2054 $this->emetteur_number_key = $account->cle_rib;
2055 $this->sepa_xml_pti_in_ctti = (bool) $account->pti_in_ctti;
2056 $this->emetteur_iban = $account->iban;
2057 $this->emetteur_bic = $account->bic;
2059 $this->emetteur_ics = ($type ==
'bank-transfer' ? $account->ics_transfer : $account->ics);
2061 $this->raison_sociale = $account->proprio;
2065 $sql =
"SELECT rowid, ref";
2067 $sql .=
" ".MAIN_DB_PREFIX.
"prelevement_bons as pb";
2068 $sql .=
" WHERE pb.rowid = ".((int) $this->
id);
2072 $obj = $this->
db->fetch_object(
$resql);
2074 $country = explode(
':', $configuration->global->MAIN_INFO_SOCIETE_COUNTRY);
2075 $IdBon = sprintf(
"%05d", $obj->rowid);
2076 $RefBon = $obj->ref;
2078 if ($type !=
'bank-transfer') {
2080 $XML_SEPA_INFO =
'';
2081 $XML_SEPA_INFO .=
' <PmtInf>'.$CrLf;
2082 $XML_SEPA_INFO .=
' <PmtInfId>'.(
'DD/'.$dateTime_YMD.
'/ID'.$IdBon.
'-'.$RefBon).
'</PmtInfId>'.$CrLf;
2083 $XML_SEPA_INFO .=
' <PmtMtd>DD</PmtMtd>'.$CrLf;
2084 $XML_SEPA_INFO .=
' <NbOfTxs>'.$nombre.
'</NbOfTxs>'.$CrLf;
2085 $XML_SEPA_INFO .=
' <CtrlSum>'.$total.
'</CtrlSum>'.$CrLf;
2086 $XML_SEPA_INFO .=
' <PmtTpInf>'.$CrLf;
2087 $XML_SEPA_INFO .=
' <SvcLvl>'.$CrLf;
2088 $XML_SEPA_INFO .=
' <Cd>SEPA</Cd>'.$CrLf;
2089 $XML_SEPA_INFO .=
' </SvcLvl>'.$CrLf;
2090 $XML_SEPA_INFO .=
' <LclInstrm>'.$CrLf;
2091 $XML_SEPA_INFO .=
' <Cd>CORE</Cd>'.$CrLf;
2092 $XML_SEPA_INFO .=
' </LclInstrm>'.$CrLf;
2093 $XML_SEPA_INFO .=
' <SeqTp>'.$format.
'</SeqTp>'.$CrLf;
2094 $XML_SEPA_INFO .=
' </PmtTpInf>'.$CrLf;
2095 $XML_SEPA_INFO .=
' <ReqdColltnDt>'.$dateTime_ETAD.
'</ReqdColltnDt>'.$CrLf;
2096 $XML_SEPA_INFO .=
' <Cdtr>'.$CrLf;
2098 $XML_SEPA_INFO .=
' <PstlAdr>'.$CrLf;
2099 $XML_SEPA_INFO .=
' <Ctry>'.$country[1].
'</Ctry>'.$CrLf;
2100 $addressline1 = strtr($configuration->global->MAIN_INFO_SOCIETE_ADDRESS, array(CHR(13) =>
", ", CHR(10) =>
""));
2101 $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) =>
""));
2102 if ($addressline1) {
2105 if ($addressline2) {
2108 $XML_SEPA_INFO .=
' </PstlAdr>'.$CrLf;
2109 $XML_SEPA_INFO .=
' </Cdtr>'.$CrLf;
2110 $XML_SEPA_INFO .=
' <CdtrAcct>'.$CrLf;
2111 $XML_SEPA_INFO .=
' <Id>'.$CrLf;
2112 $XML_SEPA_INFO .=
' <IBAN>'.preg_replace(
'/\s/',
'', $this->emetteur_iban).
'</IBAN>'.$CrLf;
2113 $XML_SEPA_INFO .=
' </Id>'.$CrLf;
2114 $XML_SEPA_INFO .=
' </CdtrAcct>'.$CrLf;
2115 $XML_SEPA_INFO .=
' <CdtrAgt>'.$CrLf;
2116 $XML_SEPA_INFO .=
' <FinInstnId>'.$CrLf;
2117 $XML_SEPA_INFO .=
' <BIC>'.$this->emetteur_bic.
'</BIC>'.$CrLf;
2118 $XML_SEPA_INFO .=
' </FinInstnId>'.$CrLf;
2119 $XML_SEPA_INFO .=
' </CdtrAgt>'.$CrLf;
2128 $XML_SEPA_INFO .=
' <ChrgBr>SLEV</ChrgBr>'.$CrLf;
2129 $XML_SEPA_INFO .=
' <CdtrSchmeId>'.$CrLf;
2130 $XML_SEPA_INFO .=
' <Id>'.$CrLf;
2131 $XML_SEPA_INFO .=
' <PrvtId>'.$CrLf;
2132 $XML_SEPA_INFO .=
' <Othr>'.$CrLf;
2133 $XML_SEPA_INFO .=
' <Id>'.$this->emetteur_ics.
'</Id>'.$CrLf;
2134 $XML_SEPA_INFO .=
' <SchmeNm>'.$CrLf;
2135 $XML_SEPA_INFO .=
' <Prtry>SEPA</Prtry>'.$CrLf;
2136 $XML_SEPA_INFO .=
' </SchmeNm>'.$CrLf;
2137 $XML_SEPA_INFO .=
' </Othr>'.$CrLf;
2138 $XML_SEPA_INFO .=
' </PrvtId>'.$CrLf;
2139 $XML_SEPA_INFO .=
' </Id>'.$CrLf;
2140 $XML_SEPA_INFO .=
' </CdtrSchmeId>'.$CrLf;
2143 $XML_SEPA_INFO =
'';
2144 $XML_SEPA_INFO .=
' <PmtInf>'.$CrLf;
2145 $XML_SEPA_INFO .=
' <PmtInfId>'.(
'TRF/'.$dateTime_YMD.
'/ID'.$IdBon.
'-'.$RefBon).
'</PmtInfId>'.$CrLf;
2146 $XML_SEPA_INFO .=
' <PmtMtd>TRF</PmtMtd>'.$CrLf;
2148 $XML_SEPA_INFO .=
' <NbOfTxs>'.$nombre.
'</NbOfTxs>'.$CrLf;
2149 $XML_SEPA_INFO .=
' <CtrlSum>'.$total.
'</CtrlSum>'.$CrLf;
2150 if (!empty($this->sepa_xml_pti_in_ctti) && !empty($format)) {
2151 $XML_SEPA_INFO .=
' <PmtTpInf>' . $CrLf;
2152 $XML_SEPA_INFO .=
' <SvcLvl>' . $CrLf;
2153 $XML_SEPA_INFO .=
' <Cd>SEPA</Cd>' . $CrLf;
2154 $XML_SEPA_INFO .=
' </SvcLvl>' . $CrLf;
2155 $XML_SEPA_INFO .=
' <LclInstrm>' . $CrLf;
2156 $XML_SEPA_INFO .=
' <Cd>CORE</Cd>' . $CrLf;
2157 $XML_SEPA_INFO .=
' </LclInstrm>' . $CrLf;
2158 $XML_SEPA_INFO .=
' <SeqTp>' . $format .
'</SeqTp>' . $CrLf;
2159 $XML_SEPA_INFO .=
' </PmtTpInf>' . $CrLf;
2161 $XML_SEPA_INFO .=
' <ReqdExctnDt>'.dol_print_date($dateTime_ETAD,
'dayrfc').
'</ReqdExctnDt>'.$CrLf;
2162 $XML_SEPA_INFO .=
' <Dbtr>'.$CrLf;
2164 $XML_SEPA_INFO .=
' <PstlAdr>'.$CrLf;
2165 $XML_SEPA_INFO .=
' <Ctry>'.$country[1].
'</Ctry>'.$CrLf;
2166 $addressline1 = strtr($configuration->global->MAIN_INFO_SOCIETE_ADDRESS, array(CHR(13) =>
", ", CHR(10) =>
""));
2167 $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) =>
""));
2168 if ($addressline1) {
2171 if ($addressline2) {
2174 $XML_SEPA_INFO .=
' </PstlAdr>'.$CrLf;
2175 $XML_SEPA_INFO .=
' </Dbtr>'.$CrLf;
2176 $XML_SEPA_INFO .=
' <DbtrAcct>'.$CrLf;
2177 $XML_SEPA_INFO .=
' <Id>'.$CrLf;
2178 $XML_SEPA_INFO .=
' <IBAN>'.preg_replace(
'/\s/',
'', $this->emetteur_iban).
'</IBAN>'.$CrLf;
2179 $XML_SEPA_INFO .=
' </Id>'.$CrLf;
2180 $XML_SEPA_INFO .=
' </DbtrAcct>'.$CrLf;
2181 $XML_SEPA_INFO .=
' <DbtrAgt>'.$CrLf;
2182 $XML_SEPA_INFO .=
' <FinInstnId>'.$CrLf;
2183 $XML_SEPA_INFO .=
' <BIC>'.$this->emetteur_bic.
'</BIC>'.$CrLf;
2184 $XML_SEPA_INFO .=
' </FinInstnId>'.$CrLf;
2185 $XML_SEPA_INFO .=
' </DbtrAgt>'.$CrLf;
2194 $XML_SEPA_INFO .=
' <ChrgBr>SLEV</ChrgBr>'.$CrLf;
2209 fputs($this->file,
'INCORRECT EMETTEUR '.$this->raison_sociale.$CrLf);
2210 $XML_SEPA_INFO =
'';
2212 return $XML_SEPA_INFO;
2225 fputs($this->file,
"08");
2226 fputs($this->file,
"08");
2228 fputs($this->file,
" ");
2230 fputs($this->file, $this->emetteur_ics);
2234 fputs($this->file, substr(
" ", 0, 12));
2239 fputs($this->file, substr(
" ", 0, 24));
2243 fputs($this->file, substr(
" ", 0, 24));
2247 fputs($this->file, substr(
" ", 0, 8));
2251 fputs($this->file, substr(
" ", 0, 5));
2255 fputs($this->file, substr(
" ", 0, 11));
2259 $montant = ($total * 100);
2261 fputs($this->file, substr(
"000000000000000".$montant, -16));
2265 fputs($this->file, substr(
" ", 0, 31));
2269 fputs($this->file, substr(
" ", 0, 5));
2273 fputs($this->file, substr(
" ", 0, 5));
2275 fputs($this->file,
"\n");
2286 return $this->
LibStatut($this->statut, $mode);
2300 if (empty($this->labelStatus) || empty($this->labelStatusShort)) {
2303 $this->labelStatus[self::STATUS_DRAFT] = $langs->transnoentitiesnoconv(
'StatusWaiting');
2304 $this->labelStatus[self::STATUS_TRANSFERED] = $langs->transnoentitiesnoconv(
'StatusTrans');
2305 $this->labelStatusShort[self::STATUS_DRAFT] = $langs->transnoentitiesnoconv(
'StatusWaiting');
2306 $this->labelStatusShort[self::STATUS_TRANSFERED] = $langs->transnoentitiesnoconv(
'StatusTrans');
2307 if ($this->
type ==
'bank-transfer') {
2308 $this->labelStatus[self::STATUS_DEBITED] = $langs->transnoentitiesnoconv(
'StatusDebited');
2309 $this->labelStatusShort[self::STATUS_DEBITED] = $langs->transnoentitiesnoconv(
'StatusDebited');
2311 $this->labelStatus[self::STATUS_CREDITED] = $langs->transnoentitiesnoconv(
'StatusCredited');
2312 $this->labelStatusShort[self::STATUS_CREDITED] = $langs->transnoentitiesnoconv(
'StatusCredited');
2316 $statusType =
'status1';
2317 if ($status == self::STATUS_TRANSFERED) {
2318 $statusType =
'status3';
2320 if ($status == self::STATUS_CREDITED || $status == self::STATUS_DEBITED) {
2321 $statusType =
'status6';
2324 return dolGetStatus($this->labelStatus[$status], $this->labelStatusShort[$status],
'', $statusType, $mode);
2338 global $conf, $langs;