diff --git a/htdocs/compta/facture/card.php b/htdocs/compta/facture/card.php
index 525a27e8190..0fefbbab118 100644
--- a/htdocs/compta/facture/card.php
+++ b/htdocs/compta/facture/card.php
@@ -5008,7 +5008,7 @@ if ($action == 'create') {
$paymentstatic->datepaye = $db->jdate($objp->dp);
$paymentstatic->ref = $objp->ref;
$paymentstatic->num_payment = $objp->num_payment;
- $paymentstatic->payment_code = $objp->payment_code;
+ $paymentstatic->paiementcode = $objp->payment_code;
print '
| ';
print $paymentstatic->getNomUrl(1);
diff --git a/htdocs/compta/paiement/class/paiement.class.php b/htdocs/compta/paiement/class/paiement.class.php
index 655ee13471b..f63d58db933 100644
--- a/htdocs/compta/paiement/class/paiement.class.php
+++ b/htdocs/compta/paiement/class/paiement.class.php
@@ -79,8 +79,8 @@ class Paiement extends CommonObject
public $pos_change = 0; // Excess received in TakePOS cash payment
public $author;
- public $paiementid; // Type of payment. Id saved into fields fk_paiement on llx_paiement
- public $paiementcode; // Code of payment.
+ public $paiementid; // ID of mode of payment. Is saved into fields fk_paiement on llx_paiement = id of llx_c_paiement
+ public $paiementcode; // Code of mode of payment.
/**
* @var string Type of payment label
diff --git a/htdocs/compta/prelevement/class/bonprelevement.class.php b/htdocs/compta/prelevement/class/bonprelevement.class.php
index 22a9a2bffc8..b9ec4c116fd 100644
--- a/htdocs/compta/prelevement/class/bonprelevement.class.php
+++ b/htdocs/compta/prelevement/class/bonprelevement.class.php
@@ -78,6 +78,8 @@ class BonPrelevement extends CommonObject
public $statut; // 0-Wait, 1-Trans, 2-Done
public $labelStatus = array();
+ public $factures = array();
+
public $invoice_in_error = array();
public $thirdparty_in_error = array();
@@ -913,6 +915,7 @@ class BonPrelevement extends CommonObject
$this->db->begin();
$now = dol_now();
+ $ref = '';
/*
* Process order generation
|