26require_once DOL_DOCUMENT_ROOT.
'/core/modules/project/modules_project.php';
43 public $version =
'dolibarr';
55 public $nom =
'Universal';
60 public $name =
'Universal';
69 public function info($langs)
74 $langs->loadLangs(array(
"projects",
"admin"));
76 $form =
new Form($this->db);
78 $texte = $langs->trans(
'GenericNumRefModelDesc').
"<br>\n";
79 $texte .=
'<form action="'.$_SERVER[
"PHP_SELF"].
'" method="POST">';
80 $texte .=
'<input type="hidden" name="token" value="'.newToken().
'">';
81 $texte .=
'<input type="hidden" name="action" value="updateMask">';
82 $texte .=
'<input type="hidden" name="maskconstproject" value="PROJECT_UNIVERSAL_MASK">';
83 $texte .=
'<table class="nobordernopadding" width="100%">';
85 $tooltip = $langs->trans(
"GenericMaskCodes", $langs->transnoentities(
"Project"), $langs->transnoentities(
"Project"));
86 $tooltip .= $langs->trans(
"GenericMaskCodes2");
87 $tooltip .= $langs->trans(
"GenericMaskCodes3");
88 $tooltip .= $langs->trans(
"GenericMaskCodes4a", $langs->transnoentities(
"Project"), $langs->transnoentities(
"Project"));
89 $tooltip .= $langs->trans(
"GenericMaskCodes5");
90 $tooltip .=
'<br>'.$langs->trans(
"GenericMaskCodes5b");
93 $texte .=
'<tr><td>'.$langs->trans(
"Mask").
':</td>';
94 $texte .=
'<td class="right">'.$form->textwithpicto(
'<input type="text" class="flat minwidth175" name="maskproject" value="'.
getDolGlobalString(
'PROJECT_UNIVERSAL_MASK').
'">', $tooltip, 1, 1).
'</td>';
96 $texte .=
'<td class="left" rowspan="2"> <input type="submit" class="button button-edit reposition smallpaddingimp" name="Button"value="'.$langs->trans(
"Modify").
'"></td>';
100 $texte .=
'</table>';
113 global $conf, $langs, $mysoc;
115 $old_code_client = $mysoc->code_client;
116 $mysoc->code_client =
'CCCCCCCCCC';
118 $mysoc->code_client = $old_code_client;
121 $numExample = $langs->trans(
'NotConfigured');
137 require_once DOL_DOCUMENT_ROOT.
'/core/lib/functions2.lib.php';
143 $this->error =
'NotConfigured';
148 $entity =
getEntity(
'projectnumber', 1, $project);
150 $date = (empty($project->date_c) ?
dol_now() : $project->date_c);
151 $numFinal =
get_next_value($db, $mask,
'projet',
'ref',
'', (is_object($objsoc) ? $objsoc :
''), $date,
'next',
false,
null, $entity);
Class parent for numbering modules of tasks.
Class to manage the numbering module Universal for project references.
getExample()
Return an example of numbering.
info($langs)
Returns the description of the numbering model.
getNextValue($objsoc, $project)
Return next value.
get_next_value($db, $mask, $table, $field, $where='', $objsoc='', $date='', $mode='next', $bentityon=true, $objuser=null, $forceentity=null)
Return last or next value for a mask (according to area we should not reset)
dol_now($mode='auto')
Return date for now.
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
getEntity($element, $shared=1, $currentobject=null)
Get list of entity id to use.