31 require
'../../main.inc.php';
32 require_once DOL_DOCUMENT_ROOT.
'/product/class/html.formproduct.class.php';
33 require_once DOL_DOCUMENT_ROOT.
'/core/lib/product.lib.php';
34 require_once DOL_DOCUMENT_ROOT.
'/product/class/product.class.php';
35 require_once DOL_DOCUMENT_ROOT.
'/categories/class/categorie.class.php';
38 $langs->loadLangs(array(
'bills',
'products',
'stocks'));
42 $action =
GETPOST(
'action',
'aZ09');
43 $confirm =
GETPOST(
'confirm',
'alpha');
44 $cancel =
GETPOST(
'cancel',
'alpha');
49 if (!empty($user->socid)) {
50 $socid = $user->socid;
52 $fieldvalue = (!empty($id) ? $id : (!empty($ref) ? $ref :
''));
53 $fieldtype = (!empty($ref) ?
'ref' :
'rowid');
56 $hookmanager->initHooks(array(
'productcompositioncard',
'globalcard'));
60 if ($id > 0 || !empty($ref)) {
61 $result = $object->fetch($id, $ref);
62 $objectid = $object->id;
66 $result =
restrictedArea($user,
'produit|service', $fieldvalue,
'product&product',
'',
'', $fieldtype);
68 if ($object->id > 0) {
69 if ($object->type == $object::TYPE_PRODUCT) {
70 restrictedArea($user,
'produit', $object->id,
'product&product',
'',
'');
72 if ($object->type == $object::TYPE_SERVICE) {
73 restrictedArea($user,
'service', $object->id,
'product&product',
'',
'');
76 restrictedArea($user,
'produit|service', $fieldvalue,
'product&product',
'',
'', $fieldtype);
92 if ($action ==
'add_prod' && ($user->rights->produit->creer || $user->rights->service->creer)) {
94 $maxprod =
GETPOST(
"max_prod",
'int');
96 for ($i = 0; $i < $maxprod; $i++) {
99 if ($object->add_sousproduit($id,
GETPOST(
"prod_id_".$i,
'int'), $qty,
GETPOST(
"prod_incdec_".$i,
'int')) > 0) {
105 if ($object->error ==
"isFatherOfThis") {
106 setEventMessages($langs->trans(
"ErrorAssociationIsFatherOfThis"),
null,
'errors');
112 if ($object->del_sousproduit($id,
GETPOST(
"prod_id_".$i,
'int')) > 0) {
123 header(
"Location: ".$_SERVER[
"PHP_SELF"].
'?id='.$object->id);
126 } elseif ($action ===
'save_composed_product') {
127 $TProduct =
GETPOST(
'TProduct',
'array');
128 if (!empty($TProduct)) {
129 foreach ($TProduct as $id_product => $row) {
130 if ($row[
'qty'] > 0) {
131 $object->update_sousproduit($id, $id_product, $row[
'qty'], isset($row[
'incdec']) ? 1 : 0);
133 $object->del_sousproduit($id, $id_product);
139 header(
"Location: ".$_SERVER[
"PHP_SELF"].
'?id='.$object->id);
151 $productstatic =
new Product($db);
154 if ($action ==
'search') {
155 $current_lang = $langs->getDefaultLang();
157 $sql =
'SELECT DISTINCT p.rowid, p.ref, p.label, p.fk_product_type as type, p.barcode, p.price, p.price_ttc, p.price_base_type, p.entity,';
158 $sql .=
' p.fk_product_type, p.tms as datem, p.tobatch';
159 $sql .=
', p.tosell as status, p.tobuy as status_buy';
161 $sql .=
', pl.label as labelm, pl.description as descriptionm';
163 $sql .=
' FROM '.MAIN_DB_PREFIX.
'product as p';
164 $sql .=
' LEFT JOIN '.MAIN_DB_PREFIX.
'categorie_product as cp ON p.rowid = cp.fk_product';
166 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"product_lang as pl ON pl.fk_product = p.rowid AND lang='".($current_lang).
"'";
168 $sql .=
' WHERE p.entity IN ('.getEntity(
'product').
')';
171 $params = array(
'p.ref',
'p.label',
'p.description',
'p.note');
174 $params[] =
'pl.label';
175 $params[] =
'pl.description';
176 $params[] =
'pl.note';
179 $params[] =
'p.barcode';
183 if (
isModEnabled(
'categorie') && !empty($parent) && $parent != -1) {
184 $sql .=
" AND cp.fk_categorie ='".$db->escape($parent).
"'";
186 $sql .=
" ORDER BY p.ref ASC";
188 $resql = $db->query($sql);
191 $title = $langs->trans(
'ProductServiceCard');
193 $shortlabel =
dol_trunc($object->label, 16);
195 $title = $langs->trans(
'Product').
" ".$shortlabel.
" - ".$langs->trans(
'AssociatedProducts');
196 $help_url =
'EN:Module_Products|FR:Module_Produits|ES:Módulo_Productos|DE:Modul_Produkte';
199 $title = $langs->trans(
'Service').
" ".$shortlabel.
" - ".$langs->trans(
'AssociatedProducts');
200 $help_url =
'EN:Module_Services_En|FR:Module_Services|ES:Módulo_Servicios|DE:Modul_Leistungen';
207 $titre = $langs->trans(
"CardProduct".$object->type);
213 if ($id > 0 || !empty($ref)) {
217 if ($user->rights->produit->lire || $user->rights->service->lire) {
218 $linkback =
'<a href="'.DOL_URL_ROOT.
'/product/list.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToList").
'</a>';
221 if ($user->socid && !in_array(
'product', explode(
',', $conf->global->MAIN_MODULES_FOR_EXTERNAL))) {
227 if ($object->type !=
Product::TYPE_SERVICE || !empty($conf->global->STOCK_SUPPORTS_SERVICES) || empty($conf->global->PRODUIT_MULTIPRICES)) {
228 print
'<div class="fichecenter">';
229 print
'<div class="fichehalfleft">';
230 print
'<div class="underbanner clearboth"></div>';
232 print
'<table class="border centpercent tableforfield">';
236 $typeformat =
'select;0:'.$langs->trans(
"Product").
',1:'.$langs->trans(
"Service");
237 print
'<tr><td class="titlefield">';
238 print (empty($conf->global->PRODUCT_DENY_CHANGE_PRODUCT_TYPE)) ?
$form->editfieldkey(
"Type",
'fk_product_type', $object->type, $object, $usercancreate, $typeformat) : $langs->trans(
'Type');
240 print
$form->editfieldval(
"Type",
'fk_product_type', $object->type, $object, $usercancreate, $typeformat);
246 print
'</div><div class="fichehalfright">';
247 print
'<div class="underbanner clearboth"></div>';
249 print
'<table class="border centpercent tableforfield">';
253 if (empty($conf->global->PRODUCT_DISABLE_NATURE)) {
254 print
'<tr><td>'.$form->textwithpicto($langs->trans(
"NatureOfProductShort"), $langs->trans(
"NatureOfProductDesc")).
'</td><td>';
255 print $object->getLibFinished();
261 if (empty($conf->global->PRODUIT_MULTIPRICES)) {
263 print
'<tr><td class="titlefield">'.$langs->trans(
"SellingPrice").
'</td><td>';
264 if ($object->price_base_type ==
'TTC') {
265 print
price($object->price_ttc).
' '.$langs->trans($object->price_base_type);
267 print
price($object->price).
' '.$langs->trans($object->price_base_type ? $object->price_base_type :
'HT');
272 print
'<tr><td>'.$langs->trans(
"MinPrice").
'</td><td>';
273 if ($object->price_base_type ==
'TTC') {
274 print
price($object->price_min_ttc).
' '.$langs->trans($object->price_base_type);
276 print
price($object->price_min).
' '.$langs->trans($object->price_base_type ? $object->price_base_type :
'HT');
291 $prodsfather = $object->getFather();
292 $object->get_sousproduits_arbo();
293 $parent_label = $object->label;
294 $prods_arbo = $object->get_arbo_each_prod();
297 if (!empty($conf->use_javascript_ajax)) {
298 $nboflines = $prods_arbo;
299 $table_element_line=
'product_association';
301 include DOL_DOCUMENT_ROOT .
'/core/tpl/ajaxrow.tpl.php';
305 $nbofsubsubproducts = count($prods_arbo);
306 $prodschild = $object->getChildsArbo($id, 1);
307 $nbofsubproducts = count($prodschild);
310 print
'<div class="fichecenter">';
314 print
'<table class="liste">';
315 print
'<tr class="liste_titre">';
316 print
'<td>'.$langs->trans(
'ParentProducts').
'</td>';
317 print
'<td>'.$langs->trans(
'Label').
'</td>';
318 print
'<td>'.$langs->trans(
'Qty').
'</td>';
320 if (count($prodsfather) > 0) {
321 foreach ($prodsfather as $value) {
322 $idprod = $value[
"id"];
323 $productstatic->id = $idprod;
324 $productstatic->type = $value[
"fk_product_type"];
325 $productstatic->ref = $value[
'ref'];
326 $productstatic->label = $value[
'label'];
327 $productstatic->entity = $value[
'entity'];
328 $productstatic->status = $value[
'status'];
329 $productstatic->status_buy = $value[
'status_buy'];
331 print
'<tr class="oddeven">';
332 print
'<td>'.$productstatic->getNomUrl(1,
'composition').
'</td>';
333 print
'<td>'.dol_escape_htmltag($productstatic->label).
'</td>';
334 print
'<td>'.dol_escape_htmltag($value[
'qty']).
'</td>';
338 print
'<tr class="oddeven">';
339 print
'<td colspan="3"><span class="opacitymedium">'.$langs->trans(
"None").
'</span></td>';
348 print
'<div class="fichecenter">';
350 $atleastonenotdefined = 0;
353 print
'<form name="formComposedProduct" action="'.$_SERVER[
'PHP_SELF'].
'" method="post">';
354 print
'<input type="hidden" name="token" value="'.newToken().
'" />';
355 print
'<input type="hidden" name="action" value="save_composed_product" />';
356 print
'<input type="hidden" name="id" value="'.$id.
'" />';
358 print
'<table id="tablelines" class="ui-sortable liste nobottom">';
360 print
'<tr class="liste_titre nodrag nodrop">';
362 print
'<td>'.$langs->trans(
'Position').
'</td>';
364 print
'<td>'.$langs->trans(
'ComposedProduct').
'</td>';
366 print
'<td>'.$langs->trans(
'Label').
'</td>';
368 print
'<td class="right" colspan="2">'.$langs->trans(
'MinSupplierPrice').
'</td>';
370 print
'<td class="right" colspan="2">'.$langs->trans(
'MinCustomerPrice').
'</td>';
373 print
'<td class="right">'.$langs->trans(
'Stock').
'</td>';
376 print
'<td class="center">'.$langs->trans(
'Qty').
'</td>';
378 print
'<td class="center">'.$langs->trans(
'ComposedProductIncDecStock').
'</td>';
380 print
'<td class="linecolmove" style="width: 10px"></td>';
385 if (count($prods_arbo)) {
386 foreach ($prods_arbo as $value) {
387 $productstatic->fetch($value[
'id']);
389 if ($value[
'level'] <= 1) {
390 print
'<tr id="'.$object->sousprods[$parent_label][$value[
'id']][6].
'" class="drag drop oddeven level1">';
393 print
'<td>'.$object->sousprods[$parent_label][$value[
'id']][7].
'</td>';
396 $nb_of_subproduct = $value[
'nb'];
399 print
'<td>'.$productstatic->getNomUrl(1,
'composition').
'</td>';
402 print
'<td>'.$productstatic->label.
'</td>';
405 print
'<td class="right">';
406 if ($product_fourn->find_min_price_product_fournisseur($productstatic->id) > 0) {
407 print $langs->trans(
"BuyingPriceMinShort").
': ';
408 if ($product_fourn->product_fourn_price_id > 0) {
409 print $product_fourn->display_price_product_fournisseur(0, 0);
411 print $langs->trans(
"NotDefined"); $notdefined++; $atleastonenotdefined++;
417 $fourn_unitprice = (!empty($product_fourn->fourn_unitprice) ? $product_fourn->fourn_unitprice : 0);
418 $fourn_remise_percent = (!empty($product_fourn->fourn_remise_percent) ? $product_fourn->fourn_remise_percent : 0);
419 $fourn_remise = (!empty($product_fourn->fourn_remise) ? $product_fourn->fourn_remise : 0);
421 $unitline =
price2num(($fourn_unitprice * (1 - ($fourn_remise_percent / 100)) - $fourn_remise),
'MU');
422 $totalline =
price2num($value[
'nb'] * ($fourn_unitprice * (1 - ($fourn_remise_percent / 100)) - $fourn_remise),
'MT');
423 $total += $totalline;
425 print
'<td class="right nowraponall">';
426 print ($notdefined ?
'' : ($value[
'nb'] > 1 ? $value[
'nb'].
'x ' :
'').
'<span class="amount">'.
price($unitline,
'',
'', 0, 0, -1, $conf->currency)).
'</span>';
430 $pricesell = $productstatic->price;
431 if (!empty($conf->global->PRODUIT_MULTIPRICES)) {
432 $pricesell =
'Variable';
434 $totallinesell =
price2num($value[
'nb'] * ($pricesell),
'MT');
435 $totalsell += $totallinesell;
437 print
'<td class="right" colspan="2">';
438 print ($notdefined ?
'' : ($value[
'nb'] > 1 ? $value[
'nb'].
'x ' :
''));
439 if (is_numeric($pricesell)) {
440 print
'<span class="amount">'.price($pricesell,
'',
'', 0, 0, -1, $conf->currency).
'</span>';
442 print
'<span class="opacitymedium">'.$langs->trans($pricesell).
'</span>';
448 print
'<td class="right">'.$value[
'stock'].
'</td>';
452 if ($user->rights->produit->creer || $user->rights->service->creer) {
453 print
'<td class="center"><input type="text" value="'.$nb_of_subproduct.
'" name="TProduct['.$productstatic->id.
'][qty]" size="4" class="right" /></td>';
454 print
'<td class="center"><input type="checkbox" name="TProduct['.$productstatic->id.
'][incdec]" value="1" '.($value[
'incdec'] == 1 ?
'checked' :
'').
' /></td>';
456 print
'<td>'.$nb_of_subproduct.
'</td>';
457 print
'<td>'.($value[
'incdec'] == 1 ?
'x' :
'').
'</td>';
461 print
'<td class="linecolmove tdlineupdown center"></td>';
466 if (empty($conf->global->PRODUCT_SHOW_SUB_SUB_PRODUCTS)) {
467 $hide =
' hideobject';
470 print
'<tr class="oddeven'.$hide.
'" id="sub-'.$value[
'id_parent'].
'" data-ignoreidfordnd=1>';
473 $productstatic->ref = $value[
'ref'];
480 for ($i = 0; $i < $value[
'level']; $i++) {
481 print
' ';
483 print $productstatic->getNomUrl(1,
'composition').
'</td>';
486 print
'<td>'.$productstatic->label.
'</td>';
489 print
'<td> </td>';
490 print
'<td> </td>';
492 print
'<td> </td>';
493 print
'<td> </td>';
501 print
'<td class="center">'.$value[
'nb'].
'</td>';
504 print
'<td> </td>';
507 print
'<td> </td>';
516 print
'<tr class="liste_total">';
522 print
'<td class="liste_total"></td>';
525 print
'<td class="liste_total"></td>';
528 print
'<td class="liste_total right">';
529 print $langs->trans(
"TotalBuyingPriceMinShort");
532 print
'<td class="liste_total right">';
533 if ($atleastonenotdefined) {
534 print $langs->trans(
"Unknown").
' ('.$langs->trans(
"SomeSubProductHaveNoPrices").
')';
536 print ($atleastonenotdefined ?
'' :
price($total,
'',
'', 0, 0, -1, $conf->currency));
540 print
'<td class="liste_total right">';
541 print $langs->trans(
"TotalSellingPriceMinShort");
544 print
'<td class="liste_total right">';
545 if ($atleastonenotdefined) {
546 print $langs->trans(
"Unknown").
' ('.$langs->trans(
"SomeSubProductHaveNoPrices").
')';
548 print ($atleastonenotdefined ?
'' :
price($totalsell,
'',
'', 0, 0, -1, $conf->currency));
553 print
'<td class="liste_total right"> </td>';
558 print
'<td class="center">';
559 if ($user->rights->produit->creer || $user->rights->service->creer) {
560 print
'<input type="submit" class="button button-save" value="'.$langs->trans(
"Save").
'">';
573 print
'<tr class="oddeven">';
574 print
'<td colspan="'.$colspan.
'"><span class="opacitymedium">'.$langs->trans(
"None").
'</span></td>';
590 if ((empty($action) || $action ==
'view' || $action ==
'edit' || $action ==
'search' || $action ==
're-edit') && ($user->rights->produit->creer || $user->rights->service->creer)) {
599 print
'<form action="'.DOL_URL_ROOT.
'/product/composition/card.php?id='.$id.
'" method="POST">';
600 print
'<input type="hidden" name="action" value="search">';
601 print
'<input type="hidden" name="id" value="'.$id.
'">';
602 print
'<div class="inline-block">';
603 print
'<input type="hidden" name="token" value="'.newToken().
'">';
604 print $langs->trans(
"KeywordFilter").
': ';
605 print
'<input type="text" name="key" value="'.$key.
'"> ';
608 require_once DOL_DOCUMENT_ROOT.
'/categories/class/categorie.class.php';
609 print
'<div class="inline-block">'.$langs->trans(
"CategoryFilter").
': ';
610 print
$form->select_all_categories(Categorie::TYPE_PRODUCT, $parent,
'parent').
' </div>';
613 print
'<div class="inline-block">';
614 print
'<input type="submit" class="button" value="'.$langs->trans(
"Search").
'">';
621 if ($action ==
'search') {
623 print
'<form action="'.DOL_URL_ROOT.
'/product/composition/card.php?id='.$id.
'" method="post">';
624 print
'<input type="hidden" name="token" value="'.newToken().
'">';
625 print
'<input type="hidden" name="action" value="add_prod">';
626 print
'<input type="hidden" name="id" value="'.$id.
'">';
628 print
'<table class="noborder centpercent">';
629 print
'<tr class="liste_titre">';
630 print
'<th class="liste_titre">'.$langs->trans(
"ComposedProduct").
'</td>';
631 print
'<th class="liste_titre">'.$langs->trans(
"Label").
'</td>';
633 print
'<th class="liste_titre right">'.$langs->trans(
"Qty").
'</td>';
634 print
'<th class="center">'.$langs->trans(
'ComposedProductIncDecStock').
'</th>';
637 $num = $db->num_rows(
$resql);
641 print
'<tr><td colspan="4">'.$langs->trans(
"NoMatchFound").
'</td></tr>';
646 while ($i < min($num, $MAX)) {
647 $objp = $db->fetch_object(
$resql);
648 if ($objp->rowid != $id) {
651 $prod_arbo->id = $objp->rowid;
655 $prod_arbo->get_sousproduits_arbo();
657 $prods_arbo = $prod_arbo->get_arbo_each_prod();
658 if (count($prods_arbo) > 0) {
659 foreach ($prods_arbo as $key => $value) {
660 if ($value[1] == $id) {
672 print
'<tr class="oddeven">';
674 $productstatic->id = $objp->rowid;
675 $productstatic->ref = $objp->ref;
676 $productstatic->label = $objp->label;
677 $productstatic->type = $objp->type;
678 $productstatic->entity = $objp->entity;
679 $productstatic->status = $objp->status;
680 $productstatic->status_buy = $objp->status_buy;
681 $productstatic->status_batch = $objp->tobatch;
683 print
'<td>'.$productstatic->getNomUrl(1,
'', 24).
'</td>';
684 $labeltoshow = $objp->label;
686 $labeltoshow = $objp->labelm;
689 print
'<td>'.$labeltoshow.
'</td>';
692 if ($object->is_sousproduit($id, $objp->rowid)) {
694 $qty = $object->is_sousproduit_qty;
695 $incdec = $object->is_sousproduit_incdec;
705 print
'<td class="right"><input type="hidden" name="prod_id_'.$i.
'" value="'.$objp->rowid.
'"><input type="text" size="2" name="prod_qty_'.$i.
'" value="'.($qty ? $qty :
'').
'"></td>';
708 print
'<td class="center">';
710 print
'<input type="checkbox" name="prod_incdec_'.$i.
'" value="1" '.($incdec ?
'checked' :
'').
'>';
713 print
'<input type="checkbox" name="prod_incdec_'.$i.
'" value="1" checked>';
723 print
'<tr class="oddeven">';
724 print
'<td><span class="opacitymedium">'.$langs->trans(
"More").
'...</span></td>';
734 print
'<input type="hidden" name="max_prod" value="'.$i.
'">';
737 print
'<div class="center">';
738 print
'<input type="submit" class="button button-save" name="save" value="'.$langs->trans(
"Add").
'/'.$langs->trans(
"Update").
'">';
739 print
'<input type="submit" class="button button-cancel" name="cancel" value="'.$langs->trans(
"Cancel").
'">';
if(GETPOST('button_removefilter_x', 'alpha')||GETPOST('button_removefilter.x', 'alpha')||GETPOST('button_removefilter', 'alpha')) if(GETPOST('button_search_x', 'alpha')||GETPOST('button_search.x', 'alpha')||GETPOST('button_search', 'alpha')) if($action=="save" &&empty($cancel)) $help_url
View.
ajax_combobox($htmlname, $events=array(), $minLengthToAutocomplete=0, $forcefocus=0, $widthTypeOfAutocomplete='resolve', $idforemptyvalue='-1', $morecss='')
Convert a html select field into an ajax combobox.
if(!defined('NOREQUIRESOC')) if(!defined('NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined('NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined('NOREQUIREAJAX')) llxHeader()
Empty header.
Class to manage predefined suppliers products.
Class to manage products or services.
const TYPE_PRODUCT
Regular product.
const TYPE_STOCKKIT
Advanced feature: stock kit.
const TYPE_SERVICE
Service.
const TYPE_ASSEMBLYKIT
Advanced feature: assembly kit.
if(isModEnabled('facture') &&!empty($user->rights->facture->lire)) if((isModEnabled('fournisseur') &&empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD) && $user->hasRight("fournisseur", "facture", "lire"))||(isModEnabled('supplier_invoice') && $user->hasRight("supplier_invoice", "lire"))) if(isModEnabled('don') &&!empty($user->rights->don->lire)) if(isModEnabled('tax') &&!empty($user->rights->tax->charges->lire)) if(isModEnabled('facture') &&isModEnabled('commande') && $user->hasRight("commande", "lire") &&empty($conf->global->WORKFLOW_DISABLE_CREATE_INVOICE_FROM_ORDER)) $resql
Social contributions to pay.
if($cancel &&! $id) if($action=='add' &&! $cancel) if($action=='delete') if($id) $form
Actions.
dol_banner_tab($object, $paramid, $morehtml='', $shownav=1, $fieldid='rowid', $fieldref='ref', $morehtmlref='', $moreparam='', $nodbprefix=0, $morehtmlleft='', $morehtmlstatus='', $onlybanner=0, $morehtmlright='')
Show tab footer of a card.
load_fiche_titre($titre, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='')
Show tabs of a record.
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
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.
natural_search($fields, $value, $mode=0, $nofirstand=0)
Generate natural SQL search string for a criteria (this criteria can be tested on one or several fiel...
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='')
Set event messages in dol_events session object.
price($amount, $form=0, $outlangs='', $trunc=1, $rounding=-1, $forcerounding=-1, $currency_code='')
Function to format a value into an amount for visual output Function used into PDF and HTML pages.
getDolGlobalInt($key, $default=0)
Return dolibarr global constant int value.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_trunc($string, $size=40, $trunc='right', $stringencoding='UTF-8', $nodot=0, $display=0)
Truncate a string to a particular length adding '…' if string larger than length.
isModEnabled($module)
Is Dolibarr module enabled.
product_prepare_head($object)
Prepare array with list of tabs.
restrictedArea(User $user, $features, $object=0, $tableandshare='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid', $isdraft=0, $mode=0)
Check permissions of a user to show a page and an object.