25require_once DOL_DOCUMENT_ROOT.
'/core/modules/expensereport/modules_expensereport.php';
37 public $version =
'dolibarr';
54 public $name =
'Sand';
63 public function info($langs)
65 global $db, $conf, $langs;
67 $langs->load(
"bills");
69 $form =
new Form($db);
71 $texte = $langs->trans(
'GenericNumRefModelDesc').
"<br>\n";
72 $texte .=
'<form action="'.$_SERVER[
"PHP_SELF"].
'" method="POST">';
73 $texte .=
'<input type="hidden" name="token" value="'.newToken().
'">';
74 $texte .=
'<input type="hidden" name="action" value="updateMask">';
75 $texte .=
'<input type="hidden" name="maskconst" value="EXPENSEREPORT_SAND_MASK">';
76 $texte .=
'<table class="nobordernopadding" width="100%">';
78 $tooltip = $langs->trans(
"GenericMaskCodes", $langs->transnoentities(
"ExpenseReport"), $langs->transnoentities(
"ExpenseReport"));
80 $tooltip .= $langs->trans(
"GenericMaskCodes3");
81 $tooltip .= $langs->trans(
"GenericMaskCodes4a", $langs->transnoentities(
"ExpenseReport"), $langs->transnoentities(
"ExpenseReport"));
82 $tooltip .= $langs->trans(
"GenericMaskCodes5");
85 $texte .=
'<tr><td>'.$langs->trans(
"Mask").
':</td>';
86 $mask = !
getDolGlobalString(
'EXPENSEREPORT_SAND_MASK') ?
'' : $conf->global->EXPENSEREPORT_SAND_MASK;
87 $texte .=
'<td class="right">'.$form->textwithpicto(
'<input type="text" class="flat minwidth175" name="maskvalue" value="'.$mask.
'">', $tooltip, 1, 1).
'</td>';
89 $texte .=
'<td class="left" rowspan="2"> <input type="submit" class="button button-edit reposition smallpaddingimp" name="Button" value="'.$langs->trans(
"Modify").
'"></td>';
106 global $db, $conf, $langs, $user;
109 $exp->initAsSpecimen();
110 $exp->fk_user_author = $user->id;
115 $numExample = $langs->trans(
'NotConfigured');
130 require_once DOL_DOCUMENT_ROOT.
'/core/lib/functions2.lib.php';
133 $mask = !
getDolGlobalString(
'EXPENSEREPORT_SAND_MASK') ?
'' : $conf->global->EXPENSEREPORT_SAND_MASK;
136 $this->error =
'NotConfigured';
140 $date = $object->date_valid;
142 $this->error =
'Date valid not defined';
147 if ($object->fk_user_author > 0) {
148 $fuser =
new User($db);
149 $fuser->fetch($object->fk_user_author);
152 $numFinal =
get_next_value($db, $mask,
'expensereport',
'ref',
'',
null, $date,
'next',
true, $fuser);
Class to manage Trips and Expenses.
Parent class for numbering masks of expense reports.
Class to manage Dolibarr users.
Class to manage expense report numbering rules Sand.
info($langs)
Returns the description of the numbering model.
getExample()
Return an example of numbering.
getNextValue($object)
Return next free 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)
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.