Update don.class.php

This commit is contained in:
Frédéric FRANCE 2019-10-17 23:35:30 +02:00 committed by GitHub
parent eb525769be
commit dce48c2390
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -58,12 +58,16 @@ class Don extends CommonObject
public $ismultientitymanaged = 1;
/**
* @var string String with name of icon for myobject. Must be the part after the 'object_' into object_myobject.png
* @var string String with name of icon for object don. Must be the part after the 'object_' into object_myobject.png
*/
public $picto = 'generic';
public $date;
public $amount;
/**
* @var string Thirdparty name
*/
public $societe;
/**
@ -71,18 +75,29 @@ class Don extends CommonObject
*/
public $address;
/**
* @var string Zipcode
*/
public $zip;
/**
* @var string Town
*/
public $town;
/**
* @var string Email
*/
public $email;
public $public;
/**
* @var int ID
* @var int project ID
*/
public $fk_project;
/**
* @var int ID
* @var int type payment ID
*/
public $fk_typepayment;
@ -90,7 +105,14 @@ class Don extends CommonObject
public $date_valid;
public $modepaymentid = 0;
/**
* @var array Array of status label
*/
public $labelstatut;
/**
* @var array Array of status label short
*/
public $labelstatutshort;
/**