dolibarr 21.0.0-alpha
mod_contract_magre.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2011 Juanjo Menent <jmenent@2byte.es>
3 * Copyright (C) 2019-2024 Frédéric France <frederic.france@free.fr>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <https://www.gnu.org/licenses/>.
17 * or see https://www.gnu.org/
18 */
19
26require_once DOL_DOCUMENT_ROOT.'/core/modules/contract/modules_contract.php';
27
32{
33
34 // variables inherited from ModelNumRefContracts class
35 public $name = 'Magre';
36 public $version = 'dolibarr';
37 public $error = '';
38
42 public function __construct()
43 {
44 $this->code_auto = 1;
45 }
46
53 public function info($langs)
54 {
55 global $langs, $db;
56
57 $langs->load("bills");
58
59 $form = new Form($db);
60
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%">';
67
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
74 $texte .= '<tr><td>'.$langs->trans("Mask").':</td>';
75 $texte .= '<td class="right">'.$form->textwithpicto('<input type="text" class="flat minwidth175" name="maskcontract" value="'.getDolGlobalString("CONTRACT_MAGRE_MASK").'">', $tooltip, 1, 1).'</td>';
76 $texte .= '<td class="left" rowspan="2">&nbsp; <input type="submit" class="button button-edit reposition smallpaddingimp" name="Button"value="'.$langs->trans("Modify").'"></td>';
77 $texte .= '</tr>';
78 $texte .= '</table>';
79 $texte .= '</form>';
80
81 return $texte;
82 }
83
89 public function getExample()
90 {
91 global $db, $langs;
92
93 require_once DOL_DOCUMENT_ROOT . '/contrat/class/contrat.class.php';
94 require_once DOL_DOCUMENT_ROOT . '/societe/class/societe.class.php';
95
96 $contract = new Contrat($db);
97 $contract->initAsSpecimen();
98 $thirdparty = new Societe($db);
99 $thirdparty->initAsSpecimen();
100
101 $numExample = $this->getNextValue($thirdparty, $contract);
102
103
104 if (!$numExample) {
105 $numExample = $langs->trans('NotConfigured');
106 }
107 return $numExample;
108 }
109
117 public function getNextValue($objsoc, $contract)
118 {
119 global $db;
120
121 require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
122
123 $mask = getDolGlobalString("CONTRACT_MAGRE_MASK");
124
125 if (!$mask) {
126 $this->error = 'NotConfigured';
127 return 0;
128 }
129
130 $numFinal = get_next_value($db, $mask, 'contrat', 'ref', '', $objsoc, $contract->date_contrat);
131
132 return $numFinal;
133 }
134}
Class to manage contracts.
Class to manage generation of HTML components Only common components must be here.
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.
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.