dolibarr 19.0.3
mod_task_universal.php
1<?php
2/* Copyright (C) 2010 Regis Houssin <regis.houssin@inodbox.com>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 3 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <https://www.gnu.org/licenses/>.
16 * or see https://www.gnu.org/
17 */
18
25require_once DOL_DOCUMENT_ROOT.'/core/modules/project/task/modules_task.php';
26
27
32{
37 public $version = 'dolibarr'; // 'development', 'experimental', 'dolibarr'
38
42 public $error = '';
43
49 public $nom = 'Universal';
50
54 public $name = 'Universal';
55
56
63 public function info($langs)
64 {
65 global $langs, $db;
66
67 // Load translation files required by the page
68 $langs->loadLangs(array("projects", "admin"));
69
70 $form = new Form($db);
71
72 $texte = $langs->trans('GenericNumRefModelDesc')."<br>\n";
73 $texte .= '<form action="'.$_SERVER["PHP_SELF"].'" method="POST">';
74 $texte .= '<input type="hidden" name="token" value="'.newToken().'">';
75 $texte .= '<input type="hidden" name="action" value="updateMaskTask">';
76 $texte .= '<input type="hidden" name="maskconsttask" value="PROJECT_TASK_UNIVERSAL_MASK">';
77 $texte .= '<table class="nobordernopadding" width="100%">';
78
79 $tooltip = $langs->trans("GenericMaskCodes", $langs->transnoentities("Task"), $langs->transnoentities("Task"));
80 $tooltip .= $langs->trans("GenericMaskCodes2");
81 $tooltip .= $langs->trans("GenericMaskCodes3");
82 $tooltip .= $langs->trans("GenericMaskCodes4a", $langs->transnoentities("Task"), $langs->transnoentities("Task"));
83 $tooltip .= $langs->trans("GenericMaskCodes5");
84
85 // Parametrage du prefix
86 $texte .= '<tr><td>'.$langs->trans("Mask").':</td>';
87 $texte .= '<td class="right">'.$form->textwithpicto('<input type="text" class="flat minwidth175" name="masktask" value="'.getDolGlobalString('PROJECT_TASK_UNIVERSAL_MASK').'">', $tooltip, 1, 1).'</td>';
88
89 $texte .= '<td class="left" rowspan="2">&nbsp; <input type="submit" class="button button-edit reposition smallpaddingimp" name="Button"value="'.$langs->trans("Modify").'"></td>';
90
91 $texte .= '</tr>';
92
93 $texte .= '</table>';
94 $texte .= '</form>';
95
96 return $texte;
97 }
98
104 public function getExample()
105 {
106 global $conf, $langs, $mysoc;
107
108 $old_code_client = $mysoc->code_client;
109 $mysoc->code_client = 'CCCCCCCCCC';
110 $numExample = $this->getNextValue($mysoc, '');
111 $mysoc->code_client = $old_code_client;
112
113 if (!$numExample) {
114 $numExample = $langs->trans('NotConfigured');
115 }
116 return $numExample;
117 }
118
126 public function getNextValue($objsoc, $object)
127 {
128 global $db, $conf;
129
130 require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
131
132 $mask = getDolGlobalString('PROJECT_TASK_UNIVERSAL_MASK');
133
134 if (!$mask) {
135 $this->error = 'NotConfigured';
136 return 0;
137 }
138
139 $date = empty($object->date_c) ? dol_now() : $object->date_c;
140 $numFinal = get_next_value($db, $mask, 'projet_task', 'ref', '', (is_object($objsoc) ? $objsoc->code_client : ''), $date);
141
142 return $numFinal;
143 }
144
145
146 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
154 public function project_get_num($objsoc = 0, $object = '')
155 {
156 // phpcs:enable
157 return $this->getNextValue($objsoc, $object);
158 }
159}
Class to manage generation of HTML components Only common components must be here.
Parent class of task reference numbering models.
Classe du modele de numerotation de reference de projet Universal.
getExample()
Return an example of numbering.
info($langs)
Returns the description of the numbering model.
getNextValue($objsoc, $object)
Return next value.
project_get_num($objsoc=0, $object='')
Return next reference not yet used as a reference.
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)
dol_now($mode='auto')
Return date for now.
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.