27require_once DOL_DOCUMENT_ROOT.
'/core/modules/contract/modules_contract.php';
35 public $name =
'Magre';
36 public $version =
'dolibarr';
53 public function info($langs)
57 $langs->load(
"bills");
59 $form =
new Form($db);
61 $texte = $langs->trans(
'GenericNumRefModelDesc').
"<br>\n";
62 $texte .=
'<form action="'.$_SERVER[
"PHP_SELF"].
'" method="POST">';
63 $texte .=
'<input type="hidden" name="token" value="'.newToken().
'">';
64 $texte .=
'<input type="hidden" name="action" value="updateMask">';
65 $texte .=
'<input type="hidden" name="maskconstcontract" value="CONTRACT_MAGRE_MASK">';
66 $texte .=
'<table class="nobordernopadding" width="100%">';
68 $tooltip = $langs->trans(
"GenericMaskCodes", $langs->transnoentities(
"Contract"), $langs->transnoentities(
"Contract"));
69 $tooltip .= $langs->trans(
"GenericMaskCodes2");
70 $tooltip .= $langs->trans(
"GenericMaskCodes3");
71 $tooltip .= $langs->trans(
"GenericMaskCodes4a", $langs->transnoentities(
"Contract"), $langs->transnoentities(
"Contract"));
72 $tooltip .= $langs->trans(
"GenericMaskCodes5");
73 $tooltip .=
'<br>'.$langs->trans(
"GenericMaskCodes5b");
75 $texte .=
'<tr><td>'.$langs->trans(
"Mask").
':</td>';
76 $texte .=
'<td class="right">'.$form->textwithpicto(
'<input type="text" class="flat minwidth175" name="maskcontract" value="'.
getDolGlobalString(
"CONTRACT_MAGRE_MASK").
'">', $tooltip, 1, 1).
'</td>';
77 $texte .=
'<td class="left" rowspan="2"> <input type="submit" class="button button-edit reposition smallpaddingimp" name="Button"value="'.$langs->trans(
"Modify").
'"></td>';
94 require_once DOL_DOCUMENT_ROOT .
'/contrat/class/contrat.class.php';
95 require_once DOL_DOCUMENT_ROOT .
'/societe/class/societe.class.php';
98 $contract->initAsSpecimen();
100 $thirdparty->initAsSpecimen();
102 $numExample = $this->
getNextValue($thirdparty, $contract);
106 $numExample = $langs->trans(
'NotConfigured');
122 require_once DOL_DOCUMENT_ROOT.
'/core/lib/functions2.lib.php';
127 $this->error =
'NotConfigured';
131 $numFinal =
get_next_value($db, $mask,
'contrat',
'ref',
'', $objsoc, $contract->date_contrat);
Parent class for all contract numbering modules.
Class to manage third parties objects (customers, suppliers, prospects...)
Class to manage contract numbering rules Magre.
getNextValue($objsoc, $contract)
Return next value.
getExample()
Return numbering example.
info($langs)
Return default description of numbering model.
__construct()
Constructor.
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 a Dolibarr global constant string value.