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';
38$langs->loadLangs(array(
"companies",
"other"));
42$action =
GETPOST(
'action',
'aZ09');
47$limit =
GETPOST(
'limit',
'int') ?
GETPOST(
'limit',
'int') : $conf->liste_limit;
48$sortfield =
GETPOST(
'sortfield',
'aZ09comma');
49$sortorder =
GETPOST(
'sortorder',
'aZ09comma');
50$page = GETPOSTISSET(
'pageplusone') ? (
GETPOST(
'pageplusone') - 1) :
GETPOST(
"page",
'int');
52if (empty($page) || $page == -1) {
56$offset = $limit * $page;
60if (!empty($conf->global->MAIN_DOC_SORT_FIELD)) {
61 $sortfield = $conf->global->MAIN_DOC_SORT_FIELD;
63if (!empty($conf->global->MAIN_DOC_SORT_ORDER)) {
64 $sortorder = $conf->global->MAIN_DOC_SORT_ORDER;
71 $sortfield =
"position_name";
76if ($id > 0 || !empty($ref)) {
77 $result = $object->fetch($id, $ref);
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');
84$hookmanager->initHooks(array(
'thirdpartydocument',
'globalcard'));
86$permissiontoadd = $user->hasRight(
'societe',
'creer');
89if ($user->socid > 0) {
91 $socid = $user->socid;
93$result =
restrictedArea($user,
'societe', $object->id,
'&societe');
95if (empty($object->id)) {
104include DOL_DOCUMENT_ROOT.
'/core/actions_linkedfiles.inc.php';
111$form =
new Form($db);
113$title = $langs->trans(
"ThirdParty").
' - '.$langs->trans(
"Files");
114if (!empty($conf->global->MAIN_HTML_TITLE) && preg_match(
'/thirdpartynameonly/', $conf->global->MAIN_HTML_TITLE) && $object->name) {
115 $title = $object->name.
' - '.$langs->trans(
"Files");
117$help_url =
'EN:Module_Third_Parties|FR:Module_Tiers|ES:Empresas';
121if (isModEnabled(
'notification')) {
122 $langs->load(
"mails");
126print
dol_get_fiche_head($head,
'document', $langs->trans(
"ThirdParty"), -1,
'company');
130$filearray =
dol_dir_list($upload_dir,
"files", 0,
'',
'(\.meta|_preview.*\.png)$', $sortfield, (strtolower($sortorder) ==
'desc' ?SORT_DESC:SORT_ASC), 1);
132foreach ($filearray as $key => $file) {
133 $totalsize += $file[
'size'];
136$linkback =
'<a href="'.DOL_URL_ROOT.
'/societe/list.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToList").
'</a>';
138dol_banner_tab($object,
'socid', $linkback, ($user->socid ? 0 : 1),
'rowid',
'nom');
140print
'<div class="fichecenter">';
142print
'<div class="underbanner clearboth"></div>';
143print
'<table class="border tableforfield centpercent">';
146print
'<tr><td class="titlefield">'.$langs->trans(
'NatureOfThirdParty').
'</td><td>';
147print $object->getTypeUrl(1);
151if (!empty($conf->global->SOCIETE_USEPREFIX)) {
152 print
'<tr><td class="titlefield">'.$langs->trans(
'Prefix').
'</td><td colspan="3">'.$object->prefix_comm.
'</td></tr>';
155if ($object->client) {
156 print
'<tr><td class="titlefield">';
157 print $langs->trans(
'CustomerCode').
'</td><td colspan="3">';
159 $tmpcheck = $object->check_codeclient();
160 if ($tmpcheck != 0 && $tmpcheck != -5) {
161 print
' <span class="error">('.$langs->trans(
"WrongCustomerCode").
')</span>';
166if ($object->fournisseur) {
167 print
'<tr><td class="titlefield">';
168 print $langs->trans(
'SupplierCode').
'</td><td colspan="3">';
170 $tmpcheck = $object->check_codefournisseur();
171 if ($tmpcheck != 0 && $tmpcheck != -5) {
172 print
' <span class="error">('.$langs->trans(
"WrongSupplierCode").
')</span>';
178print
'<tr><td class="titlefield">'.$langs->trans(
"NbOfAttachedFiles").
'</td><td colspan="3">'.count($filearray).
'</td></tr>';
181print
'<tr><td>'.$langs->trans(
"TotalSizeOfAttachedFiles").
'</td><td colspan="3">'.
dol_print_size($totalsize, 1, 1).
'</td></tr>';
189$modulepart =
'societe';
190$permissiontoadd = $user->hasRight(
'societe',
'creer');
191$permtoedit = $user->hasRight(
'societe',
'creer');
192$param =
'&id='.$object->id;
193include DOL_DOCUMENT_ROOT.
'/core/tpl/document_actions_post_headers.tpl.php';
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
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.
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.
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.
showValueWithClipboardCPButton($valuetocopy, $showonlyonhover=1, $texttoshow='')
Create a button to copy $valuetocopy in the clipboard (for copy and paste feature).
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.
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.