25require_once DOL_DOCUMENT_ROOT.
'/core/class/commonobject.class.php';
35 public $element =
'establishment';
40 public $table_element =
'establishment';
45 public $table_element_line =
'';
50 public $fk_element =
'fk_establishment';
56 public $ismultientitymanaged = 1;
61 public $picto =
'establishment';
121 public $fk_user_author;
128 const STATUS_OPEN = 1;
129 const STATUS_CLOSED = 0;
132 public $fields = array(
133 'rowid' =>array(
'type'=>
'integer',
'label'=>
'TechnicalID',
'enabled'=>1,
'visible'=>-1,
'notnull'=>1,
'position'=>10),
134 'entity' =>array(
'type'=>
'integer',
'label'=>
'Entity',
'default'=>1,
'enabled'=>1,
'visible'=>-2,
'notnull'=>1,
'position'=>15,
'index'=>1),
135 'ref' =>array(
'type'=>
'varchar(30)',
'label'=>
'Ref',
'enabled'=>1,
'visible'=>-1,
'notnull'=>1,
'showoncombobox'=>1,
'position'=>20),
136 'label' =>array(
'type'=>
'varchar(128)',
'label'=>
'Label',
'enabled'=>1,
'visible'=>-1,
'showoncombobox'=>2,
'position'=>22),
137 'address' =>array(
'type'=>
'varchar(255)',
'label'=>
'Address',
'enabled'=>1,
'visible'=>-1,
'position'=>25),
138 'zip' =>array(
'type'=>
'varchar(25)',
'label'=>
'Zip',
'enabled'=>1,
'visible'=>-1,
'position'=>30),
139 'town' =>array(
'type'=>
'varchar(50)',
'label'=>
'Town',
'enabled'=>1,
'visible'=>-1,
'position'=>35),
140 'fk_state' =>array(
'type'=>
'integer',
'label'=>
'Fkstate',
'enabled'=>1,
'visible'=>-1,
'position'=>40),
141 'fk_country' =>array(
'type'=>
'integer',
'label'=>
'Fkcountry',
'enabled'=>1,
'visible'=>-1,
'position'=>45),
142 'profid1' =>array(
'type'=>
'varchar(20)',
'label'=>
'Profid1',
'enabled'=>1,
'visible'=>-1,
'position'=>50),
143 'profid2' =>array(
'type'=>
'varchar(20)',
'label'=>
'Profid2',
'enabled'=>1,
'visible'=>-1,
'position'=>55),
144 'profid3' =>array(
'type'=>
'varchar(20)',
'label'=>
'Profid3',
'enabled'=>1,
'visible'=>-1,
'position'=>60),
145 'phone' =>array(
'type'=>
'varchar(20)',
'label'=>
'Phone',
'enabled'=>1,
'visible'=>-1,
'position'=>65),
146 'fk_user_author' =>array(
'type'=>
'integer:User:user/class/user.class.php',
'label'=>
'Fkuserauthor',
'enabled'=>1,
'visible'=>-1,
'notnull'=>1,
'position'=>70),
147 'fk_user_mod' =>array(
'type'=>
'integer:User:user/class/user.class.php',
'label'=>
'Fkusermod',
'enabled'=>1,
'visible'=>-1,
'position'=>75),
148 'datec' =>array(
'type'=>
'datetime',
'label'=>
'DateCreation',
'enabled'=>1,
'visible'=>-1,
'notnull'=>1,
'position'=>80),
149 'tms' =>array(
'type'=>
'timestamp',
'label'=>
'DateModification',
'enabled'=>1,
'visible'=>-1,
'notnull'=>1,
'position'=>85),
150 'status' =>array(
'type'=>
'integer',
'label'=>
'Status',
'enabled'=>1,
'visible'=>-1,
'position'=>500),
172 global $conf, $langs;
178 $this->label = trim($this->label);
179 $this->address = trim($this->address);
180 $this->zip = trim($this->zip);
181 $this->town = trim($this->town);
183 if (empty($this->
ref)) {
184 $this->
ref =
'(PROV)';
189 $sql =
"INSERT INTO ".MAIN_DB_PREFIX.
"establishment (";
195 $sql .=
", fk_country";
199 $sql .=
", fk_user_author";
200 $sql .=
", fk_user_mod";
201 $sql .=
") VALUES (";
202 $sql .=
"'".$this->db->escape($this->
ref).
"'";
203 $sql .=
", '".$this->db->escape($this->label).
"'";
204 $sql .=
", '".$this->db->escape($this->address).
"'";
205 $sql .=
", '".$this->db->escape($this->zip).
"'";
206 $sql .=
", '".$this->db->escape($this->town).
"'";
207 $sql .=
", ".((int) $this->country_id);
208 $sql .=
", ".((int) $this->status);
209 $sql .=
", ".((int) $conf->entity);
210 $sql .=
", '".$this->db->idate($now).
"'";
211 $sql .=
", ".((int) $user->id);
212 $sql .=
", ".((int) $user->id);
215 dol_syslog(get_class($this).
"::create", LOG_DEBUG);
216 $resql = $this->db->query($sql);
219 $this->errors[] =
"Error ".$this->db->lasterror();
224 foreach ($this->errors as $errmsg) {
225 dol_syslog(get_class($this).
"::create ".$errmsg, LOG_ERR);
226 $this->error .= ($this->error ?
', '.$errmsg : $errmsg);
228 $this->db->rollback();
231 $this->
id = $this->db->last_insert_id(MAIN_DB_PREFIX.
'establishment');
233 $sql =
'UPDATE '.MAIN_DB_PREFIX.
"establishment SET ref = '".$this->db->escape($this->
id).
"'";
234 $sql .=
" WHERE rowid = ".((int) $this->
id);
235 $this->db->query($sql);
253 if (empty($this->label)) {
254 $this->error =
'ErrorBadParameter';
260 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"establishment";
261 $sql .=
" SET ref = '".$this->db->escape($this->
ref).
"'";
262 $sql .=
", label = '".$this->db->escape($this->label).
"'";
263 $sql .=
", address = '".$this->db->escape($this->address).
"'";
264 $sql .=
", zip = '".$this->db->escape($this->zip).
"'";
265 $sql .=
", town = '".$this->db->escape($this->town).
"'";
266 $sql .=
", fk_country = ".($this->country_id > 0 ? $this->country_id :
'null');
267 $sql .=
", status = ".((int) $this->status);
268 $sql .=
", fk_user_mod = ".((int) $user->id);
269 $sql .=
", entity = ".((int) $this->entity);
270 $sql .=
" WHERE rowid = ".((int) $this->
id);
272 dol_syslog(get_class($this).
"::update", LOG_DEBUG);
273 $result = $this->db->query($sql);
278 $this->error = $this->db->lasterror();
279 $this->db->rollback();
292 $sql =
"SELECT e.rowid, e.ref, e.label, e.address, e.zip, e.town, e.status, e.fk_country as country_id, e.entity,";
293 $sql .=
' c.code as country_code, c.label as country';
294 $sql .=
" FROM ".MAIN_DB_PREFIX.
"establishment as e";
295 $sql .=
' LEFT JOIN '.MAIN_DB_PREFIX.
'c_country as c ON e.fk_country = c.rowid';
296 $sql .=
" WHERE e.rowid = ".((int) $id);
298 dol_syslog(get_class($this).
"::fetch", LOG_DEBUG);
299 $result = $this->db->query($sql);
301 $obj = $this->db->fetch_object($result);
303 $this->
id = $obj->rowid;
304 $this->
ref = $obj->ref;
305 $this->label = $obj->label;
306 $this->address = $obj->address;
307 $this->zip = $obj->zip;
308 $this->town = $obj->town;
309 $this->status = $obj->status;
310 $this->entity = $obj->entity;
312 $this->country_id = $obj->country_id;
313 $this->country_code = $obj->country_code;
314 $this->country = $obj->country;
321 $this->error = $this->db->lasterror();
332 public function delete($id)
336 $sql =
"DELETE FROM ".MAIN_DB_PREFIX.
"establishment WHERE rowid = ".((int) $id);
338 dol_syslog(get_class($this).
"::delete", LOG_DEBUG);
339 $result = $this->db->query($sql);
344 $this->error = $this->db->lasterror();
345 $this->db->rollback();
358 return $this->
LibStatut($this->status, $mode);
372 if (empty($this->labelStatus) || empty($this->labelStatusShort)) {
375 $this->labelStatus[self::STATUS_OPEN] = $langs->transnoentitiesnoconv(
'Open');
376 $this->labelStatus[self::STATUS_CLOSED] = $langs->transnoentitiesnoconv(
'Closed');
377 $this->labelStatusShort[self::STATUS_OPEN] = $langs->transnoentitiesnoconv(
'Open');
378 $this->labelStatusShort[self::STATUS_CLOSED] = $langs->transnoentitiesnoconv(
'Closed');
381 $statusType =
'status'.$status;
382 if ($status == self::STATUS_OPEN) {
383 $statusType =
'status4';
385 if ($status == self::STATUS_CLOSED) {
386 $statusType =
'status6';
389 return dolGetStatus($this->labelStatus[$status], $this->labelStatusShort[$status],
'', $statusType, $mode);
401 $sql =
'SELECT e.rowid, e.ref, e.datec, e.fk_user_author, e.tms as datem, e.fk_user_mod, e.entity';
402 $sql .=
' FROM '.MAIN_DB_PREFIX.
'establishment as e';
403 $sql .=
' WHERE e.rowid = '.((int) $id);
405 dol_syslog(get_class($this).
"::fetch info", LOG_DEBUG);
406 $result = $this->db->query($sql);
409 if ($this->db->num_rows($result)) {
410 $obj = $this->db->fetch_object($result);
411 $this->
id = $obj->rowid;
413 $this->user_creation_id = $obj->fk_user_author;
414 $this->user_modification_id = $obj->fk_user_mod;
415 $this->date_creation = $this->db->jdate($obj->datec);
416 $this->date_modification = empty($obj->datem) ?
'' : $this->db->jdate($obj->datem);
418 $this->db->free($result);
434 public function getNomUrl($withpicto = 0, $option =
'', $notooltip = 0, $morecss =
'', $save_lastsearch_value = -1)
436 global $conf, $langs, $hookmanager;
438 if (!empty($conf->dol_no_mouse_hover)) {
444 $label =
img_picto(
'', $this->picto).
' <u>'.$langs->trans(
"Establishment").
'</u>';
445 if (isset($this->status)) {
446 $label .=
' '.$this->getLibStatut(5);
449 $label .=
'<b>'.$langs->trans(
'Ref').
':</b> '.$this->ref;
452 $label .=
'<b>'.$langs->trans(
'Residence').
':</b> '.$this->address.
', '.$this->zip.
' '.$this->town;
454 $url = DOL_URL_ROOT.
'/hrm/establishment/card.php?id='.$this->id;
456 if ($option !=
'nolink') {
458 $add_save_lastsearch_values = ($save_lastsearch_value == 1 ? 1 : 0);
459 if ($save_lastsearch_value == -1 && preg_match(
'/list\.php/', $_SERVER[
"PHP_SELF"])) {
460 $add_save_lastsearch_values = 1;
462 if ($add_save_lastsearch_values) {
463 $url .=
'&save_lastsearch_values=1';
468 if (empty($notooltip)) {
469 if (!empty($conf->global->MAIN_OPTIMIZEFORTEXTBROWSER)) {
470 $label = $langs->trans(
"Establishment");
471 $linkclose .=
' alt="'.dol_escape_htmltag($label, 1).
'"';
473 $linkclose .=
' title="'.dol_escape_htmltag($label, 1).
'"';
474 $linkclose .=
' class="classfortooltip'.($morecss ?
' '.$morecss :
'').
'"';
476 $linkclose = ($morecss ?
' class="'.$morecss.
'"' :
'');
479 if ($option ==
'nolink') {
480 $linkstart =
'<span';
482 $linkstart =
'<a href="'.$url.
'"';
484 $linkstart .= $linkclose.
'>';
485 if ($option ==
'nolink') {
486 $linkend =
'</span>';
491 $result .= $linkstart;
494 $result .=
img_object(($notooltip ?
'' : $label), ($this->picto ? $this->picto :
'generic'), ($notooltip ? (($withpicto != 2) ?
'class="paddingright"' :
'') :
'class="'.(($withpicto != 2) ?
'paddingright ' :
'').
'classfortooltip"'), 0, 0, $notooltip ? 0 : 1);
497 if ($withpicto != 2) {
498 $result .= $this->label;
504 global $action, $hookmanager;
505 $hookmanager->initHooks(array(
'establishmentdao'));
506 $parameters = array(
'id'=>$this->
id,
'getnomurl' => &$result);
507 $reshook = $hookmanager->executeHooks(
'getNomUrl', $parameters, $this, $action);
509 $result = $hookmanager->resPrint;
511 $result .= $hookmanager->resPrint;
527 if (!empty($this->country_code)) {
528 return $this->country_code;
532 if (!empty($mysoc->country_code)) {
533 return $mysoc->country_code;
549 $this->label =
'Department AAA';
Parent class of all other business classes (invoices, contracts, proposals, orders,...
Class to manage establishments.
__construct($db)
Constructor.
getCountryCode()
Return account country code.
update($user)
Update record.
initAsSpecimen()
Initialise object with example values Id must be 0 if object instance is a specimen.
LibStatut($status, $mode=0)
Return the status.
getLibStatut($mode=0)
Give a label from a status.
getNomUrl($withpicto=0, $option='', $notooltip=0, $morecss='', $save_lastsearch_value=-1)
Return a link to the object card (with optionaly the picto)
fetch($id)
Load an object from database.
create($user)
Create object in database.
info($id)
Information on record.
dol_print_error($db='', $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0)
Show a picto called object_picto (generic function)
dol_now($mode='auto')
Return date for now.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.