148 public function __construct($db, $dirmodule, $targetmodule, $canvas, $card)
151 $this->dirmodule = $dirmodule;
152 $this->targetmodule = $targetmodule;
153 $this->canvas = $canvas;
156 $this->module =
"service";
157 $this->
name =
"service";
158 $this->definition =
"Services canvas";
159 $this->fieldListName =
"product_service";
160 $this->next_prev_filter =
"canvas='service'";
176 global $conf, $langs, $user, $mysoc, $canvas;
179 $tmpobject =
new Product($this->db);
180 if (!empty($id) || !empty($ref)) {
181 $tmpobject->fetch($id, $ref);
183 $this->
object = $tmpobject;
185 foreach ($this->
object as $key => $value) {
186 $this->tpl[$key] = $value;
192 $this->tpl[
'canvas'] = $this->canvas;
195 $this->tpl[
'id'] = $this->id;
198 $this->tpl[
'ref'] = $this->ref;
201 $this->tpl[
'label'] = $this->label;
204 $this->tpl[
'description'] = nl2br($this->
description);
207 $this->tpl[
'status'] = $this->
object->getLibStatut(2);
210 $this->tpl[
'note'] = nl2br($this->note);
212 if ($action ==
'create') {
214 $this->tpl[
'price'] = $this->price;
215 $this->tpl[
'price_min'] = $this->price_min;
216 $this->tpl[
'price_base_type'] = $form->selectPriceBaseType($this->price_base_type,
"price_base_type");
219 $this->tpl[
'tva_tx'] = $form->load_tva(
"tva_tx", -1, $mysoc,
null);
222 if ($action ==
'view') {
225 $this->tpl[
'showrefnav'] = $form->showrefnav($this->
object,
'ref',
'', 1,
'ref');
227 $titre = $langs->trans(
"CardProduct".$this->object->type);
233 $this->tpl[
'accountancyBuyCodeKey'] = $form->editfieldkey(
"ProductAccountancyBuyCode",
'productaccountancycodesell', $this->accountancy_code_sell, $this, $user->rights->produit->creer);
234 $this->tpl[
'accountancyBuyCodeVal'] = $form->editfieldval(
"ProductAccountancyBuyCode",
'productaccountancycodesell', $this->accountancy_code_sell, $this, $user->rights->produit->creer);
237 $this->tpl[
'accountancySellCodeKey'] = $form->editfieldkey(
"ProductAccountancySellCode",
'productaccountancycodebuy', $this->accountancy_code_buy, $this, $user->rights->produit->creer);
238 $this->tpl[
'accountancySellCodeVal'] = $form->editfieldval(
"ProductAccountancySellCode",
'productaccountancycodebuy', $this->accountancy_code_buy, $this, $user->rights->produit->creer);
241 $this->tpl[
'finished'] = $this->
object->finished;
242 $this->tpl[
'ref'] = $this->
object->ref;
243 $this->tpl[
'label'] = $this->
object->label;
244 $this->tpl[
'id'] = $this->
object->id;
245 $this->tpl[
'type'] = $this->
object->type;
246 $this->tpl[
'note'] = $this->
object->note_private;
247 $this->tpl[
'seuil_stock_alerte'] = $this->
object->seuil_stock_alerte;
250 $this->tpl[
'duration_value'] = $this->
object->duration_value;
252 if ($action ==
'create') {
254 $this->tpl[
'title'] = $langs->trans(
"NewService");
257 if ($action ==
'edit') {
258 $this->tpl[
'title'] = $langs->trans(
'Modify').
' '.$langs->trans(
'Service').
' : '.$this->
object->ref;
261 if ($action ==
'create' || $action ==
'edit') {
263 $statutarray = array(
'1' => $langs->trans(
"OnSell"),
'0' => $langs->trans(
"NotOnSell"));
264 $this->tpl[
'status'] = $form->selectarray(
'statut', $statutarray, $this->object->status);
266 $statutarray = array(
'1' => $langs->trans(
"ProductStatusOnBuy"),
'0' => $langs->trans(
"ProductStatusNotOnBuy"));
267 $this->tpl[
'status_buy'] = $form->selectarray(
'statut_buy', $statutarray, $this->object->status_buy);
269 $this->tpl[
'description'] = $this->description;
270 $this->tpl[
'note'] = $this->note;
274 $duration_unit =
'<input name="duration_unit" type="radio" value="h"'.($this->object->duration_unit ==
'h' ?
' checked' :
'').
'>'.$langs->trans(
"Hour");
275 $duration_unit .=
' ';
276 $duration_unit .=
'<input name="duration_unit" type="radio" value="d"'.($this->object->duration_unit ==
'd' ?
' checked' :
'').
'>'.$langs->trans(
"Day");
277 $duration_unit .=
' ';
278 $duration_unit .=
'<input name="duration_unit" type="radio" value="w"'.($this->object->duration_unit ==
'w' ?
' checked' :
'').
'>'.$langs->trans(
"Week");
279 $duration_unit .=
' ';
280 $duration_unit .=
'<input name="duration_unit" type="radio" value="m"'.($this->object->duration_unit ==
'm' ?
' checked' :
'').
'>'.$langs->trans(
"Month");
281 $duration_unit .=
' ';
282 $duration_unit .=
'<input name="duration_unit" type="radio" value="y"'.($this->object->duration_unit ==
'y' ?
' checked' :
'').
'>'.$langs->trans(
"Year");
283 $this->tpl[
'duration_unit'] = $duration_unit;
286 if ($action ==
'view') {
288 $this->tpl[
'nblines'] = 4;
289 if ($this->object->is_photo_available($conf->service->multidir_output[$this->object->entity])) {
290 $this->tpl[
'photos'] = $this->
object->show_photos(
'product', $conf->service->multidir_output[$this->object->entity], 1, 1, 0, 0, 0, 80);
295 if ($this->object->duration_value > 1) {
296 $dur = array(
"h" => $langs->trans(
"Hours"),
"d" => $langs->trans(
"Days"),
"w" => $langs->trans(
"Weeks"),
"m" => $langs->trans(
"Months"),
"y" => $langs->trans(
"Years"));
297 } elseif ($this->object->duration_value > 0) {
298 $dur = array(
"h" => $langs->trans(
"Hour"),
"d" => $langs->trans(
"Day"),
"w" => $langs->trans(
"Week"),
"m" => $langs->trans(
"Month"),
"y" => $langs->trans(
"Year"));
300 $this->tpl[
'duration_unit'] = $langs->trans($dur[$this->object->duration_unit]);
314 global $conf, $langs;
316 $this->field_list = array();
318 $sql =
"SELECT rowid, name, alias, title, align, sort, search, visible, enabled, rang";
319 $sql .=
" FROM ".MAIN_DB_PREFIX.
"c_field_list";
320 $sql .=
" WHERE element = '".$this->db->escape($this->fieldListName).
"'";
321 $sql .=
" AND entity = ".$conf->entity;
322 $sql .=
" ORDER BY rang ASC";
324 $resql = $this->db->query($sql);
326 $num = $this->db->num_rows($resql);
330 $fieldlist = array();
332 $obj = $this->db->fetch_object($resql);
334 $fieldlist[
"id"] = $obj->rowid;
335 $fieldlist[
"name"] = $obj->name;
336 $fieldlist[
"alias"] = $obj->alias;
337 $fieldlist[
"title"] = $langs->trans($obj->title);
338 $fieldlist[
"align"] = $obj->align;
339 $fieldlist[
"sort"] = $obj->sort;
340 $fieldlist[
"search"] = $obj->search;
341 $fieldlist[
"visible"] = $obj->visible;
342 $fieldlist[
"enabled"] =
verifCond($obj->enabled);
343 $fieldlist[
"order"] = $obj->rang;
345 array_push($this->field_list, $fieldlist);
349 $this->db->free($resql);