26require_once DOL_DOCUMENT_ROOT.
'/core/modules/expedition/modules_expedition.php';
37 public $version =
'dolibarr';
49 public $nom =
'Ribera';
54 public $name =
'Ribera';
62 public function info($langs)
66 $langs->load(
"bills");
68 $form =
new Form($db);
70 $texte = $langs->trans(
'GenericNumRefModelDesc').
"<br>\n";
71 $texte .=
'<form action="'.$_SERVER[
"PHP_SELF"].
'" method="POST">';
72 $texte .=
'<input type="hidden" name="token" value="'.newToken().
'">';
73 $texte .=
'<input type="hidden" name="action" value="updateMask">';
74 $texte .=
'<input type="hidden" name="maskconstexpedition" value="EXPEDITION_RIBERA_MASK">';
75 $texte .=
'<table class="nobordernopadding" width="100%">';
77 $tooltip = $langs->trans(
"GenericMaskCodes", $langs->transnoentities(
"Shipment"), $langs->transnoentities(
"Shipment"));
78 $tooltip .= $langs->trans(
"GenericMaskCodes2");
79 $tooltip .= $langs->trans(
"GenericMaskCodes3");
80 $tooltip .= $langs->trans(
"GenericMaskCodes4a", $langs->transnoentities(
"Shipment"), $langs->transnoentities(
"Shipment"));
81 $tooltip .= $langs->trans(
"GenericMaskCodes5");
83 $texte .=
'<tr><td>'.$langs->trans(
"Mask").
':</td>';
84 $texte .=
'<td class="right">'.$form->textwithpicto(
'<input type="text" class="flat minwidth175" name="maskexpedition" value="'.
getDolGlobalString(
'EXPEDITION_RIBERA_MASK').
'">', $tooltip, 1, 1).
'</td>';
85 $texte .=
'<td class="left" rowspan="2"> <input type="submit" class="button button-edit reposition smallpaddingimp" name="Button" value="'.$langs->trans(
"Modify").
'"></td>';
100 global $conf, $langs, $mysoc;
102 $old_code_client = $mysoc->code_client;
103 $old_code_type = $mysoc->typent_code;
104 $mysoc->code_client =
'CCCCCCCCCC';
105 $mysoc->typent_code =
'TTTTTTTTTT';
107 $mysoc->code_client = $old_code_client;
108 $mysoc->typent_code = $old_code_type;
111 $numExample = $langs->trans(
'NotConfigured');
127 require_once DOL_DOCUMENT_ROOT.
'/core/lib/functions2.lib.php';
132 $this->error =
'NotConfigured';
136 $date = $shipment->date_expedition;
138 $numFinal =
get_next_value($db, $mask,
'expedition',
'ref',
'', $objsoc, $date);
Parent Class of numbering models of sending receipts references.
Class to manage expedition numbering rules Ribera.
expedition_get_num($objsoc, $objforref)
Return next free value.
info($langs)
Return default description of numbering model.
getNextValue($objsoc, $shipment)
Return next 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)
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.