dolibarr  16.0.5
document.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2003-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3  * Copyright (C) 2004-2017 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.'/comm/propal/class/propal.class.php';
31 require_once DOL_DOCUMENT_ROOT.'/core/lib/propal.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 
39 // Load translation files required by the page
40 $langs->loadLangs(array('propal', 'compta', 'other', 'companies'));
41 
42 $action = GETPOST('action', 'alpha');
43 $confirm = GETPOST('confirm', 'alpha');
44 $id = GETPOST('id', 'int');
45 $ref = GETPOST('ref', 'alpha');
46 
47 // Security check
48 $socid = '';
49 if (!empty($user->socid)) {
50  $socid = $user->socid;
51 }
52 $result = restrictedArea($user, 'propal', $id);
53 
54 // Get parameters
55 $limit = GETPOST('limit', 'int') ? GETPOST('limit', 'int') : $conf->liste_limit;
56 $sortfield = GETPOST('sortfield', 'aZ09comma');
57 $sortorder = GETPOST('sortorder', 'aZ09comma');
58 $page = GETPOSTISSET('pageplusone') ? (GETPOST('pageplusone') - 1) : GETPOST("page", 'int');
59 if (empty($page) || $page == -1) {
60  $page = 0;
61 } // If $page is not defined, or '' or -1
62 $offset = $limit * $page;
63 $pageprev = $page - 1;
64 $pagenext = $page + 1;
65 
66 if (!empty($conf->global->MAIN_DOC_SORT_FIELD)) {
67  $sortfield = $conf->global->MAIN_DOC_SORT_FIELD;
68 }
69 if (!empty($conf->global->MAIN_DOC_SORT_ORDER)) {
70  $sortorder = $conf->global->MAIN_DOC_SORT_ORDER;
71 }
72 
73 if (!$sortorder) {
74  $sortorder = "ASC";
75 }
76 if (!$sortfield) {
77  $sortfield = "name";
78 }
79 
80 $object = new Propal($db);
81 $object->fetch($id, $ref);
82 
83 $permissiontoadd = $user->rights->propale->creer;
84 
85 // Security check
86 if (!empty($user->socid)) {
87  $socid = $user->socid;
88  $object->id = $user->socid;
89 }
90 restrictedArea($user, 'propal', $object->id);
91 
92 
93 /*
94  * Actions
95  */
96 
97 if ($object->id > 0) {
98  $object->fetch_thirdparty();
99  $upload_dir = $conf->propal->multidir_output[$object->entity].'/'.dol_sanitizeFileName($object->ref);
100  include DOL_DOCUMENT_ROOT.'/core/actions_linkedfiles.inc.php';
101 }
102 
103 
104 /*
105  * View
106  */
107 $title = $langs->trans('Proposal')." - ".$langs->trans('Documents');
108 $help_url = 'EN:Commercial_Proposals|FR:Proposition_commerciale|ES:Presupuestos';
109 llxHeader('', $title, $help_url);
110 
111 $form = new Form($db);
112 
113 if ($object->id > 0) {
114  $upload_dir = $conf->propal->multidir_output[$object->entity].'/'.dol_sanitizeFileName($object->ref);
115 
116  $head = propal_prepare_head($object);
117  print dol_get_fiche_head($head, 'document', $langs->trans('Proposal'), -1, 'propal');
118 
119  // Build file list
120  $filearray = dol_dir_list($upload_dir, "files", 0, '', '(\.meta|_preview.*\.png)$', $sortfield, (strtolower($sortorder) == 'desc' ?SORT_DESC:SORT_ASC), 1);
121  $totalsize = 0;
122  foreach ($filearray as $key => $file) {
123  $totalsize += $file['size'];
124  }
125 
126 
127  // Proposal card
128 
129  $linkback = '<a href="'.DOL_URL_ROOT.'/comm/propal/list.php?restore_lastsearch_values=1'.(!empty($socid) ? '&socid='.$socid : '').'">'.$langs->trans("BackToList").'</a>';
130 
131 
132  $morehtmlref = '<div class="refidno">';
133  // Ref customer
134  $morehtmlref .= $form->editfieldkey("RefCustomer", 'ref_client', $object->ref_client, $object, 0, 'string', '', 0, 1);
135  $morehtmlref .= $form->editfieldval("RefCustomer", 'ref_client', $object->ref_client, $object, 0, 'string', '', null, null, '', 1);
136  // Thirdparty
137  $morehtmlref .= '<br>'.$langs->trans('ThirdParty').' : '.$object->thirdparty->getNomUrl(1, 'customer');
138  // Project
139  if (!empty($conf->project->enabled)) {
140  $langs->load("projects");
141  $morehtmlref .= '<br>'.$langs->trans('Project').' ';
142  if ($user->rights->propal->creer) {
143  if ($action != 'classify') {
144  //$morehtmlref.='<a class="editfielda" href="' . $_SERVER['PHP_SELF'] . '?action=classify&token='.newToken().'&id=' . $object->id . '">' . img_edit($langs->transnoentitiesnoconv('SetProject')) . '</a>';
145  $morehtmlref .= ' : ';
146  }
147  if ($action == 'classify') {
148  //$morehtmlref.=$form->form_project($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->socid, $object->fk_project, 'projectid', 0, 0, 1, 1);
149  $morehtmlref .= '<form method="post" action="'.$_SERVER['PHP_SELF'].'?id='.$object->id.'">';
150  $morehtmlref .= '<input type="hidden" name="action" value="classin">';
151  $morehtmlref .= '<input type="hidden" name="token" value="'.newToken().'">';
152  $morehtmlref .= $formproject->select_projects($object->socid, $object->fk_project, 'projectid', $maxlength, 0, 1, 0, 1, 0, 0, '', 1);
153  $morehtmlref .= '<input type="submit" class="button valignmiddle" value="'.$langs->trans("Modify").'">';
154  $morehtmlref .= '</form>';
155  } else {
156  $morehtmlref .= $form->form_project($_SERVER['PHP_SELF'].'?id='.$object->id, $object->socid, $object->fk_project, 'none', 0, 0, 0, 1);
157  }
158  } else {
159  if (!empty($object->fk_project)) {
160  $proj = new Project($db);
161  $proj->fetch($object->fk_project);
162  $morehtmlref .= ' : '.$proj->getNomUrl(1);
163  if ($proj->title) {
164  $morehtmlref .= ' - '.$proj->title;
165  }
166  } else {
167  $morehtmlref .= '';
168  }
169  }
170  }
171  $morehtmlref .= '</div>';
172 
173  dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'ref', $morehtmlref);
174 
175 
176  print '<div class="fichecenter">';
177  print '<div class="underbanner clearboth"></div>';
178 
179  print '<table class="border tableforfield centpercent">';
180 
181  // Files infos
182  print '<tr><td class="titlefield">'.$langs->trans("NbOfAttachedFiles").'</td><td>'.count($filearray).'</td></tr>';
183  print '<tr><td>'.$langs->trans("TotalSizeOfAttachedFiles").'</td><td>'.dol_print_size($totalsize, 1, 1).'</td></tr>';
184 
185  print "</table>\n";
186 
187  print '</div>';
188 
189 
190  print dol_get_fiche_end();
191 
192  $modulepart = 'propal';
193  $permissiontoadd = $user->rights->propal->creer;
194  $permtoedit = $user->rights->propal->creer;
195  $param = '&id='.$object->id;
196  include DOL_DOCUMENT_ROOT.'/core/tpl/document_actions_post_headers.tpl.php';
197 } else {
198  print $langs->trans("ErrorUnknown");
199 }
200 
201 // End of page
202 llxFooter();
203 $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
propal_prepare_head
propal_prepare_head($object)
Prepare array with list of tabs.
Definition: propal.lib.php:32
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
Propal
Class to manage proposals.
Definition: propal.class.php:52