Merge branch 'Dolibarr:develop' into develop

This commit is contained in:
Nicolas SILOBRE 2022-11-16 13:22:52 +01:00 committed by GitHub
commit a733e08f84
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 0 deletions

View File

@ -53,6 +53,11 @@ class Propal extends CommonObject
{
use CommonIncoterm;
/**
* @var string code
*/
public $code = "";
/**
* @var string ID to identify managed object
*/

View File

@ -31,6 +31,11 @@ require_once DOL_DOCUMENT_ROOT.'/core/class/commonincoterm.class.php';
abstract class CommonOrder extends CommonObject
{
use CommonIncoterm;
/**
* @var string code
*/
public $code = "";
}
/**

View File

@ -50,6 +50,11 @@ class Reception extends CommonObject
{
use CommonIncoterm;
/**
* @var string code
*/
public $code = "";
/**
* @var string element name
*/