Merge pull request #20957 from grandoc/new_branch_21_05_2022
fix : The property chid does not seem to exist on PaymentSocialContri…
This commit is contained in:
commit
39258bc7c0
@ -291,7 +291,7 @@ if ($action == 'create') {
|
||||
print "</tr>\n";
|
||||
$total += $objp->total;
|
||||
$total_ttc += $objp->total_ttc;
|
||||
$totalrecu += $objp->am;
|
||||
$totalrecu += $objp->amount;
|
||||
$i++;
|
||||
}
|
||||
if ($i > 1) {
|
||||
|
||||
@ -113,6 +113,11 @@ class ChargeSociales extends CommonObject
|
||||
*/
|
||||
public $fk_user;
|
||||
|
||||
/**
|
||||
* @var double total
|
||||
*/
|
||||
public $total;
|
||||
|
||||
|
||||
const STATUS_UNPAID = 0;
|
||||
const STATUS_PAID = 1;
|
||||
|
||||
@ -100,6 +100,22 @@ class PaymentSocialContribution extends CommonObject
|
||||
*/
|
||||
public $fk_user_modif;
|
||||
|
||||
/**
|
||||
* @var int ID
|
||||
*/
|
||||
public $chid;
|
||||
|
||||
/**
|
||||
* @var integer|string datepaye
|
||||
*/
|
||||
public $datepaye;
|
||||
|
||||
/**
|
||||
* @var integer|string paiementtype
|
||||
*/
|
||||
public $paiementtype;
|
||||
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
|
||||
Loading…
Reference in New Issue
Block a user