dolibarr 18.0.6
actions_card_service.class.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2010-2018 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 */
17
23include_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php';
24
25
30{
31 public $targetmodule;
32 public $canvas;
33 public $card;
34
36 public $tpl = array();
37
38 // List of fiels for action=list
39 public $field_list = array();
40
41 public $id;
42 public $ref;
43 public $description;
44 public $note;
45 public $price;
46 public $price_min;
47
48
57 public function __construct($db, $targetmodule, $canvas, $card)
58 {
59 $this->db = $db;
60 $this->targetmodule = $targetmodule;
61 $this->canvas = $canvas;
62 $this->card = $card;
63
64 $this->module = "service";
65 $this->name = "service";
66 $this->definition = "Services canvas";
67 $this->fieldListName = "product_service";
68 $this->next_prev_filter = "canvas='service'";
69 }
70
71
72 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
81 public function assign_values(&$action, $id = 0, $ref = '')
82 {
83 // phpcs:enable
84 global $conf, $langs, $user, $mysoc, $canvas;
85 global $form;
86
87 $tmpobject = new Product($this->db);
88 if (!empty($id) || !empty($ref)) {
89 $tmpobject->fetch($id, $ref);
90 }
91 $this->object = $tmpobject;
92
93 foreach ($this->object as $key => $value) {
94 $this->tpl[$key] = $value;
95 }
96
97 $this->tpl['error'] = get_htmloutput_errors($this->object->error, $this->object->errors);
98
99 // canvas
100 $this->tpl['canvas'] = $this->canvas;
101
102 // id
103 $this->tpl['id'] = $this->id;
104
105 // Ref
106 $this->tpl['ref'] = $this->ref;
107
108 // Label
109 $this->tpl['label'] = $this->label;
110
111 // Description
112 $this->tpl['description'] = nl2br($this->description);
113
114 // Statut
115 $this->tpl['status'] = $this->object->getLibStatut(2);
116
117 // Note
118 $this->tpl['note'] = nl2br($this->note);
119
120 if ($action == 'create') {
121 // Price
122 $this->tpl['price'] = $this->price;
123 $this->tpl['price_min'] = $this->price_min;
124 $this->tpl['price_base_type'] = $form->selectPriceBaseType($this->price_base_type, "price_base_type");
125
126 // VAT
127 $this->tpl['tva_tx'] = $form->load_tva("tva_tx", -1, $mysoc, '');
128 }
129
130 if ($action == 'view') {
131 $head = product_prepare_head($this->object);
132
133 $this->tpl['showrefnav'] = $form->showrefnav($this->object, 'ref', '', 1, 'ref');
134
135 $titre = $langs->trans("CardProduct".$this->object->type);
136 $picto = ($this->object->type == Product::TYPE_SERVICE ? 'service' : 'product');
137 $this->tpl['showhead'] = dol_get_fiche_head($head, 'card', $titre, 0, $picto);
138 $this->tpl['showend'] = dol_get_fiche_end();
139
140 // Accountancy buy code
141 $this->tpl['accountancyBuyCodeKey'] = $form->editfieldkey("ProductAccountancyBuyCode", 'productaccountancycodesell', $this->accountancy_code_sell, $this, $user->rights->produit->creer);
142 $this->tpl['accountancyBuyCodeVal'] = $form->editfieldval("ProductAccountancyBuyCode", 'productaccountancycodesell', $this->accountancy_code_sell, $this, $user->rights->produit->creer);
143
144 // Accountancy sell code
145 $this->tpl['accountancySellCodeKey'] = $form->editfieldkey("ProductAccountancySellCode", 'productaccountancycodebuy', $this->accountancy_code_buy, $this, $user->rights->produit->creer);
146 $this->tpl['accountancySellCodeVal'] = $form->editfieldval("ProductAccountancySellCode", 'productaccountancycodebuy', $this->accountancy_code_buy, $this, $user->rights->produit->creer);
147 }
148
149 $this->tpl['finished'] = $this->object->finished;
150 $this->tpl['ref'] = $this->object->ref;
151 $this->tpl['label'] = $this->object->label;
152 $this->tpl['id'] = $this->object->id;
153 $this->tpl['type'] = $this->object->type;
154 $this->tpl['note'] = $this->object->note_private;
155 $this->tpl['seuil_stock_alerte'] = $this->object->seuil_stock_alerte;
156
157 // Duration
158 $this->tpl['duration_value'] = $this->object->duration_value;
159
160 if ($action == 'create') {
161 // Title
162 $this->tpl['title'] = $langs->trans("NewService");
163 }
164
165 if ($action == 'edit') {
166 $this->tpl['title'] = $langs->trans('Modify').' '.$langs->trans('Service').' : '.$this->object->ref;
167 }
168
169 if ($action == 'create' || $action == 'edit') {
170 // Status
171 $statutarray = array('1' => $langs->trans("OnSell"), '0' => $langs->trans("NotOnSell"));
172 $this->tpl['status'] = $form->selectarray('statut', $statutarray, $this->object->status);
173
174 $statutarray = array('1' => $langs->trans("ProductStatusOnBuy"), '0' => $langs->trans("ProductStatusNotOnBuy"));
175 $this->tpl['status_buy'] = $form->selectarray('statut_buy', $statutarray, $this->object->status_buy);
176
177 $this->tpl['description'] = $this->description;
178 $this->tpl['note'] = $this->note;
179
180 // Duration unit
181 // TODO creer fonction
182 $duration_unit = '<input name="duration_unit" type="radio" value="h"'.($this->object->duration_unit == 'h' ? ' checked' : '').'>'.$langs->trans("Hour");
183 $duration_unit .= '&nbsp; ';
184 $duration_unit .= '<input name="duration_unit" type="radio" value="d"'.($this->object->duration_unit == 'd' ? ' checked' : '').'>'.$langs->trans("Day");
185 $duration_unit .= '&nbsp; ';
186 $duration_unit .= '<input name="duration_unit" type="radio" value="w"'.($this->object->duration_unit == 'w' ? ' checked' : '').'>'.$langs->trans("Week");
187 $duration_unit .= '&nbsp; ';
188 $duration_unit .= '<input name="duration_unit" type="radio" value="m"'.($this->object->duration_unit == 'm' ? ' checked' : '').'>'.$langs->trans("Month");
189 $duration_unit .= '&nbsp; ';
190 $duration_unit .= '<input name="duration_unit" type="radio" value="y"'.($this->object->duration_unit == 'y' ? ' checked' : '').'>'.$langs->trans("Year");
191 $this->tpl['duration_unit'] = $duration_unit;
192 }
193
194 if ($action == 'view') {
195 // Photo
196 $this->tpl['nblines'] = 4;
197 if ($this->object->is_photo_available($conf->service->multidir_output[$this->object->entity])) {
198 $this->tpl['photos'] = $this->object->show_photos('product', $conf->service->multidir_output[$this->object->entity], 1, 1, 0, 0, 0, 80);
199 }
200
201 // Duration
202 $dur = array();
203 if ($this->object->duration_value > 1) {
204 $dur = array("h"=>$langs->trans("Hours"), "d"=>$langs->trans("Days"), "w"=>$langs->trans("Weeks"), "m"=>$langs->trans("Months"), "y"=>$langs->trans("Years"));
205 } elseif ($this->object->duration_value > 0) {
206 $dur = array("h"=>$langs->trans("Hour"), "d"=>$langs->trans("Day"), "w"=>$langs->trans("Week"), "m"=>$langs->trans("Month"), "y"=>$langs->trans("Year"));
207 }
208 $this->tpl['duration_unit'] = $langs->trans($dur[$this->object->duration_unit]);
209
210 $this->tpl['fiche_end'] = dol_get_fiche_end();
211 }
212 }
213
214
220 private function getFieldListCanvas()
221 {
222 global $conf, $langs;
223
224 $this->field_list = array();
225
226 $sql = "SELECT rowid, name, alias, title, align, sort, search, visible, enabled, rang";
227 $sql .= " FROM ".MAIN_DB_PREFIX."c_field_list";
228 $sql .= " WHERE element = '".$this->db->escape($this->fieldListName)."'";
229 $sql .= " AND entity = ".$conf->entity;
230 $sql .= " ORDER BY rang ASC";
231
232 $resql = $this->db->query($sql);
233 if ($resql) {
234 $num = $this->db->num_rows($resql);
235
236 $i = 0;
237 while ($i < $num) {
238 $fieldlist = array();
239
240 $obj = $this->db->fetch_object($resql);
241
242 $fieldlist["id"] = $obj->rowid;
243 $fieldlist["name"] = $obj->name;
244 $fieldlist["alias"] = $obj->alias;
245 $fieldlist["title"] = $langs->trans($obj->title);
246 $fieldlist["align"] = $obj->align;
247 $fieldlist["sort"] = $obj->sort;
248 $fieldlist["search"] = $obj->search;
249 $fieldlist["visible"] = $obj->visible;
250 $fieldlist["enabled"] = verifCond($obj->enabled);
251 $fieldlist["order"] = $obj->rang;
252
253 array_push($this->field_list, $fieldlist);
254
255 $i++;
256 }
257 $this->db->free($resql);
258 } else {
259 dol_print_error($this->db, $sql);
260 }
261 }
262}
Class with controller methods for product canvas.
getFieldListCanvas()
Fetch field list.
assign_values(&$action, $id=0, $ref='')
Assign custom values for canvas (for example into this->tpl to be used by templates)
__construct($db, $targetmodule, $canvas, $card)
Constructor.
Class to manage products or services.
const TYPE_SERVICE
Service.
print $script_file $mode $langs defaultlang(is_numeric($duration_value) ? " delay=". $duration_value :"").(is_numeric($duration_value2) ? " after cd cd cd description as description
Only used if Module[ID]Desc translation string is not found.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0)
Show tabs of a record.
get_htmloutput_errors($mesgstring='', $mesgarray=array(), $keepembedded=0)
Get formated error messages to output (Used to show messages on html output).
dol_print_error($db='', $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
dol_get_fiche_end($notab=0)
Return tab footer of a card.
verifCond($strToEvaluate)
Verify if condition in string is ok or not.
product_prepare_head($object)
Prepare array with list of tabs.
$conf db name
Only used if Module[ID]Name translation string is not found.
Definition repair.php:123