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");
82 $tooltip .=
'<br>'.$langs->trans(
"GenericMaskCodes5b");
84 $texte .=
'<tr><td>'.$langs->trans(
"Mask").
':</td>';
85 $texte .=
'<td class="right">'.$form->textwithpicto(
'<input type="text" class="flat minwidth175" name="maskexpedition" value="'.
getDolGlobalString(
'EXPEDITION_RIBERA_MASK').
'">', $tooltip, 1, 1).
'</td>';
86 $texte .=
'<td class="left" rowspan="2"> <input type="submit" class="button button-edit reposition smallpaddingimp" name="Button" value="'.$langs->trans(
"Modify").
'"></td>';
101 global $langs, $mysoc, $db;
103 $old_code_client = $mysoc->code_client;
104 $old_code_type = $mysoc->typent_code;
105 $mysoc->code_client =
'CCCCCCCCCC';
106 $mysoc->typent_code =
'TTTTTTTTTT';
109 if (!class_exists(
'Expedition')) {
110 require_once DOL_DOCUMENT_ROOT.
'/expedition/class/expedition.class.php';
116 $mysoc->code_client = $old_code_client;
117 $mysoc->typent_code = $old_code_type;
120 $numExample = $langs->trans(
'NotConfigured');
136 require_once DOL_DOCUMENT_ROOT.
'/core/lib/functions2.lib.php';
141 $this->error =
'NotConfigured';
145 $date = $shipment->date_shipping;
147 $numFinal =
get_next_value($db, $mask,
'expedition',
'ref',
'', $objsoc, $date);
Class to manage shipments.
Parent Class of numbering models of sending receipts references.
Class to manage expedition numbering rules Ribera.
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.