2
0
forked from Wavyzz/dolibarr

Update and standardize code

This commit is contained in:
Philippe GRAND
2018-08-22 18:12:44 +02:00
parent 6542dcf0bd
commit 449ef9c464
16 changed files with 78 additions and 6 deletions

View File

@@ -43,7 +43,12 @@ require_once DOL_DOCUMENT_ROOT .'/multicurrency/class/multicurrency.class.php';
class Commande extends CommonOrder
{
public $element='commande';
public $table_element='commande';
/**
* @var string Name of table without prefix where object is stored
*/
public $table_element='commande';
public $table_element_line = 'commandedet';
public $class_element_line = 'OrderLine';
public $fk_element = 'fk_commande';