dolibarr  16.0.5
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 
25 require_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 
62  public function info()
63  {
64  global $conf, $langs, $db;
65 
66  // Load translation files required by the page
67  $langs->loadLangs(array("projects", "admin"));
68 
69  $form = new Form($db);
70 
71  $texte = $langs->trans('GenericNumRefModelDesc')."<br>\n";
72  $texte .= '<form action="'.$_SERVER["PHP_SELF"].'" method="POST">';
73  $texte .= '<input type="hidden" name="token" value="'.newToken().'">';
74  $texte .= '<input type="hidden" name="action" value="updateMaskTask">';
75  $texte .= '<input type="hidden" name="maskconsttask" value="PROJECT_TASK_UNIVERSAL_MASK">';
76  $texte .= '<table class="nobordernopadding" width="100%">';
77 
78  $tooltip = $langs->trans("GenericMaskCodes", $langs->transnoentities("Task"), $langs->transnoentities("Task"));
79  $tooltip .= $langs->trans("GenericMaskCodes2");
80  $tooltip .= $langs->trans("GenericMaskCodes3");
81  $tooltip .= $langs->trans("GenericMaskCodes4a", $langs->transnoentities("Task"), $langs->transnoentities("Task"));
82  $tooltip .= $langs->trans("GenericMaskCodes5");
83 
84  // Parametrage du prefix
85  $texte .= '<tr><td>'.$langs->trans("Mask").':</td>';
86  $texte .= '<td class="right">'.$form->textwithpicto('<input type="text" class="flat minwidth175" name="masktask" value="'.$conf->global->PROJECT_TASK_UNIVERSAL_MASK.'">', $tooltip, 1, 1).'</td>';
87 
88  $texte .= '<td class="left" rowspan="2">&nbsp; <input type="submit" class="button button-edit" name="Button"value="'.$langs->trans("Modify").'"></td>';
89 
90  $texte .= '</tr>';
91 
92  $texte .= '</table>';
93  $texte .= '</form>';
94 
95  return $texte;
96  }
97 
103  public function getExample()
104  {
105  global $conf, $langs, $mysoc;
106 
107  $old_code_client = $mysoc->code_client;
108  $mysoc->code_client = 'CCCCCCCCCC';
109  $numExample = $this->getNextValue($mysoc, '');
110  $mysoc->code_client = $old_code_client;
111 
112  if (!$numExample) {
113  $numExample = $langs->trans('NotConfigured');
114  }
115  return $numExample;
116  }
117 
125  public function getNextValue($objsoc, $object)
126  {
127  global $db, $conf;
128 
129  require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
130 
131  // On defini critere recherche compteur
132  $mask = $conf->global->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 }
mod_task_universal\project_get_num
project_get_num($objsoc=0, $object='')
Return next reference not yet used as a reference.
Definition: mod_task_universal.php:154
$form
if($cancel &&! $id) if($action=='add' &&! $cancel) if($action=='delete') if($id) $form
Actions.
Definition: card.php:142
mod_task_universal
Classe du modele de numerotation de reference de projet Universal.
Definition: mod_task_universal.php:31
mod_task_universal\info
info()
Returns the description of the numbering model.
Definition: mod_task_universal.php:62
mod_task_universal\getNextValue
getNextValue($objsoc, $object)
Return next value.
Definition: mod_task_universal.php:125
get_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)
Definition: functions2.lib.php:970
Form
Class to manage generation of HTML components Only common components must be here.
Definition: html.form.class.php:52
dol_now
dol_now($mode='auto')
Return date for now.
Definition: functions.lib.php:2845
ModeleNumRefTask
Classe mere des modeles de numerotation des references de projets.
Definition: modules_task.php:69
mod_task_universal\getExample
getExample()
Return an example of numbering.
Definition: mod_task_universal.php:103