30require_once DOL_DOCUMENT_ROOT.
'/core/modules/supplier_invoice/modules_facturefournisseur.php';
43 public $version =
'dolibarr';
55 public $nom =
'Tulip';
60 public $name =
'Tulip';
69 public function info($langs)
74 $langs->loadLangs(array(
"bills",
"admin"));
76 $form =
new Form($db);
78 $texte = $langs->trans(
'GenericNumRefModelDesc').
"<br>\n";
79 $texte .=
'<form action="'.$_SERVER[
"PHP_SELF"].
'" method="POST">';
80 $texte .=
'<input type="hidden" name="token" value="'.newToken().
'">';
81 $texte .=
'<input type="hidden" name="action" value="updateMask">';
82 $texte .=
'<input type="hidden" name="maskconstinvoice" value="SUPPLIER_INVOICE_TULIP_MASK">';
83 $texte .=
'<input type="hidden" name="maskconstreplacement" value="SUPPLIER_REPLACEMENT_TULIP_MASK">';
84 $texte .=
'<input type="hidden" name="maskconstcredit" value="SUPPLIER_CREDIT_TULIP_MASK">';
85 $texte .=
'<input type="hidden" name="maskconstdeposit" value="SUPPLIER_DEPOSIT_TULIP_MASK">';
86 $texte .=
'<table class="nobordernopadding" width="100%">';
88 $tooltip = $langs->trans(
"GenericMaskCodes", $langs->transnoentities(
"Invoice"), $langs->transnoentities(
"Invoice"));
89 $tooltip .= $langs->trans(
"GenericMaskCodes2");
90 $tooltip .= $langs->trans(
"GenericMaskCodes3");
91 $tooltip .= $langs->trans(
"GenericMaskCodes4a", $langs->transnoentities(
"Invoice"), $langs->transnoentities(
"Invoice"));
92 $tooltip .= $langs->trans(
"GenericMaskCodes5");
95 $texte .=
'<tr><td>'.$langs->trans(
"Mask").
' ('.$langs->trans(
"InvoiceStandard").
')';
97 $texte .=
'<td class="right">'.$form->textwithpicto(
'<input type="text" class="flat minwidth175" name="maskinvoice" value="'.
getDolGlobalString(
"SUPPLIER_INVOICE_TULIP_MASK").
'">', $tooltip, 1, 1).
'</td>';
99 $texte .=
'<td class="left" rowspan="2"> <input type="submit" class="button button-edit reposition smallpaddingimp" name="Button"value="'.$langs->trans(
"Modify").
'"></td>';
104 $texte .=
'<tr><td>'.$langs->trans(
"Mask").
' ('.$langs->trans(
"InvoiceAvoir").
'):</td>';
105 $texte .=
'<td class="right">'.$form->textwithpicto(
'<input type="text" class="flat minwidth175" name="maskcredit" value="'.
getDolGlobalString(
"SUPPLIER_CREDIT_TULIP_MASK").
'">', $tooltip, 1, 1).
'</td>';
110 $texte .=
'<tr><td>'.$langs->trans(
"Mask").
' ('.$langs->trans(
"InvoiceReplacement").
'):</td>';
111 $texte .=
'<td class="right">'.$form->textwithpicto(
'<input type="text" class="flat minwidth175" name="maskreplacement" value="'.
getDolGlobalString(
"SUPPLIER_REPLACEMENT_TULIP_MASK").
'">', $tooltip, 1, 1).
'</td>';
116 $texte .=
'<tr><td>'.$langs->trans(
"Mask").
' ('.$langs->trans(
"InvoiceDeposit").
'):</td>';
117 $texte .=
'<td class="right">'.$form->textwithpicto(
'<input type="text" class="flat minwidth175" name="maskdeposit" value="'.
getDolGlobalString(
"SUPPLIER_DEPOSIT_TULIP_MASK").
'">', $tooltip, 1, 1).
'</td>';
120 $texte .=
'</table>';
133 global $conf, $langs, $mysoc;
135 $old_code_client = $mysoc->code_client;
136 $mysoc->code_client =
'CCCCCCCCCC';
138 $mysoc->code_client = $old_code_client;
141 $numExample = $langs->trans(
'NotConfigured');
158 require_once DOL_DOCUMENT_ROOT.
'/core/lib/functions2.lib.php';
162 if (is_object($object) && $object->type == 1) {
167 } elseif (is_object($object) && $object->type == 2) {
169 } elseif (is_object($object) && $object->type == 3) {
175 $this->error =
'NotConfigured';
180 $numFinal =
get_next_value($db, $mask,
'facture_fourn',
'ref',
'', $objsoc, $object->date);
193 public function getNumRef($objsoc, $objforref, $mode =
'next')
Parent Class of numbering models of suppliers invoices references.
Tulip Class of numbering models of suppliers invoices references.
info($langs)
Returns the description of the model numbering.
getExample()
Returns a numbering example.
getNumRef($objsoc, $objforref, $mode='next')
Return next free value.
getNextValue($objsoc, $object, $mode='next')
Return next value.
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)
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.