30require
'../main.inc.php';
31require_once DOL_DOCUMENT_ROOT.
'/core/lib/product.lib.php';
32require_once DOL_DOCUMENT_ROOT.
'/product/class/product.class.php';
35$langs->load(
"companies");
39$action =
GETPOST(
'action',
'aZ09');
42$fieldvalue = (!empty($id) ? $id : (!empty($ref) ? $ref :
''));
43$fieldtype = (!empty($ref) ?
'ref' :
'rowid');
45 $socid = $user->socid;
49if ($id > 0 || !empty($ref)) {
50 $object->fetch($id, $ref);
53$permissionnote = ($user->hasRight(
'produit',
'creer') || $user->hasRight(
'service',
'creer'));
56 if ($object->type == $object::TYPE_PRODUCT) {
57 restrictedArea($user,
'product', $object->id,
'product&product',
'',
'');
59 if ($object->type == $object::TYPE_SERVICE) {
60 restrictedArea($user,
'service', $object->id,
'product&product',
'',
'');
63 restrictedArea($user,
'product|service', $fieldvalue,
'product&product',
'',
'', $fieldtype);
67$hookmanager->initHooks(array(
'productnote'));
75$reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action);
80 include DOL_DOCUMENT_ROOT.
'/core/actions_setnotes.inc.php';
92 $help_url =
'EN:Module_Products|FR:Module_Produits|ES:Módulo_Productos|DE:Modul_Produkte';
95 $help_url =
'EN:Module_Services_En|FR:Module_Services|ES:Módulo_Servicios|DE:Modul_Leistungen';
98$title = $langs->trans(
'ProductServiceCard');
99$shortlabel =
dol_trunc($object->label, 16);
101 $title = $langs->trans(
'Product').
" ".$shortlabel.
" - ".$langs->trans(
'Notes');
102 $help_url =
'EN:Module_Products|FR:Module_Produits|ES:Módulo_Productos|DE:Modul_Produkte';
105 $title = $langs->trans(
'Service').
" ".$shortlabel.
" - ".$langs->trans(
'Notes');
106 $help_url =
'EN:Module_Services_En|FR:Module_Services|ES:Módulo_Servicios|DE:Modul_Leistungen';
111if ($id > 0 || !empty($ref)) {
115 if (isModEnabled(
'notification')) {
116 $langs->load(
"mails");
120 $titre = $langs->trans(
"CardProduct".$object->type);
125 $linkback =
'<a href="'.DOL_URL_ROOT.
'/product/list.php?restore_lastsearch_values=1&type='.$object->type.
'">'.$langs->trans(
"BackToList").
'</a>';
126 $object->next_prev_filter =
"fk_product_type = ".((int) $object->type);
129 if ($user->socid && !in_array(
'product', explode(
',', $conf->global->MAIN_MODULES_FOR_EXTERNAL))) {
135 $cssclass =
'titlefield';
141 print
'<div class="underbanner clearboth"></div>';
143 include DOL_DOCUMENT_ROOT.
'/core/tpl/notes.tpl.php';
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
Class to manage products or services.
const TYPE_PRODUCT
Regular product.
const TYPE_SERVICE
Service.
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.
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.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0)
Set event messages in dol_events session object.
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.
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.