30require_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 minwidth175" name="maskMo" value="'.
getDolGlobalString(
'MRP_MO_ADVANCED_MASK').
'">', $tooltip, 1, 1).
'</td>';
85 $texte .=
'<td class="left" rowspan="2"> <input type="submit" class="button button-edit" name="Button"value="'.$langs->trans(
"Modify").
'"></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;
113 $numExample = $langs->trans(
'NotConfigured');
129 require_once DOL_DOCUMENT_ROOT.
'/core/lib/functions2.lib.php';
135 $this->error =
'NotConfigured';
139 $date = ($object->date_mo ? $object->date_mo : $object->date);
141 $numFinal =
get_next_value($db, $mask,
'mrp_mo',
'ref',
'',
null, $date);
Parent class to manage numbering of MOs.
Class to manage MO numbering rules advanced.
getExample()
Return an example of numbering.
getNextValue($objprod, $object)
Return next free value.
info()
Returns the description of the numbering model.
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.