dolibarr 19.0.3
document.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2003-2007 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3 * Copyright (C) 2004-2016 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2005 Marc Barilley / Ocebo <marc@ocebo.com>
5 * Copyright (C) 2005-2011 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 * Copyright (C) 2017 Frédéric France <frederic.france@netlogic.fr>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 3 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program. If not, see <https://www.gnu.org/licenses/>.
22 */
23
30// Load Dolibarr environment
31require '../../main.inc.php';
32require_once DOL_DOCUMENT_ROOT.'/compta/facture/class/facture.class.php';
33require_once DOL_DOCUMENT_ROOT.'/core/class/discount.class.php';
34require_once DOL_DOCUMENT_ROOT.'/core/lib/invoice.lib.php';
35require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
36require_once DOL_DOCUMENT_ROOT.'/core/lib/images.lib.php';
37require_once DOL_DOCUMENT_ROOT.'/core/class/html.formfile.class.php';
38if (isModEnabled('project')) {
39 include_once DOL_DOCUMENT_ROOT.'/projet/class/project.class.php';
40}
41
42// Load translation files required by the page
43$langs->loadLangs(array('propal', 'compta', 'other', 'bills', 'companies'));
44
45
46$id = (GETPOST('id', 'int') ? GETPOST('id', 'int') : GETPOST('facid', 'int')); // For backward compatibility
47$ref = GETPOST('ref', 'alpha');
48$socid = GETPOST('socid', 'int');
49$action = GETPOST('action', 'aZ09');
50$confirm = GETPOST('confirm', 'alpha');
51
52// Get parameters
53$limit = GETPOST('limit', 'int') ? GETPOST('limit', 'int') : $conf->liste_limit;
54$sortfield = GETPOST('sortfield', 'aZ09comma');
55$sortorder = GETPOST('sortorder', 'aZ09comma');
56$page = GETPOSTISSET('pageplusone') ? (GETPOST('pageplusone') - 1) : GETPOST("page", 'int');
57if (empty($page) || $page == -1) {
58 $page = 0;
59} // If $page is not defined, or '' or -1
60$offset = $limit * $page;
61$pageprev = $page - 1;
62$pagenext = $page + 1;
63if (!$sortorder) {
64 $sortorder = "ASC";
65}
66if (!$sortfield) {
67 $sortfield = "name";
68}
69
70$object = new Facture($db);
71if ($object->fetch($id, $ref)) {
72 $object->fetch_thirdparty();
73 $upload_dir = $conf->facture->dir_output."/".dol_sanitizeFileName($object->ref);
74}
75
76$permissiontoadd = $user->hasRight('facture', 'creer');
77
78// Security check
79if ($user->socid) {
80 $socid = $user->socid;
81}
82$result = restrictedArea($user, 'facture', $object->id, '');
83
84$usercancreate = $user->hasRight("facture", "creer");
85
86
87/*
88 * Actions
89 */
90
91include DOL_DOCUMENT_ROOT.'/core/actions_linkedfiles.inc.php';
92
93
94/*
95 * View
96 */
97
98$form = new Form($db);
99
100if (empty($object->id)) {
101 $title = $langs->trans('Documents');
102} else {
103 $title = $object->ref." - ".$langs->trans('Documents');
104}
105$help_url = "EN:Customers_Invoices|FR:Factures_Clients|ES:Facturas_a_clientes";
106
107llxHeader('', $title, $help_url);
108
109if (empty($object->id)) {
110 $langs->load('errors');
111 echo '<div class="error">'.$langs->trans("ErrorRecordNotFound").'</div>';
112
113 llxFooter();
114 exit;
115}
116
117if ($id > 0 || !empty($ref)) {
118 if ($object->fetch($id, $ref) > 0) {
119 $object->fetch_thirdparty();
120
121 $upload_dir = $conf->facture->multidir_output[$object->entity].'/'.dol_sanitizeFileName($object->ref);
122
123 $head = facture_prepare_head($object);
124 print dol_get_fiche_head($head, 'documents', $langs->trans('InvoiceCustomer'), -1, 'bill');
125
126 $totalpaid = $object->getSommePaiement();
127
128 // Build file list
129 $filearray = dol_dir_list($upload_dir, "files", 0, '', '(\.meta|_preview.*\.png)$', $sortfield, (strtolower($sortorder) == 'desc' ? SORT_DESC : SORT_ASC), 1);
130 $totalsize = 0;
131 foreach ($filearray as $key => $file) {
132 $totalsize += $file['size'];
133 }
134
135
136 // Invoice content
137
138 $linkback = '<a href="'.DOL_URL_ROOT.'/compta/facture/list.php?restore_lastsearch_values=1'.(!empty($socid) ? '&socid='.$socid : '').'">'.$langs->trans("BackToList").'</a>';
139
140 $morehtmlref = '<div class="refidno">';
141 // Ref customer
142 $morehtmlref .= $form->editfieldkey("RefCustomer", 'ref_client', $object->ref_client, $object, 0, 'string', '', 0, 1);
143 $morehtmlref .= $form->editfieldval("RefCustomer", 'ref_client', $object->ref_client, $object, 0, 'string', '', null, null, '', 1);
144 // Thirdparty
145 $morehtmlref .= '<br>'.$object->thirdparty->getNomUrl(1, 'customer');
146 // Project
147 if (isModEnabled('project')) {
148 $langs->load("projects");
149 $morehtmlref .= '<br>';
150 if (0) {
151 $morehtmlref .= img_picto($langs->trans("Project"), 'project', 'class="pictofixedwidth"');
152 if ($action != 'classify') {
153 $morehtmlref .= '<a class="editfielda" href="'.$_SERVER['PHP_SELF'].'?action=classify&token='.newToken().'&id='.$object->id.'">'.img_edit($langs->transnoentitiesnoconv('SetProject')).'</a> ';
154 }
155 $morehtmlref .= $form->form_project($_SERVER['PHP_SELF'].'?id='.$object->id, $object->socid, $object->fk_project, ($action == 'classify' ? 'projectid' : 'none'), 0, 0, 0, 1, '', 'maxwidth300');
156 } else {
157 if (!empty($object->fk_project)) {
158 $proj = new Project($db);
159 $proj->fetch($object->fk_project);
160 $morehtmlref .= $proj->getNomUrl(1);
161 if ($proj->title) {
162 $morehtmlref .= '<span class="opacitymedium"> - '.dol_escape_htmltag($proj->title).'</span>';
163 }
164 }
165 }
166 }
167 $morehtmlref .= '</div>';
168
169 $object->totalpaid = $totalpaid; // To give a chance to dol_banner_tab to use already paid amount to show correct status
170
171 dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'ref', $morehtmlref, '', 0);
172
173 print '<div class="fichecenter">';
174 print '<div class="underbanner clearboth"></div>';
175
176 print '<table class="border tableforfield centpercent">';
177
178 print '<tr><td class="titlefield">'.$langs->trans("NbOfAttachedFiles").'</td><td colspan="3">'.count($filearray).'</td></tr>';
179 print '<tr><td>'.$langs->trans("TotalSizeOfAttachedFiles").'</td><td colspan="3">'.dol_print_size($totalsize, 1, 1).'</td></tr>';
180 print "</table>\n";
181
182 print "</div>\n";
183
184 print dol_get_fiche_end();
185
186 $modulepart = 'facture';
187 $permissiontoadd = $user->hasRight('facture', 'creer');
188 $permtoedit = $user->hasRight('facture', 'creer');
189 $param = '&id='.$object->id;
190 include DOL_DOCUMENT_ROOT.'/core/tpl/document_actions_post_headers.tpl.php';
191 } else {
192 dol_print_error($db);
193 }
194} else {
195 print $langs->trans("ErrorUnknown");
196}
197
198// End of page
199llxFooter();
200$db->close();
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
Definition wrapper.php:55
llxFooter()
Empty footer.
Definition wrapper.php:69
Class to manage invoices.
Class to manage generation of HTML components Only common components must be here.
Class to manage projects.
dol_dir_list($path, $types="all", $recursive=0, $filter="", $excludefilter=null, $sortcriteria="name", $sortorder=SORT_ASC, $mode=0, $nohook=0, $relativename="", $donotfollowsymlinks=0, $nbsecondsold=0)
Scan a directory and return a list of files/directories.
Definition files.lib.php:62
dol_print_size($size, $shortvalue=0, $shortunit=0)
Return string with formated size.
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_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.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_sanitizeFileName($str, $newstr='_', $unaccent=1)
Clean a string to use it as a file name.
img_edit($titlealt='default', $float=0, $other='')
Show logo editer/modifier fiche.
facture_prepare_head($object)
Initialize the array of tabs for customer invoice.
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.