dolibarr 24.0.0-beta
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 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
18 * or see https://www.gnu.org/
19 */
20
27require_once DOL_DOCUMENT_ROOT.'/core/modules/contract/modules_contract.php';
28
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 .= '<input type="hidden" name="page_y" value="">';
67
68 $texte .= '<table class="nobordernopadding centpercent">';
69
70 $tooltip = $langs->trans("GenericMaskCodes", $langs->transnoentities("Contract"), $langs->transnoentities("Contract"));
71 $tooltip .= $langs->trans("GenericMaskCodes1");
72 $tooltip .= '<br>';
73 $tooltip .= $langs->trans("GenericMaskCodes2");
74 $tooltip .= '<br>';
75 $tooltip .= $langs->trans("GenericMaskCodes3");
76 $tooltip .= $langs->trans("GenericMaskCodes4a", $langs->transnoentities("Contract"), $langs->transnoentities("Contract"));
77 $tooltip .= $langs->trans("GenericMaskCodes5");
78 $tooltip .= '<br>'.$langs->trans("GenericMaskCodes5b");
79
80 $texte .= '<tr><td>'.$langs->trans("Mask").':</td>';
81 $texte .= '<td class="right">'.$form->textwithpicto('<input type="text" class="flat minwidth175" name="maskcontract" value="'.getDolGlobalString("CONTRACT_MAGRE_MASK").'">', $tooltip, 1, 'help', 'valignmiddle', 0, 3, $this->name).'</td>';
82 $texte .= '<td class="left" rowspan="2">&nbsp; <input type="submit" class="button button-edit reposition smallpaddingimp" name="Button" value="'.$langs->trans("Save").'"></td>';
83 $texte .= '</tr>';
84 $texte .= '</table>';
85 $texte .= '</form>';
86
87 return $texte;
88 }
89
95 public function getExample()
96 {
97 global $db, $langs;
98
99 require_once DOL_DOCUMENT_ROOT . '/contrat/class/contrat.class.php';
100 require_once DOL_DOCUMENT_ROOT . '/societe/class/societe.class.php';
101
102 $contract = new Contrat($db);
103 $contract->initAsSpecimen();
104 $thirdparty = new Societe($db);
105 $thirdparty->initAsSpecimen();
106
107 $numExample = $this->getNextValue($thirdparty, $contract);
108
109
110 if (!$numExample) {
111 $numExample = $langs->trans('NotConfigured');
112 }
113 return $numExample;
114 }
115
123 public function getNextValue($objsoc, $contract)
124 {
125 global $db;
126
127 require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
128
129 $mask = getDolGlobalString("CONTRACT_MAGRE_MASK");
130
131 if (!$mask) {
132 $this->error = 'NotConfigured';
133 return 0;
134 }
135
136 $numFinal = get_next_value($db, $mask, 'contrat', 'ref', '', $objsoc, $contract->date_contrat);
137
138 return $numFinal;
139 }
140}
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.
if(!isModEnabled('ai')||!getDolGlobalString('AI_ASSISTANT_ENABLED')) global $db
API class for accounts.
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.
$conf db name
Only used if Module[ID]Name translation string is not found.
Definition repair.php:133