29require_once DOL_DOCUMENT_ROOT.
'/core/modules/supplier_proposal/modules_supplier_proposal.php';
41 public $version =
'dolibarr';
53 public $nom =
'Saphir';
58 public $name =
'Saphir';
67 public function info($langs)
71 $langs->load(
"bills");
73 $form =
new Form($db);
75 $texte = $langs->trans(
'GenericNumRefModelDesc').
"<br>\n";
76 $texte .=
'<form action="'.$_SERVER[
"PHP_SELF"].
'" method="POST">';
77 $texte .=
'<input type="hidden" name="token" value="'.newToken().
'">';
78 $texte .=
'<input type="hidden" name="action" value="updateMask">';
79 $texte .=
'<input type="hidden" name="maskconstsupplier_proposal" value="SUPPLIER_PROPOSAL_SAPHIR_MASK">';
80 $texte .=
'<input type="hidden" name="page_y" value="">';
82 $texte .=
'<table class="nobordernopadding centpercent">';
84 $tooltip = $langs->trans(
"GenericMaskCodes", $langs->transnoentities(
"CommRequest"), $langs->transnoentities(
"CommRequest"));
85 $tooltip .= $langs->trans(
"GenericMaskCodes1");
87 $tooltip .= $langs->trans(
"GenericMaskCodes2");
89 $tooltip .= $langs->trans(
"GenericMaskCodes3");
90 $tooltip .= $langs->trans(
"GenericMaskCodes4a", $langs->transnoentities(
"CommRequest"), $langs->transnoentities(
"CommRequest"));
91 $tooltip .= $langs->trans(
"GenericMaskCodes5");
92 $tooltip .=
'<br>'.$langs->trans(
"GenericMaskCodes5b");
97 $texte .=
'<tr><td>'.$langs->trans(
"Mask").
':</td>';
98 $texte .=
'<td class="right">'.$form->textwithpicto(
'<input type="text" class="flat minwidth175" name="masksupplier_proposal" value="'.$mask.
'">', $tooltip, 1,
'help',
'valignmiddle', 0, 3, $this->name).
'</td>';
100 $texte .=
'<td class="left" rowspan="2"> <input type="submit" class="button button-edit reposition smallpaddingimp" name="Button" value="'.$langs->trans(
"Save").
'"></td>';
104 $texte .=
'</table>';
119 $old_code_client =
$mysoc->code_client;
120 $mysoc->code_client =
'CCCCCCCCCC';
122 $mysoc->code_client = $old_code_client;
125 $numExample =
'NotConfigured';
141 require_once DOL_DOCUMENT_ROOT.
'/core/lib/functions2.lib.php';
144 $mask = !
getDolGlobalString(
'SUPPLIER_PROPOSAL_SAPHIR_MASK') ?
'' : $conf->global->SUPPLIER_PROPOSAL_SAPHIR_MASK;
147 $this->error =
'NotConfigured';
151 $date = $supplier_proposal->date;
152 $customercode = $objsoc->code_client;
153 $numFinal =
get_next_value($db, $mask,
'supplier_proposal',
'ref',
'', $customercode, $date);
Parent class of the Proposal numbering model classes.
Class of file that contains the numbering module rules Saphir.
getExample()
Return an example of numbering.
info($langs)
Return description of module.
getNextValue($objsoc, $supplier_proposal)
Return next value.
get_next_value($db, $mask, $table, $field, $where='', $objsoc='', $date='', $mode='next', $bentityon=true, $objuser=null, $forceentity=null, $objbookkeeping=null)
Return last or next value for a mask (according to area we should not reset)
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.