dolibarr  13.0.2
mo_document.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2007-2017 Laurent Destailleur <eldy@users.sourceforge.net>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program. If not, see <http://www.gnu.org/licenses/>.
16  */
17 
24 // Load Dolibarr environment
25 require '../main.inc.php';
26 
27 require_once DOL_DOCUMENT_ROOT.'/projet/class/project.class.php';
28 require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
29 require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
30 require_once DOL_DOCUMENT_ROOT.'/core/lib/images.lib.php';
31 require_once DOL_DOCUMENT_ROOT.'/core/class/html.formfile.class.php';
32 require_once DOL_DOCUMENT_ROOT.'/core/class/html.formprojet.class.php';
33 dol_include_once('/mrp/class/mo.class.php');
34 dol_include_once('/mrp/lib/mrp_mo.lib.php');
35 
36 // Load translation files required by the page
37 $langs->loadLangs(array("mrp", "companies", "other", "mails"));
38 
39 
40 $action = GETPOST('action', 'aZ09');
41 $confirm = GETPOST('confirm');
42 $id = (GETPOST('socid', 'int') ? GETPOST('socid', 'int') : GETPOST('id', 'int'));
43 $ref = GETPOST('ref', 'alpha');
44 
45 // Get parameters
46 $limit = GETPOST('limit', 'int') ? GETPOST('limit', 'int') : $conf->liste_limit;
47 $sortfield = GETPOST("sortfield", 'alpha');
48 $sortorder = GETPOST("sortorder", 'alpha');
49 $page = GETPOSTISSET('pageplusone') ? (GETPOST('pageplusone') - 1) : GETPOST("page", 'int');
50 if (empty($page) || $page == -1) { $page = 0; } // If $page is not defined, or '' or -1
51 $offset = $limit * $page;
52 $pageprev = $page - 1;
53 $pagenext = $page + 1;
54 if (!$sortorder) $sortorder = "ASC";
55 if (!$sortfield) $sortfield = "name";
56 //if (! $sortfield) $sortfield="position_name";
57 
58 // Initialize technical objects
59 $object = new Mo($db);
60 $extrafields = new ExtraFields($db);
61 $diroutputmassaction = $conf->mrp->dir_output.'/temp/massgeneration/'.$user->id;
62 $hookmanager->initHooks(array('modocument', 'globalcard')); // Note that conf->hooks_modules contains array
63 
64 // Fetch optionals attributes and labels
65 $extrafields->fetch_name_optionals_label($object->table_element);
66 
67 // Load object
68 include DOL_DOCUMENT_ROOT.'/core/actions_fetchobject.inc.php'; // Must be include, not include_once // Must be include, not include_once. Include fetch and fetch_thirdparty but not fetch_optionals
69 
70 if ($id > 0 || !empty($ref)) $upload_dir = $conf->mrp->multidir_output[$object->entity ? $object->entity : $conf->entity]."/mo/".get_exdir(0, 0, 0, 1, $object);
71 
72 // Security check - Protection if external user
73 //if ($user->socid > 0) accessforbidden();
74 //if ($user->socid > 0) $socid = $user->socid;
75 $isdraft = (($object->status == $object::STATUS_DRAFT) ? 1 : 0);
76 $result = restrictedArea($user, 'mrp', $object->id, 'mrp_mo', '', 'fk_soc', 'rowid', $isdraft);
77 
78 
79 /*
80  * Actions
81  */
82 
83 include_once DOL_DOCUMENT_ROOT.'/core/actions_linkedfiles.inc.php';
84 
85 
86 /*
87  * View
88  */
89 
90 $form = new Form($db);
91 $formproject = new FormProjets($db);
92 
93 $title = $langs->trans("Mo").' - '.$langs->trans("Files");
94 $help_url = '';
95 //$help_url='EN:Module_Third_Parties|FR:Module_Tiers|ES:Empresas';
96 llxHeader('', $title, $help_url);
97 
98 if ($object->id)
99 {
100  /*
101  * Show tabs
102  */
103  $head = moPrepareHead($object);
104 
105  print dol_get_fiche_head($head, 'document', $langs->trans("ManufacturingOrder"), -1, $object->picto);
106 
107  // Build file list
108  $filearray = dol_dir_list($upload_dir, "files", 0, '', '(\.meta|_preview.*\.png)$', $sortfield, (strtolower($sortorder) == 'desc' ?SORT_DESC:SORT_ASC), 1);
109  $totalsize = 0;
110  foreach ($filearray as $key => $file)
111  {
112  $totalsize += $file['size'];
113  }
114 
115  // Object card
116  // ------------------------------------------------------------
117  $linkback = '<a href="'.dol_buildpath('/mrp/mo_list.php', 1).'?restore_lastsearch_values=1'.(!empty($socid) ? '&socid='.$socid : '').'">'.$langs->trans("BackToList").'</a>';
118 
119  $morehtmlref = '<div class="refidno">';
120  // Ref customer
121  //$morehtmlref.=$form->editfieldkey("RefCustomer", 'ref_client', $object->ref_client, $object, 0, 'string', '', 0, 1);
122  //$morehtmlref.=$form->editfieldval("RefCustomer", 'ref_client', $object->ref_client, $object, 0, 'string', '', null, null, '', 1);
123  // Thirdparty
124  $morehtmlref .= $langs->trans('ThirdParty').' : '.(is_object($object->thirdparty) ? $object->thirdparty->getNomUrl(1) : '');
125  // Project
126  if (!empty($conf->projet->enabled))
127  {
128  $langs->load("projects");
129  $morehtmlref .= '<br>'.$langs->trans('Project').' ';
130  if ($permissiontoadd)
131  {
132  if ($action != 'classify')
133  $morehtmlref .= '<a class="editfielda" href="'.$_SERVER['PHP_SELF'].'?action=classify&amp;id='.$object->id.'">'.img_edit($langs->transnoentitiesnoconv('SetProject')).'</a> : ';
134  if ($action == 'classify') {
135  //$morehtmlref.=$form->form_project($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->fk_soc, $object->fk_project, 'projectid', 0, 0, 1, 1);
136  $morehtmlref .= '<form method="post" action="'.$_SERVER['PHP_SELF'].'?id='.$object->id.'">';
137  $morehtmlref .= '<input type="hidden" name="action" value="classin">';
138  $morehtmlref .= '<input type="hidden" name="token" value="'.newToken().'">';
139  $morehtmlref .= $formproject->select_projects($object->fk_soc, $object->fk_project, 'projectid', 0, 0, 1, 0, 1, 0, 0, '', 1);
140  $morehtmlref .= '<input type="submit" class="button valignmiddle" value="'.$langs->trans("Modify").'">';
141  $morehtmlref .= '</form>';
142  } else {
143  $morehtmlref .= $form->form_project($_SERVER['PHP_SELF'].'?id='.$object->id, $object->fk_soc, $object->fk_project, 'none', 0, 0, 0, 1);
144  }
145  } else {
146  if (!empty($object->fk_project)) {
147  $proj = new Project($db);
148  $proj->fetch($object->fk_project);
149  $morehtmlref .= ': '.$proj->getNomUrl();
150  } else {
151  $morehtmlref .= '';
152  }
153  }
154  }
155  $morehtmlref .= '</div>';
156 
157  dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'ref', $morehtmlref);
158 
159  print '<div class="fichecenter">';
160 
161  print '<div class="underbanner clearboth"></div>';
162  print '<table class="border centpercent tableforfield">';
163 
164  // Number of files
165  print '<tr><td class="titlefield">'.$langs->trans("NbOfAttachedFiles").'</td><td colspan="3">'.count($filearray).'</td></tr>';
166 
167  // Total size
168  print '<tr><td>'.$langs->trans("TotalSizeOfAttachedFiles").'</td><td colspan="3">'.$totalsize.' '.$langs->trans("bytes").'</td></tr>';
169 
170  print '</table>';
171 
172  print '</div>';
173 
175 
176  $modulepart = 'mrp';
177  $permission = $user->rights->mrp->write;
178  $permtoedit = $user->rights->mrp->write;
179  $param = '&id='.$object->id;
180 
181  //$relativepathwithnofile='mo/' . dol_sanitizeFileName($object->id).'/';
182  $relativepathwithnofile = 'mo/'.dol_sanitizeFileName($object->ref).'/';
183 
184  include_once DOL_DOCUMENT_ROOT.'/core/tpl/document_actions_post_headers.tpl.php';
185 } else {
186  accessforbidden('', 0, 1);
187 }
188 
189 // End of page
190 llxFooter();
191 $db->close();
if(!function_exists('dol_getprefix')) dol_include_once($relpath, $classname= '')
Make an include_once using default root and alternate root if it fails.
GETPOST($paramname, $check= 'alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
img_edit($titlealt= 'default', $float=0, $other= '')
Show logo editer/modifier fiche.
Class for Mo.
Definition: mo.class.php:34
moPrepareHead($object)
Prepare array of tabs for Mo.
Definition: mrp_mo.lib.php:30
llxHeader()
Empty header.
Definition: wrapper.php:45
Class to manage standard extra fields.
Class to manage generation of HTML components Only common components must be here.
GETPOSTISSET($paramname)
Return true if we are in a context of submitting the parameter $paramname.
Class to manage projects.
Class to manage building of HTML components.
get_exdir($num, $level, $alpha, $withoutslash, $object, $modulepart= '')
Return a path to have a the directory according to object where files are stored. ...
restrictedArea($user, $features, $objectid=0, $tableandshare= '', $feature2= '', $dbt_keyfield= 'fk_soc', $dbt_select= 'rowid', $isdraft=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 Calling this function terminate execution ...
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
print $_SERVER["PHP_SELF"]
Edit parameters.
dol_get_fiche_head($links=array(), $active= '', $title= '', $notab=0, $picto= '', $pictoisfullpath=0, $morehtmlright= '', $morecss= '', $limittoshow=0, $moretabssuffix= '')
Show tabs of a record.
print
Draft customers invoices.
Definition: index.php:89
dol_get_fiche_end($notab=0)
Return tab footer of a card.
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.
llxFooter()
Empty footer.
Definition: wrapper.php:59