dolibarr  16.0.5
document.php
1 <?php
2 /* Copyright (C) 2003-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3  * Copyright (C) 2004-2009 Laurent Destailleur <eldy@users.sourceforge.net>
4  * Copyright (C) 2005 Marc Barilley / Ocebo <marc@ocebo.com>
5  * Copyright (C) 2005-2012 Regis Houssin <regis.houssin@inodbox.com>
6  * Copyright (C) 2013 Cédric Salvador <csalvador@gpcsolutions.fr>
7  * Copyright (C) 2017 Ferran Marcet <fmarcet@2byte.es>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program. If not, see <https://www.gnu.org/licenses/>.
21  */
22 
29 require '../main.inc.php';
30 require_once DOL_DOCUMENT_ROOT.'/supplier_proposal/class/supplier_proposal.class.php';
31 require_once DOL_DOCUMENT_ROOT.'/core/lib/supplier_proposal.lib.php';
32 require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
33 require_once DOL_DOCUMENT_ROOT.'/core/lib/images.lib.php';
34 require_once DOL_DOCUMENT_ROOT.'/core/class/html.formfile.class.php';
35 if (!empty($conf->project->enabled)) {
36  require_once DOL_DOCUMENT_ROOT.'/projet/class/project.class.php';
37 }
38 // Load translation files required by the page
39 $langs->loadLangs(array('compta', 'supplier_proposal', 'other'));
40 
41 $action = GETPOST('action', 'alpha');
42 $confirm = GETPOST('confirm', 'alpha');
43 $id = GETPOST('id', 'int');
44 $ref = GETPOST('ref', 'alpha');
45 
46 // Security check
47 $socid = '';
48 if (!empty($user->socid)) {
49  $socid = $user->socid;
50 }
51 $result = restrictedArea($user, 'supplier_proposal', $id);
52 
53 // Get parameters
54 $limit = GETPOST('limit', 'int') ? GETPOST('limit', 'int') : $conf->liste_limit;
55 $sortfield = GETPOST('sortfield', 'aZ09comma');
56 $sortorder = GETPOST('sortorder', 'aZ09comma');
57 $page = GETPOSTISSET('pageplusone') ? (GETPOST('pageplusone') - 1) : GETPOST("page", 'int');
58 if (empty($page) || $page == -1) {
59  $page = 0;
60 } // If $page is not defined, or '' or -1
61 $offset = $limit * $page;
62 $pageprev = $page - 1;
63 $pagenext = $page + 1;
64 if (!$sortorder) {
65  $sortorder = "ASC";
66 }
67 if (!$sortfield) {
68  $sortfield = "name";
69 }
70 
71 $object = new SupplierProposal($db);
72 $object->fetch($id, $ref);
73 if ($object->id > 0) {
74  $object->fetch_thirdparty();
75  $upload_dir = $conf->supplier_proposal->dir_output.'/'.dol_sanitizeFileName($object->ref);
76 }
77 
78 $permissiontoadd = $user->rights->supplier_proposal->creer;
79 
80 /*
81  * Actions
82  */
83 
84 if ($object->id > 0) {
85  include DOL_DOCUMENT_ROOT.'/core/actions_linkedfiles.inc.php';
86 }
87 
88 
89 /*
90  * View
91  */
92 
93 $title = $langs->trans('CommRequest')." - ".$langs->trans('Documents');
94 $help_url = 'EN:Ask_Price_Supplier|FR:Demande_de_prix_fournisseur';
95 llxHeader('', $title, $help_url);
96 
97 $form = new Form($db);
98 
99 if ($object->id > 0) {
100  $upload_dir = $conf->supplier_proposal->dir_output.'/'.dol_sanitizeFileName($object->ref);
101 
102  $head = supplier_proposal_prepare_head($object);
103  print dol_get_fiche_head($head, 'document', $langs->trans('CommRequest'), -1, 'supplier_proposal');
104 
105  // Build file list
106  $filearray = dol_dir_list($upload_dir, "files", 0, '', '(\.meta|_preview.*\.png)$', $sortfield, (strtolower($sortorder) == 'desc' ?SORT_DESC:SORT_ASC), 1);
107  $totalsize = 0;
108  foreach ($filearray as $key => $file) {
109  $totalsize += $file['size'];
110  }
111 
112 
113  // Supplier proposal card
114  $linkback = '<a href="'.DOL_URL_ROOT.'/supplier_proposal/list.php?restore_lastsearch_values=1'.(!empty($socid) ? '&socid='.$socid : '').'">'.$langs->trans("BackToList").'</a>';
115 
116 
117  $morehtmlref = '<div class="refidno">';
118  // Ref supplier
119  //$morehtmlref.=$form->editfieldkey("RefSupplier", 'ref_supplier', $object->ref_supplier, $object, $user->rights->fournisseur->commande->creer, 'string', '', 0, 1);
120  //$morehtmlref.=$form->editfieldval("RefSupplier", 'ref_supplier', $object->ref_supplier, $object, $user->rights->fournisseur->commande->creer, 'string', '', null, null, '', 1);
121  // Thirdparty
122  $morehtmlref .= $langs->trans('ThirdParty').' : '.$object->thirdparty->getNomUrl(1);
123  // Project
124  if (!empty($conf->project->enabled)) {
125  $langs->load("projects");
126  $morehtmlref .= '<br>'.$langs->trans('Project').' ';
127  if ($user->rights->supplier_proposal->creer) {
128  if ($action != 'classify') {
129  //$morehtmlref.='<a class="editfielda" href="' . $_SERVER['PHP_SELF'] . '?action=classify&token='.newToken().'&id=' . $object->id . '">' . img_edit($langs->transnoentitiesnoconv('SetProject')) . '</a> : ';
130  $morehtmlref .= ' : ';
131  }
132  if ($action == 'classify') {
133  //$morehtmlref.=$form->form_project($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->socid, $object->fk_project, 'projectid', 0, 0, 1, 1);
134  $morehtmlref .= '<form method="post" action="'.$_SERVER['PHP_SELF'].'?id='.$object->id.'">';
135  $morehtmlref .= '<input type="hidden" name="action" value="classin">';
136  $morehtmlref .= '<input type="hidden" name="token" value="'.newToken().'">';
137  $morehtmlref .= $formproject->select_projects($object->socid, $object->fk_project, 'projectid', $maxlength, 0, 1, 0, 1, 0, 0, '', 1);
138  $morehtmlref .= '<input type="submit" class="button valignmiddle" value="'.$langs->trans("Modify").'">';
139  $morehtmlref .= '</form>';
140  } else {
141  $morehtmlref .= $form->form_project($_SERVER['PHP_SELF'].'?id='.$object->id, $object->socid, $object->fk_project, 'none', 0, 0, 0, 1);
142  }
143  } else {
144  if (!empty($object->fk_project)) {
145  $proj = new Project($db);
146  $proj->fetch($object->fk_project);
147  $morehtmlref .= ' : '.$proj->getNomUrl(1);
148  if ($proj->title) {
149  $morehtmlref .= ' - '.$proj->title;
150  }
151  } else {
152  $morehtmlref .= '';
153  }
154  }
155  }
156  $morehtmlref .= '</div>';
157 
158 
159  dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'ref', $morehtmlref);
160 
161 
162  print '<div class="fichecenter">';
163  print '<div class="underbanner clearboth"></div>';
164 
165  print '<table class="border tableforfield centpercent">';
166 
167  print '<tr><td class="titlefield">'.$langs->trans("NbOfAttachedFiles").'</td><td>'.count($filearray).'</td></tr>';
168  print '<tr><td>'.$langs->trans("TotalSizeOfAttachedFiles").'</td><td>'.dol_print_size($totalsize, 1, 1).'</td></tr>';
169 
170  print '</table>';
171 
172  print '</div>';
173 
174  print dol_get_fiche_end();
175 
176  $modulepart = 'supplier_proposal';
177  $permissiontoadd = $user->rights->supplier_proposal->creer;
178  $permtoedit = $user->rights->supplier_proposal->creer;
179  $param = '&id='.$object->id;
180  include DOL_DOCUMENT_ROOT.'/core/tpl/document_actions_post_headers.tpl.php';
181 } else {
182  print $langs->trans("ErrorUnknown");
183 }
184 
185 // End of page
186 llxFooter();
187 $db->close();
dol_sanitizeFileName
dol_sanitizeFileName($str, $newstr='_', $unaccent=1)
Clean a string to use it as a file name.
Definition: functions.lib.php:1226
restrictedArea
restrictedArea($user, $features, $objectid=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.
Definition: security.lib.php:234
Project
Class to manage projects.
Definition: project.class.php:35
GETPOST
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
Definition: functions.lib.php:484
llxFooter
llxFooter()
Footer empty.
Definition: document.php:89
$form
if($cancel &&! $id) if($action=='add' &&! $cancel) if($action=='delete') if($id) $form
Actions.
Definition: card.php:142
dol_dir_list
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.
Definition: files.lib.php:60
dol_banner_tab
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.
Definition: functions.lib.php:2046
$help_url
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.
Definition: agenda.php:116
llxHeader
if(!defined('NOTOKENRENEWAL')) if(!defined('NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined('NOREQUIREAJAX')) if(isset($_GET["hashp"]) &&!defined("NOLOGIN")) if((isset($_GET["modulepart"]) && $_GET["modulepart"]=='medias')) llxHeader()
Header empty.
Definition: document.php:80
dol_print_size
dol_print_size($size, $shortvalue=0, $shortunit=0)
Return string with formated size.
Definition: functions.lib.php:2884
dol_get_fiche_head
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='')
Show tabs of a record.
Definition: functions.lib.php:1822
dol_get_fiche_end
dol_get_fiche_end($notab=0)
Return tab footer of a card.
Definition: functions.lib.php:2018
GETPOSTISSET
GETPOSTISSET($paramname)
Return true if we are in a context of submitting the parameter $paramname from a POST of a form.
Definition: functions.lib.php:386
Form
Class to manage generation of HTML components Only common components must be here.
Definition: html.form.class.php:52
SupplierProposal
Class to manage price ask supplier.
Definition: supplier_proposal.class.php:50