Update accountancycategory.class.php

This commit is contained in:
Philippe Grand 2018-08-29 12:05:20 +02:00 committed by GitHub
parent e92b96acfd
commit 684913de17
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,39 +31,39 @@ require_once DOL_DOCUMENT_ROOT . '/core/lib/accounting.lib.php';
class AccountancyCategory // extends CommonObject class AccountancyCategory // extends CommonObject
{ {
/** /**
* @var DoliDB Database handler. * @var DoliDB Database handler.
*/ */
public $db; public $db;
/** /**
* @var string Error string * @var string Error string
* @see errors * @see errors
*/ */
public $error; public $error;
/** /**
* @var string[] Error codes (or messages) * @var string[] Error codes (or messages)
*/ */
public $errors = array(); public $errors = array();
/** /**
* @var string ID to identify managed object * @var string ID to identify managed object
*/ */
public $element='c_accounting_category'; public $element='c_accounting_category';
/** /**
* @var string Name of table without prefix where object is stored * @var string Name of table without prefix where object is stored
*/ */
public $table_element='c_accounting_category'; public $table_element='c_accounting_category';
public $id; public $id;
public $code; public $code;
/** /**
* @var string proper name for given parameter * @var string proper name for given parameter
*/ */
public $label; public $label;
public $range_account; public $range_account;
public $sens; public $sens;
public $category_type; public $category_type;