Skip to content

Commit

Permalink
Update accountingaccount.class.php
Browse files Browse the repository at this point in the history
  • Loading branch information
grandoc committed Aug 29, 2018
1 parent 684913d commit 81eae4c
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions htdocs/accountancy/class/accountingaccount.class.php
Expand Up @@ -31,20 +31,20 @@
class AccountingAccount extends CommonObject
{
public $element='accounting_account';

/**
* @var string Name of table without prefix where object is stored
*/
public $table_element='accounting_account';

public $picto = 'billr';

/**
* 0=No test on entity, 1=Test with field entity, 2=Test with link by societe
* @var int
*/
public $ismultientitymanaged = 1;

/**
* 0=Default, 1=View may be restricted to sales representative only if no permission to see all or to company of external user if external user
* @var integer
Expand All @@ -55,22 +55,22 @@ class AccountingAccount extends CommonObject
* @var DoliDB Database handler.
*/
public $db;

/**
* @var string Error code (or message)
*/
public $error='';
public $error='';

/**
* @var string[] Error codes (or messages)
*/
public $errors = array();

/**
* @var int ID
*/
public $id;

var $rowid;
var $datec; // Creation date
var $fk_pcg_version;
Expand All @@ -79,12 +79,12 @@ class AccountingAccount extends CommonObject
var $account_number;
var $account_parent;
var $account_category;

/**
* @var string proper name for given parameter
*/
public $label;
* @var string proper name for given parameter
*/
public $label;

var $fk_user_author;
var $fk_user_modif;
var $active; // duplicate with status
Expand Down

0 comments on commit 81eae4c

Please sign in to comment.