26require_once DOL_DOCUMENT_ROOT.
'/core/modules/reception/modules_reception.php';
33 public $version =
'dolibarr';
35 public $nom =
'Moonstone';
43 public function info($langs)
47 $langs->load(
"bills");
49 $form =
new Form($db);
51 $texte = $langs->trans(
'GenericNumRefModelDesc').
"<br>\n";
52 $texte .=
'<form action="'.$_SERVER[
"PHP_SELF"].
'" method="POST">';
53 $texte .=
'<input type="hidden" name="token" value="'.newToken().
'">';
54 $texte .=
'<input type="hidden" name="action" value="updateMask">';
55 $texte .=
'<input type="hidden" name="maskconstreception" value="RECEPTION_MOONSTONE_MASK">';
56 $texte .=
'<table class="nobordernopadding" width="100%">';
58 $tooltip = $langs->trans(
"GenericMaskCodes", $langs->transnoentities(
"Reception"), $langs->transnoentities(
"Reception"));
59 $tooltip .= $langs->trans(
"GenericMaskCodes2");
60 $tooltip .= $langs->trans(
"GenericMaskCodes3");
61 $tooltip .= $langs->trans(
"GenericMaskCodes4a", $langs->transnoentities(
"Reception"), $langs->transnoentities(
"Reception"));
62 $tooltip .= $langs->trans(
"GenericMaskCodes5");
64 $texte .=
'<tr><td>'.$langs->trans(
"Mask").
':</td>';
65 $texte .=
'<td class="right">'.$form->textwithpicto(
'<input type="text" class="flat minwidth175" name="maskreception" value="'.
getDolGlobalString(
"RECEPTION_MOONSTONE_MASK").
'">', $tooltip, 1, 1).
'</td>';
66 $texte .=
'<td class="left" rowspan="2"> <input type="submit" class="button button-edit reposition smallpaddingimp" name="Button" value="'.$langs->trans(
"Modify").
'"></td>';
81 global $langs, $mysoc;
83 $old_code_client = $mysoc->code_client;
84 $old_code_type = $mysoc->typent_code;
85 $mysoc->code_client =
'CCCCCCCCCC';
86 $mysoc->typent_code =
'TTTTTTTTTT';
88 $mysoc->code_client = $old_code_client;
89 $mysoc->typent_code = $old_code_type;
92 $numExample = $langs->trans(
'NotConfigured');
108 require_once DOL_DOCUMENT_ROOT.
'/core/lib/functions2.lib.php';
113 $this->error =
'NotConfigured';
117 if (!empty($reception)) {
118 $date = $reception->date_reception;
123 $numFinal =
get_next_value($db, $mask,
'reception',
'ref',
'', $objsoc, $date);
Parent Class of numbering models of sending receipts references.
Class to manage reception numbering rules Moonstone.
info($langs)
Return default description of numbering model.
getNextValue($objsoc, $reception)
Return next value.
reception_get_num($objsoc, $objforref)
Return next free value.
getExample()
Return numbering example.
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.