31 require
'../main.inc.php';
32 require_once DOL_DOCUMENT_ROOT.
'/core/lib/product.lib.php';
33 require_once DOL_DOCUMENT_ROOT.
'/product/class/product.class.php';
34 require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
35 require_once DOL_DOCUMENT_ROOT.
'/core/lib/images.lib.php';
36 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formfile.class.php';
37 if (!empty($conf->global->PRODUIT_PDF_MERGE_PROPAL))
38 require_once DOL_DOCUMENT_ROOT.
'/product/class/propalmergepdfproduct.class.php';
41 $langs->loadLangs(array(
'other',
'products'));
45 $action =
GETPOST(
'action',
'aZ09');
46 $confirm =
GETPOST(
'confirm',
'alpha');
49 $fieldvalue = (!empty($id) ? $id : (!empty($ref) ? $ref :
''));
50 $fieldtype = (!empty($ref) ?
'ref' :
'rowid');
51 if ($user->socid) $socid = $user->socid;
52 $result =
restrictedArea($user,
'produit|service', $fieldvalue,
'product&product',
'',
'', $fieldtype);
55 $hookmanager->initHooks(array(
'productdocuments'));
58 $limit =
GETPOST(
'limit',
'int') ?
GETPOST(
'limit',
'int') : $conf->liste_limit;
59 $sortfield =
GETPOST(
"sortfield",
'alpha');
60 $sortorder =
GETPOST(
"sortorder",
'alpha');
62 if (empty($page) || $page == -1) { $page = 0; }
63 $offset = $limit * $page;
64 $pageprev = $page - 1;
65 $pagenext = $page + 1;
66 if (!$sortorder) $sortorder =
"ASC";
67 if (!$sortfield) $sortfield =
"position_name";
71 if ($id > 0 || !empty($ref))
73 $result = $object->fetch($id, $ref);
75 if (!empty($conf->product->enabled)) $upload_dir = $conf->product->multidir_output[$object->entity].
'/'.
get_exdir(0, 0, 0, 1, $object,
'product');
76 elseif (!empty($conf->service->enabled)) $upload_dir = $conf->service->multidir_output[$object->entity].'/'.
get_exdir(0, 0, 0, 1, $object, 'product');
78 if (!empty($conf->global->PRODUCT_USE_OLD_PATH_FOR_PHOTO))
80 if (!empty($conf->product->enabled)) $upload_dirold = $conf->product->multidir_output[$object->entity].
'/'.substr(substr(
"000".$object->id, -2), 1, 1).
'/'.substr(substr(
"000".$object->id, -2), 0, 1).
'/'.$object->id.
"/photos";
81 else $upload_dirold = $conf->service->multidir_output[$object->entity].
'/'.substr(substr(
"000".$object->id, -2), 1, 1).
'/'.substr(substr(
"000".$object->id, -2), 0, 1).
'/'.$object->id.
"/photos";
84 $modulepart =
'produit';
93 $parameters = array(
'id'=>$id);
94 $reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action);
95 if ($reshook < 0)
setEventMessages($hookmanager->error, $hookmanager->errors,
'errors');
100 if (!empty($conf->global->PRODUIT_PDF_MERGE_PROPAL))
102 if ($action ==
'confirm_deletefile' && $confirm ==
'yes')
105 $urlfile =
GETPOST(
'urlfile',
'alpha');
106 $filename = basename($urlfile);
108 $filetomerge->fk_product = $object->id;
109 $filetomerge->file_name = $filename;
110 $result = $filetomerge->delete_by_file($user);
118 include_once DOL_DOCUMENT_ROOT.
'/core/actions_linkedfiles.inc.php';
121 if ($action ==
'filemerge')
123 $is_refresh =
GETPOST(
'refresh');
124 if (empty($is_refresh)) {
125 $filetomerge_file_array =
GETPOST(
'filetoadd');
127 $filetomerge_file_array =
GETPOST(
'filetoadd');
129 if ($conf->global->MAIN_MULTILANGS) {
130 $lang_id =
GETPOST(
'lang_id',
'aZ09');
136 if ($conf->global->MAIN_MULTILANGS) {
137 $result = $filetomerge->delete_by_product($user, $object->id, $lang_id);
139 $result = $filetomerge->delete_by_product($user, $object->id);
146 if (is_array($filetomerge_file_array)) {
147 foreach ($filetomerge_file_array as $filetomerge_file) {
148 $filetomerge->fk_product = $object->id;
149 $filetomerge->file_name = $filetomerge_file;
151 if ($conf->global->MAIN_MULTILANGS) {
152 $filetomerge->lang = $lang_id;
155 $result = $filetomerge->create($user);
169 $form =
new Form($db);
171 $title = $langs->trans(
'ProductServiceCard');
173 $shortlabel =
dol_trunc($object->label, 16);
176 $title = $langs->trans(
'Product').
" ".$shortlabel.
" - ".$langs->trans(
'Documents');
177 $helpurl =
'EN:Module_Products|FR:Module_Produits|ES:Módulo_Productos';
181 $title = $langs->trans(
'Service').
" ".$shortlabel.
" - ".$langs->trans(
'Documents');
182 $helpurl =
'EN:Module_Services_En|FR:Module_Services|ES:Módulo_Servicios';
191 $titre = $langs->trans(
"CardProduct".$object->type);
196 $parameters = array();
197 $reshook = $hookmanager->executeHooks(
'formObjectOptions', $parameters, $object, $action);
198 print $hookmanager->resPrint;
199 if ($reshook < 0)
setEventMessages($hookmanager->error, $hookmanager->errors,
'errors');
202 $filearray =
dol_dir_list($upload_dir,
"files", 0,
'',
'(\.meta|_preview.*\.png)$', $sortfield, (strtolower($sortorder) ==
'desc' ?SORT_DESC:SORT_ASC), 1);
204 if (!empty($conf->global->PRODUCT_USE_OLD_PATH_FOR_PHOTO))
206 $filearrayold =
dol_dir_list($upload_dirold,
"files", 0,
'',
'(\.meta|_preview.*\.png)$', $sortfield, (strtolower($sortorder) ==
'desc' ?SORT_DESC:SORT_ASC), 1);
207 $filearray = array_merge($filearray, $filearrayold);
211 foreach ($filearray as $key => $file)
213 $totalsize += $file[
'size'];
217 $linkback =
'<a href="'.DOL_URL_ROOT.
'/product/list.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToList").
'</a>';
218 $object->next_prev_filter =
" fk_product_type = ".$object->type;
221 if ($user->socid && !in_array(
'product', explode(
',', $conf->global->MAIN_MODULES_FOR_EXTERNAL))) $shownav = 0;
225 print '<div class="fichecenter">';
227 print '<div class="underbanner clearboth"></div>';
228 print '<table class="border tableforfield centpercent">';
230 print '<tr><td class="titlefield">'.$langs->trans(
"NbOfAttachedFiles").
'</td><td colspan="3">'.count($filearray).
'</td></tr>';
231 print '<tr><td>'.$langs->trans(
"TotalSizeOfAttachedFiles").
'</td><td colspan="3">'.
dol_print_size($totalsize, 1, 1).
'</td></tr>';
235 print '<div style="clear:both"></div>';
239 $param =
'&id='.$object->id;
240 include_once DOL_DOCUMENT_ROOT.
'/core/tpl/document_actions_post_headers.tpl.php';
244 if (!empty($conf->global->PRODUIT_PDF_MERGE_PROPAL))
248 if ($conf->global->MAIN_MULTILANGS) {
249 $lang_id =
GETPOST(
'lang_id',
'aZ09');
250 $result = $filetomerge->fetch_by_product($object->id, $lang_id);
252 $result = $filetomerge->fetch_by_product($object->id);
255 $form =
new Form($db);
258 $filearray =
dol_dir_list($upload_dir,
"files", 0,
'',
'\.meta$',
'name', SORT_ASC, 1);
260 if (!empty($conf->global->PRODUCT_USE_OLD_PATH_FOR_PHOTO))
262 $filearray = array_merge($filearray,
dol_dir_list($upload_dirold,
"files", 0,
'',
'\.meta$',
'name', SORT_ASC, 1));
266 if (count($filearray) > 0)
270 if (count($filetomerge->lines) > 0) {
271 print $langs->trans(
'PropalMergePdfProductActualFile');
274 print '<form name="filemerge" action="'.DOL_URL_ROOT.
'/product/document.php?id='.$object->id.
'" method="post">';
275 print '<input type="hidden" name="token" value="'.newToken().
'">';
276 print '<input type="hidden" name="action" value="filemerge">';
277 if (count($filetomerge->lines) == 0) {
278 print $langs->trans(
'PropalMergePdfProductChooseFile');
281 print '<table class="noborder">';
284 if ($conf->global->MAIN_MULTILANGS) {
285 $langs->load(
"languages");
287 print '<tr class="liste_titre"><td>';
289 $default_lang = empty($lang_id) ? $langs->getDefaultLang() : $lang_id;
291 $langs_available = $langs->get_available_languages(DOL_DOCUMENT_ROOT, 12);
293 print Form::selectarray(
'lang_id', $langs_available, $default_lang, 0, 0, 0,
'', 0, 0, 0,
'ASC');
295 if ($conf->global->MAIN_MULTILANGS) {
296 print '<input type="submit" class="button" name="refresh" value="'.$langs->trans(
'Refresh').
'">';
302 foreach ($filearray as $filetoadd)
304 if ($ext = pathinfo($filetoadd[
'name'], PATHINFO_EXTENSION) ==
'pdf')
307 $filename = $filetoadd[
'name'];
309 if ($conf->global->MAIN_MULTILANGS)
311 if (array_key_exists($filetoadd[
'name'].
'_'.$default_lang, $filetomerge->lines))
313 $filename = $filetoadd[
'name'].
' - '.$langs->trans(
'Language_'.$default_lang);
314 $checked =
' checked ';
317 if (array_key_exists($filetoadd[
'name'], $filetomerge->lines))
319 $checked =
' checked ';
323 print '<tr class="oddeven"><td>';
324 print '<input type="checkbox" '.$checked.
' name="filetoadd[]" id="filetoadd" value="'.$filetoadd[
'name'].
'">'.$filename.
'</input>';
330 print '<input type="submit" class="button button-save" name="save" value="'.$langs->trans(
"Save").
'">';
339 print $langs->trans(
"ErrorUnknown");
GETPOST($paramname, $check= 'alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
Put here description of your class.
Class to manage products or services.
const TYPE_SERVICE
Service.
const TYPE_PRODUCT
Regular product.
setEventMessages($mesg, $mesgs, $style= 'mesgs', $messagekey= '')
Set event messages in dol_events session object.
GETPOSTISSET($paramname)
Return true if we are in a context of submitting the parameter $paramname.
get_exdir($num, $level, $alpha, $withoutslash, $object, $modulepart= '')
Return a path to have a the directory according to object where files are stored. ...
restrictedArea($user, $features, $objectid=0, $tableandshare= '', $feature2= '', $dbt_keyfield= 'fk_soc', $dbt_select= 'rowid', $isdraft=0)
Check permissions of a user to show a page and an object.
dol_dir_list($path, $types="all", $recursive=0, $filter="", $excludefilter=null, $sortcriteria="name", $sortorder=SORT_ASC, $mode=0, $nohook=0, $relativename="", $donotfollowsymlinks=0)
Scan a directory and return a list of files/directories.
dol_get_fiche_head($links=array(), $active= '', $title= '', $notab=0, $picto= '', $pictoisfullpath=0, $morehtmlright= '', $morecss= '', $limittoshow=0, $moretabssuffix= '')
Show tabs of a record.
print
Draft customers invoices.
dol_print_size($size, $shortvalue=0, $shortunit=0)
Return string with formated size.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
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.
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.
if(!defined('CSRFCHECK_WITH_TOKEN')) define('CSRFCHECK_WITH_TOKEN'
Draft customers invoices.
product_prepare_head($object)
Prepare array with list of tabs.