30 require_once DOL_DOCUMENT_ROOT.
'/core/modules/mrp/modules_mo.php';
42 public $version =
'dolibarr';
52 public $name =
'advanced';
62 global $conf, $langs, $db;
64 $langs->load(
"bills");
66 $form =
new Form($db);
68 $texte = $langs->trans(
'GenericNumRefModelDesc').
"<br>\n";
69 $texte .=
'<form action="'.$_SERVER[
"PHP_SELF"].
'" method="POST">';
70 $texte .=
'<input type="hidden" name="token" value="'.newToken().
'">';
71 $texte .=
'<input type="hidden" name="action" value="updateMask">';
72 $texte .=
'<input type="hidden" name="maskconstMo" value="MRP_MO_ADVANCED_MASK">';
73 $texte .=
'<table class="nobordernopadding" width="100%">';
75 $tooltip = $langs->trans(
"GenericMaskCodes", $langs->transnoentities(
"Mo"), $langs->transnoentities(
"Mo"));
76 $tooltip .= $langs->trans(
"GenericMaskCodes2");
77 $tooltip .= $langs->trans(
"GenericMaskCodes3");
78 $tooltip .= $langs->trans(
"GenericMaskCodes4a", $langs->transnoentities(
"Mo"), $langs->transnoentities(
"Mo"));
79 $tooltip .= $langs->trans(
"GenericMaskCodes5");
82 $texte .=
'<tr><td>'.$langs->trans(
"Mask").
':</td>';
83 $texte .=
'<td class="right">'.$form->textwithpicto(
'<input type="text" class="flat" size="24" name="maskMo" value="'.$conf->global->MRP_MO_ADVANCED_MASK.
'">', $tooltip, 1, 1).
'</td>';
85 $texte .=
'<td class="left" rowspan="2"> <input type="submit" class="button" value="'.$langs->trans(
"Modify").
'" name="Button"></td>';
102 global $conf, $langs, $mysoc;
104 $old_code_client = $mysoc->code_client;
105 $old_code_type = $mysoc->typent_code;
106 $mysoc->code_client =
'CCCCCCCCCC';
107 $mysoc->typent_code =
'TTTTTTTTTT';
109 $mysoc->code_client = $old_code_client;
110 $mysoc->typent_code = $old_code_type;
114 $numExample = $langs->trans(
'NotConfigured');
130 require_once DOL_DOCUMENT_ROOT.
'/core/lib/functions2.lib.php';
133 $mask = $conf->global->MRP_MO_ADVANCED_MASK;
137 $this->error =
'NotConfigured';
141 $date = ($object->date_mo ? $object->date_mo : $object->date);
143 $numFinal =
get_next_value($db, $mask,
'mrp_mo',
'ref',
'', null, $date);
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)
Class to manage MO numbering rules advanced.
getNextValue($objprod, $object)
Return next free value.
info()
Returns the description of the numbering model.
getExample()
Return an example of numbering.
Parent class to manage numbering of MOs.