2
0
forked from Wavyzz/dolibarr

Fix doxygen

This commit is contained in:
Laurent Destailleur
2019-07-11 22:16:32 +02:00
parent e5d34de877
commit 694be619b2

View File

@@ -272,13 +272,26 @@ class Product extends CommonObject
public $accountancy_code_buy; public $accountancy_code_buy;
/** /**
* Main barcode * Main Barcode value
* barcode value
* *
* @var string * @var string
*/ */
public $barcode; public $barcode;
/**
* Main Barcode type ID
*
* @var int
*/
public $barcode_type;
/**
* Main Barcode type code
*
* @var string
*/
public $barcode_type_code;
/** /**
* Additional barcodes (Some products have different barcodes according to the country of origin of manufacture) * Additional barcodes (Some products have different barcodes according to the country of origin of manufacture)
* *
@@ -294,7 +307,7 @@ class Product extends CommonObject
public $multilangs=array(); public $multilangs=array();
//! Taille de l'image //! Size of image
public $imgWidth; public $imgWidth;
public $imgHeight; public $imgHeight;
@@ -348,16 +361,7 @@ class Product extends CommonObject
public $fields = array( public $fields = array(
'rowid' => array( 'rowid' => array('type'=>'integer', 'label'=>'TechnicalID', 'enabled'=>1, 'visible'=>-2, 'notnull'=>1, 'index'=>1, 'position'=>1, 'comment'=>'Id'),
'type'=>'integer',
'label'=>'TechnicalID',
'enabled'=>1,
'visible'=>-2,
'notnull'=>1,
'index'=>1,
'position'=>1,
'comment'=>'Id',
),
'ref' =>array('type'=>'varchar(128)', 'label'=>'Ref', 'enabled'=>1, 'visible'=>1, 'notnull'=>1, 'showoncombobox'=>1, 'index'=>1, 'position'=>10, 'searchall'=>1, 'comment'=>'Reference of object'), 'ref' =>array('type'=>'varchar(128)', 'label'=>'Ref', 'enabled'=>1, 'visible'=>1, 'notnull'=>1, 'showoncombobox'=>1, 'index'=>1, 'position'=>10, 'searchall'=>1, 'comment'=>'Reference of object'),
'entity' =>array('type'=>'integer', 'label'=>'Entity', 'enabled'=>1, 'visible'=>0, 'default'=>1, 'notnull'=>1, 'index'=>1, 'position'=>20), 'entity' =>array('type'=>'integer', 'label'=>'Entity', 'enabled'=>1, 'visible'=>0, 'default'=>1, 'notnull'=>1, 'index'=>1, 'position'=>20),
'note_public' =>array('type'=>'html', 'label'=>'NotePublic', 'enabled'=>1, 'visible'=>0, 'position'=>61), 'note_public' =>array('type'=>'html', 'label'=>'NotePublic', 'enabled'=>1, 'visible'=>0, 'position'=>61),