Standardize code

This commit is contained in:
Philippe GRAND 2018-10-09 08:53:08 +02:00
parent bba6669f03
commit ac214a7258
4 changed files with 16 additions and 0 deletions

View File

@ -38,7 +38,11 @@ class AccountancySystem
*/
public $error='';
/**
* @var int ID
*/
public $rowid;
public $fk_pcg_version;
public $pcg_type;
public $pcg_subtype;

View File

@ -81,7 +81,12 @@ class ActionCommReminder extends CommonObject
'offsetunit' => array('type'=>'varchar(1)', 'label'=>'OffsetUnit', 'visible'=>1, 'enabled'=>1, 'position'=>57, 'notnull'=>1, 'comment'=>"m, h, d, w",),
'status' => array('type'=>'integer', 'label'=>'Status', 'visible'=>1, 'enabled'=>1, 'position'=>1000, 'notnull'=>1, 'default'=>0, 'index'=>0, 'arrayofkeyval'=>array('0'=>'ToDo', '1'=>'Done')),
);
/**
* @var int ID
*/
public $rowid;
public $dateremind;
public $typeremind;

View File

@ -45,6 +45,9 @@ class PaymentExpenseReport extends CommonObject
*/
public $picto = 'payment';
/**
* @var int ID
*/
public $rowid;
public $fk_expensereport;

View File

@ -99,6 +99,10 @@ class SocieteAccount extends CommonObject
'import_key' => array('type'=>'varchar(14)', 'label'=>'ImportId', 'visible'=>-2, 'enabled'=>1, 'position'=>1000, 'notnull'=>-1, 'index'=>1,),
'status' => array('type'=>'integer', 'label'=>'Status', 'visible'=>1, 'enabled'=>1, 'position'=>1000, 'notnull'=>1, 'index'=>1, 'default'=>1, 'arrayofkeyval'=>array('1'=>'Active','0'=>'Disabled')),
);
/**
* @var int ID
*/
public $rowid;
/**