dolibarr 21.0.0-alpha
document.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2002-2007 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3 * Copyright (C) 2004-2010 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2005-2012 Regis Houssin <regis.houssin@inodbox.com>
5 * Copyright (C) 2010 Juanjo Menent <jmenent@2byte.es>
6 * Copyright (C) 2013 Cédric Salvador <csalvador@gpcsolutions.fr>
7 * Copyright (C) 2015 Marcos García <marcosgdf@gmail.com>
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// Load Dolibarr environment
30require '../main.inc.php';
31require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
32require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
33require_once DOL_DOCUMENT_ROOT.'/core/lib/images.lib.php';
34require_once DOL_DOCUMENT_ROOT.'/core/class/html.formfile.class.php';
35
36
37// Load translation files required by the page
38$langs->loadLangs(array("companies", "other"));
39
40
41// Get parameters
42$action = GETPOST('action', 'aZ09');
43$confirm = GETPOST('confirm');
44$id = (GETPOSTINT('socid') ? GETPOSTINT('socid') : GETPOSTINT('id'));
45$ref = GETPOST('ref', 'alpha');
46
47$limit = GETPOSTINT('limit') ? GETPOSTINT('limit') : $conf->liste_limit;
48$sortfield = GETPOST('sortfield', 'aZ09comma');
49$sortorder = GETPOST('sortorder', 'aZ09comma');
50$page = GETPOSTISSET('pageplusone') ? (GETPOST('pageplusone') - 1) : GETPOSTINT("page");
51
52if (empty($page) || $page == -1) {
53 $page = 0;
54} // If $page is not defined, or '' or -1
55
56$offset = $limit * $page;
57$pageprev = $page - 1;
58$pagenext = $page + 1;
59
60if (getDolGlobalString('MAIN_DOC_SORT_FIELD')) {
61 $sortfield = getDolGlobalString('MAIN_DOC_SORT_FIELD');
62}
63if (getDolGlobalString('MAIN_DOC_SORT_ORDER')) {
64 $sortorder = getDolGlobalString('MAIN_DOC_SORT_ORDER');
65}
66
67if (!$sortorder) {
68 $sortorder = "ASC";
69}
70if (!$sortfield) {
71 $sortfield = "position_name";
72}
73
74// Initialize objects
75$object = new Societe($db);
76if ($id > 0 || !empty($ref)) {
77 $result = $object->fetch($id, $ref);
78
79 $upload_dir = $conf->societe->multidir_output[$object->entity]."/".$object->id;
80 $courrier_dir = $conf->societe->multidir_output[$object->entity]."/courrier/".get_exdir($object->id, 0, 0, 0, $object, 'thirdparty');
81}
82
83// Initialize a technical object to manage hooks of page. Note that conf->hooks_modules contains an array of hook context
84$hookmanager->initHooks(array('thirdpartydocument', 'globalcard'));
85
86$permissiontoadd = $user->hasRight('societe', 'creer'); // Used by the include of actions_addupdatedelete.inc.php and actions_lineupdown.inc.php
87
88// Security check
89if ($user->socid > 0) {
90 unset($action);
91 $socid = $user->socid;
92}
93$result = restrictedArea($user, 'societe', $object->id, '&societe');
94
95if (empty($object->id)) {
97}
98
99
100/*
101 * Actions
102 */
103
104include DOL_DOCUMENT_ROOT.'/core/actions_linkedfiles.inc.php';
105
106
107/*
108 * View
109 */
110
111$form = new Form($db);
112
113$title = $langs->trans("ThirdParty").' - '.$langs->trans("Files");
114if (getDolGlobalString('MAIN_HTML_TITLE') && preg_match('/thirdpartynameonly/', getDolGlobalString('MAIN_HTML_TITLE')) && $object->name) {
115 $title = $object->name.' - '.$langs->trans("Files");
116}
117$help_url = 'EN:Module_Third_Parties|FR:Module_Tiers|ES:Empresas';
118llxHeader('', $title, $help_url);
119
120// Show tabs
121$head = societe_prepare_head($object);
122
123print dol_get_fiche_head($head, 'document', $langs->trans("ThirdParty"), -1, 'company');
124
125
126// Build file list
127$filearray = dol_dir_list($upload_dir, "files", 0, '', '(\.meta|_preview.*\.png)$', $sortfield, (strtolower($sortorder) == 'desc' ? SORT_DESC : SORT_ASC), 1);
128$totalsize = 0;
129foreach ($filearray as $key => $file) {
130 $totalsize += $file['size'];
131}
132
133$linkback = '<a href="'.DOL_URL_ROOT.'/societe/list.php?restore_lastsearch_values=1">'.$langs->trans("BackToList").'</a>';
134
135dol_banner_tab($object, 'socid', $linkback, ($user->socid ? 0 : 1), 'rowid', 'nom');
136
137print '<div class="fichecenter">';
138
139print '<div class="underbanner clearboth"></div>';
140print '<table class="border tableforfield centpercent">';
141
142// Type Prospect/Customer/Supplier
143print '<tr><td class="titlefield">'.$langs->trans('NatureOfThirdParty').'</td><td>';
144print $object->getTypeUrl(1);
145print '</td></tr>';
146
147// Prefix
148if (getDolGlobalString('SOCIETE_USEPREFIX')) { // Old not used prefix field
149 print '<tr><td class="titlefield">'.$langs->trans('Prefix').'</td><td colspan="3">'.$object->prefix_comm.'</td></tr>';
150}
151
152if ($object->client) {
153 print '<tr><td class="titlefield">';
154 print $langs->trans('CustomerCode').'</td><td colspan="3">';
156 $tmpcheck = $object->check_codeclient();
157 if ($tmpcheck != 0 && $tmpcheck != -5) {
158 print ' <span class="error">('.$langs->trans("WrongCustomerCode").')</span>';
159 }
160 print '</td></tr>';
161}
162
163if ($object->fournisseur) {
164 print '<tr><td class="titlefield">';
165 print $langs->trans('SupplierCode').'</td><td colspan="3">';
167 $tmpcheck = $object->check_codefournisseur();
168 if ($tmpcheck != 0 && $tmpcheck != -5) {
169 print ' <span class="error">('.$langs->trans("WrongSupplierCode").')</span>';
170 }
171 print '</td></tr>';
172}
173
174// Number of files
175print '<tr><td class="titlefield">'.$langs->trans("NbOfAttachedFiles").'</td><td colspan="3">'.count($filearray).'</td></tr>';
176
177// Total size
178print '<tr><td>'.$langs->trans("TotalSizeOfAttachedFiles").'</td><td colspan="3">'.dol_print_size($totalsize, 1, 1).'</td></tr>';
179
180print '</table>';
181
182print '</div>';
183
184print dol_get_fiche_end();
185
186$modulepart = 'societe';
187$permissiontoadd = $user->hasRight('societe', 'creer');
188$permtoedit = $user->hasRight('societe', 'creer');
189$param = '&id='.$object->id;
190include DOL_DOCUMENT_ROOT.'/core/tpl/document_actions_post_headers.tpl.php';
191
192// End of page
193llxFooter();
194$db->close();
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:58
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
Definition wrapper.php:70
Class to manage generation of HTML components Only common components must be here.
Class to manage third parties objects (customers, suppliers, prospects...)
societe_prepare_head(Societe $object)
Return array of tabs to used on pages for third parties cards.
llxFooter()
Footer empty.
Definition document.php:107
dol_dir_list($utf8_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:63
dol_print_size($size, $shortvalue=0, $shortunit=0)
Return string with formatted size.
showValueWithClipboardCPButton($valuetocopy, $showonlyonhover=1, $texttoshow='')
Create a button to copy $valuetocopy in the clipboard (for copy and paste feature).
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
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.
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
get_exdir($num, $level, $alpha, $withoutslash, $object, $modulepart='')
Return a path to have a the directory according to object where files are stored.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0, $cleanalsojavascript=0)
Returns text escaped for inclusion in HTML alt or title or value tags, or into values of HTML input f...
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.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.