24require
'../../main.inc.php';
25require_once DOL_DOCUMENT_ROOT.
'/core/lib/hrm.lib.php';
26require_once DOL_DOCUMENT_ROOT.
'/hrm/class/establishment.class.php';
27require_once DOL_DOCUMENT_ROOT.
'/core/lib/company.lib.php';
28require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formcompany.class.php';
31$langs->loadLangs(array(
'admin',
'hrm'));
35$action =
GETPOST(
'action',
'aZ09');
36$cancel =
GETPOST(
'cancel',
'alpha');
37$confirm =
GETPOST(
'confirm',
'alpha');
41static $tmpstatus2label = array(
42 '0'=>
'CloseEtablishment',
43 '1'=>
'OpenEtablishment'
45$status2label = array(
'');
46foreach ($tmpstatus2label as $key => $val) {
47 $status2label[$key] = $langs->trans($val);
53include DOL_DOCUMENT_ROOT.
'/core/actions_fetchobject.inc.php';
55$permissiontoread = $user->admin;
56$permissiontoadd = $user->admin;
57$permissiontodelete = $user->admin;
58$upload_dir = $conf->hrm->multidir_output[isset($object->entity) ? $object->entity : 1];
65if (!isModEnabled(
'hrm')) {
68if (empty($permissiontoread)) {
77if ($action ==
'confirm_delete' && $confirm ==
"yes") {
78 $result = $object->delete($id);
80 header(
"Location: ../admin/admin_establishment.php");
85} elseif ($action ==
'add') {
89 $object->label =
GETPOST(
'label',
'alpha');
90 if (empty($object->label)) {
91 setEventMessages($langs->trans(
"ErrorFieldRequired", $langs->transnoentitiesnoconv(
"Label")),
null,
'errors');
96 $object->address =
GETPOST(
'address',
'alpha');
97 $object->zip =
GETPOST(
'zipcode',
'alpha');
98 $object->town =
GETPOST(
'town',
'alpha');
99 $object->country_id =
GETPOST(
"country_id",
'int');
100 $object->status =
GETPOST(
'status',
'int');
101 $object->fk_user_author = $user->id;
103 $object->entity =
GETPOST(
'entity',
'int') > 0 ?
GETPOST(
'entity',
'int') : $conf->entity;
105 $id = $object->create($user);
108 header(
"Location: ".$_SERVER[
"PHP_SELF"].
"?id=".$id);
117 header(
"Location: ../admin/admin_establishment.php");
120} elseif ($action ==
'update') {
125 $name =
GETPOST(
'label',
'alpha');
127 setEventMessages($langs->trans(
'ErrorFieldRequired', $langs->transnoentitiesnoconv(
'Label')),
null,
'errors');
132 $object->label =
GETPOST(
'label',
'alphanohtml');
133 $object->address =
GETPOST(
'address',
'alpha');
134 $object->zip =
GETPOST(
'zipcode',
'alpha');
135 $object->town =
GETPOST(
'town',
'alpha');
136 $object->country_id =
GETPOST(
'country_id',
'int');
137 $object->fk_user_mod = $user->id;
138 $object->status =
GETPOST(
'status',
'int');
139 $object->entity =
GETPOST(
'entity',
'int') > 0 ?
GETPOST(
'entity',
'int') : $conf->entity;
141 $result = $object->update($user);
144 header(
"Location: ".$_SERVER[
"PHP_SELF"].
"?id=".
GETPOST(
'id',
'int'));
151 header(
"Location: ".$_SERVER[
"PHP_SELF"].
"?id=".
GETPOST(
'id',
'int'));
162$form =
new Form($db);
168if ($action ==
'create') {
171 print
'<form action="'.$_SERVER[
"PHP_SELF"].
'" method="POST">';
172 print
'<input type="hidden" name="token" value="'.newToken().
'">';
173 print
'<input type="hidden" name="action" value="add">';
177 print
'<table class="border centpercent">';
181 print
'<td>'.$form->editfieldkey(
'Label',
'label',
'', $object, 0,
'string',
'', 1).
'</td>';
182 print
'<td><input name="label" id="label" value="'.GETPOST(
"label",
"alphanohtml").
'" autofocus></td>';
198 print
'<td>'.$form->editfieldkey(
'Address',
'address',
'', $object, 0).
'</td>';
200 print
'<input name="address" id="address" class="qutrevingtpercent" value="'.GETPOST(
'address',
'alphanohtml').
'">';
206 print
'<td>'.$form->editfieldkey(
'Zip',
'zipcode',
'', $object, 0).
'</td>';
208 print $formcompany->select_ziptown(
222 print
'<td>'.$form->editfieldkey(
'Town',
'town',
'', $object, 0).
'</td>';
224 print $formcompany->select_ziptown(GETPOSTISSET(
'town') ?
GETPOST(
'town',
'alpha') : $object->town,
'town', array(
233 print
'<td>'.$form->editfieldkey(
'Country',
'selectcountry_id',
'', $object, 0).
'</td>';
234 print
'<td class="maxwidthonsmartphone">';
235 print $form->select_country(GETPOSTISSET(
'country_id') ?
GETPOST(
'country_id',
'int') : ($object->country_id ? $object->country_id : $mysoc->country_id),
'country_id');
237 print
info_admin($langs->trans(
"YouCanChangeValuesForThisListFromDictionarySetup"), 1);
244 print
'<td>'.$form->editfieldkey(
'Status',
'status',
'', $object, 0,
'string',
'', 1).
'</td>';
246 print $form->selectarray(
'status', $status2label, GETPOSTISSET(
'status') ?
GETPOST(
'status',
'alpha') : 1);
253 print
'<div class="center">';
254 print
'<input class="button button-save" type="submit" value="'.$langs->trans(
"Save").
'">';
255 print
' ';
256 print
'<input class="button button-cancel" type="submit" name="cancel" value="'.$langs->trans(
"Cancel").
'">';
263if ((!empty($id) || !empty($ref)) && $action ==
'edit') {
264 $result = $object->fetch($id);
268 if ($action ==
'edit') {
269 print
dol_get_fiche_head($head,
'card', $langs->trans(
"Establishment"), 0, $object->picto);
271 print
'<form name="update" action="'.$_SERVER[
"PHP_SELF"].
'" method="POST">'.
"\n";
272 print
'<input type="hidden" name="token" value="'.newToken().
'">';
273 print
'<input type="hidden" name="action" value="update">';
274 print
'<input type="hidden" name="id" value="'.$id.
'">';
276 print
'<table class="border centpercent">';
280 print
'<td class="titlefield">'.$langs->trans(
"Ref").
'</td><td>';
285 print
'<tr><td>'.$form->editfieldkey(
'Label',
'label',
'', $object, 0,
'string',
'', 1).
'</td><td>';
286 print
'<input name="label" id="label" class="flat" value="'.$object->label.
'">';
299 print
'<tr><td>'.$form->editfieldkey(
'Address',
'address',
'', $object, 0).
'</td>';
301 print
'<input name="address" id="address" value="'.$object->address.
'">';
305 print
'<tr><td>'.$form->editfieldkey(
'Zip',
'zipcode',
'', $object, 0).
'</td><td>';
306 print $formcompany->select_ziptown($object->zip,
'zipcode', array(
310 print
'<tr><td>'.$form->editfieldkey(
'Town',
'town',
'', $object, 0).
'</td><td>';
311 print $formcompany->select_ziptown($object->town,
'town', array(
317 print
'<tr><td>'.$form->editfieldkey(
'Country',
'selectcountry_id',
'', $object, 0).
'</td>';
318 print
'<td class="maxwidthonsmartphone">';
319 print $form->select_country($object->country_id,
'country_id');
321 print
info_admin($langs->trans(
"YouCanChangeValuesForThisListFromDictionarySetup"), 1);
327 print
'<tr><td>'.$form->editfieldkey(
'Status',
'status',
'', $object, 0,
'string',
'', 1).
'</td><td>';
328 print $form->selectarray(
'status', $status2label, $object->status);
335 print $form->buttonsSaveCancel();
344if ($object->id > 0 && (empty($action) || ($action !=
'edit' && $action !=
'create'))) {
345 $res = $object->fetch_optionals();
348 print
dol_get_fiche_head($head,
'card', $langs->trans(
"Establishment"), -1, $object->picto);
351 if ($action ==
'delete') {
352 print $form->formconfirm($_SERVER[
"PHP_SELF"].
"?id=".$id, $langs->trans(
"DeleteEstablishment"), $langs->trans(
"ConfirmDeleteEstablishment"),
"confirm_delete");
359 $linkback =
'<a href="'.DOL_URL_ROOT.
'/hrm/admin/admin_establishment.php'.(!empty($socid) ?
'?socid='.$socid :
'').
'">'.$langs->trans(
"BackToList").
'</a>';
361 $morehtmlref =
'<div class="refidno">';
362 $morehtmlref .=
'</div>';
364 dol_banner_tab($object,
'id', $linkback, 1,
'rowid',
'id', $morehtmlref);
367 print
'<div class="fichecenter">';
369 print
'<div class="underbanner clearboth"></div>';
370 print
'<table class="border centpercent">'.
"\n";
374 print
'<td class="titlefield">'.$langs->trans(
"Label").
'</td>';
375 print
'<td>'.$object->label.
'</td>';
389 print
'<td>'.$langs->trans(
"Address").
'</td>';
390 print
'<td>'.$object->address.
'</td>';
395 print
'<td>'.$langs->trans(
"Zip").
'</td>';
396 print
'<td>'.$object->zip.
'</td>';
401 print
'<td>'.$langs->trans(
"Town").
'</td>';
402 print
'<td>'.$object->town.
'</td>';
407 print
'<td>'.$langs->trans(
"Country").
'</td>';
409 if ($object->country_id > 0) {
411 print $img ? $img.
' ' :
'';
412 print
getCountry($object->getCountryCode(), 0, $db);
420 print
'<div class="clearboth"></div><br>';
427 print
'<div class="tabsAction">';
430 print
'<a class="butAction" href="'.$_SERVER[
"PHP_SELF"].
'?action=edit&token='.newToken().
'&id='.$id.
'">'.$langs->trans(
'Modify').
'</a>';
433 print
dolGetButtonAction($langs->trans(
"Delete"),
'',
'delete', $_SERVER[
"PHP_SELF"].
'?id='.$object->id.
'&action=delete&token='.newToken(),
'delete', $permissiontodelete);
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
Class to manage establishments.
getCountry($searchkey, $withcode='', $dbtouse=0, $outputlangs='', $entconv=1, $searchlabel='')
Return country label, code or id from an id, code or label.
establishment_prepare_head($object)
Return head table for establishment tabs screen.
dol_banner_tab($object, $paramid, $morehtml='', $shownav=1, $fieldid='rowid', $fieldref='ref', $morehtmlref='', $moreparam='', $nodbprefix=0, $morehtmlleft='', $morehtmlstatus='', $onlybanner=0, $morehtmlright='')
Show tab footer of a card.
picto_from_langcode($codelang, $moreatt='', $notitlealt=0)
Return img flag of country for a language code or country code.
load_fiche_titre($titre, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0)
Show tabs of a record.
dol_print_error($db='', $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
dol_get_fiche_end($notab=0)
Return tab footer of a card.
dol_now($mode='auto')
Return date for now.
dolGetButtonAction($label, $text='', $actionType='default', $url='', $id='', $userRight=1, $params=array())
Function dolGetButtonAction.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
info_admin($text, $infoonimgalt=0, $nodiv=0, $admin='1', $morecss='hideonsmartphone', $textfordropdown='')
Show information for admin users or standard users.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0)
Set event messages in dol_events session object.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.