Improving documentation of Societe class

This commit is contained in:
Marcos García de La Fuente 2014-05-05 12:53:46 +02:00
parent 33ac8cc5f3
commit ae28727fea

View File

@ -80,7 +80,7 @@ class Societe extends CommonObject
/** /**
* @deprecated Use state_code instead * @deprecated Use state_code instead
*/ */
var $departement_code; // deprecated var $departement_code;
/** /**
* @deprecated Use state instead * @deprecated Use state instead
*/ */
@ -94,10 +94,30 @@ class Societe extends CommonObject
var $country_code; var $country_code;
var $country; var $country;
/**
* Phone number
* @var string
*/
var $phone; var $phone;
/**
* Fax number
* @var string
*/
var $fax; var $fax;
/**
* Email
* @var string
*/
var $email; var $email;
/**
* Skype username
* @var string
*/
var $skype; var $skype;
/**
* Webpage
* @var string
*/
var $url; var $url;
//! barcode //! barcode
@ -192,15 +212,32 @@ class Societe extends CommonObject
var $cond_reglement_id; var $cond_reglement_id;
var $mode_reglement_supplier_id; var $mode_reglement_supplier_id;
var $cond_reglement_supplier_id; var $cond_reglement_supplier_id;
var $date_modification;
var $date_creation;
var $user_modification;
var $user_creation;
var $fk_prospectlevel; var $fk_prospectlevel;
var $specimen;
var $name_bis; var $name_bis;
//Log data
/**
* Date of last update
*/
var $date_modification;
/**
* User that made last update
*/
var $user_modification;
/**
* Date of creation
*/
var $date_creation;
/**
* User that created the thirdparty
*/
var $user_creation;
var $specimen;
/** /**
* 0=no customer, 1=customer, 2=prospect, 3=customer and prospect * 0=no customer, 1=customer, 2=prospect, 3=customer and prospect
* @var int * @var int
@ -2675,7 +2712,7 @@ class Societe extends CommonObject
* @param Conf $conf Conf object (possibility to use another entity) * @param Conf $conf Conf object (possibility to use another entity)
* @return void * @return void
*/ */
function setMysoc($conf) function setMysoc(Conf $conf)
{ {
global $langs; global $langs;