dolibarr  16.0.5
mo_note.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 require_once DOL_DOCUMENT_ROOT.'/projet/class/project.class.php';
27 require_once DOL_DOCUMENT_ROOT.'/core/class/html.formprojet.class.php';
28 
29 dol_include_once('/mrp/class/mo.class.php');
30 dol_include_once('/mrp/lib/mrp_mo.lib.php');
31 
32 // Load translation files required by the page
33 $langs->loadLangs(array("mrp", "companies"));
34 
35 // Get parameters
36 $id = GETPOST('id', 'int');
37 $ref = GETPOST('ref', 'alpha');
38 $action = GETPOST('action', 'aZ09');
39 $cancel = GETPOST('cancel', 'aZ09');
40 $backtopage = GETPOST('backtopage', 'alpha');
41 
42 // Initialize technical objects
43 $object = new Mo($db);
44 $extrafields = new ExtraFields($db);
45 $diroutputmassaction = $conf->mrp->dir_output.'/temp/massgeneration/'.$user->id;
46 $hookmanager->initHooks(array('monote', 'globalcard')); // Note that conf->hooks_modules contains array
47 
48 // Fetch optionals attributes and labels
49 $extrafields->fetch_name_optionals_label($object->table_element);
50 
51 // Load object
52 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
53 if ($id > 0 || !empty($ref)) {
54  $upload_dir = $conf->mrp->multidir_output[$object->entity]."/".$object->id;
55 }
56 
57 // Security check - Protection if external user
58 //if ($user->socid > 0) accessforbidden();
59 //if ($user->socid > 0) $socid = $user->socid;
60 $isdraft = (($object->status == $object::STATUS_DRAFT) ? 1 : 0);
61 $result = restrictedArea($user, 'mrp', $object->id, 'mrp_mo', '', 'fk_soc', 'rowid', $isdraft);
62 
63 $permissionnote = $user->rights->mrp->write; // Used by the include of actions_setnotes.inc.php
64 
65 
66 
67 /*
68  * Actions
69  */
70 
71 
72 $reshook = $hookmanager->executeHooks('doActions', array(), $object, $action); // Note that $action and $object may have been modified by some hooks
73 if ($reshook < 0) {
74  setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
75 }
76 if (empty($reshook)) {
77  include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php'; // Must be include, not include_once
78 }
79 
80 
81 /*
82  * View
83  */
84 
85 $form = new Form($db);
86 $formproject = new FormProjets($db);
87 
88 //$help_url='EN:Customers_Orders|FR:Commandes_Clients|ES:Pedidos de clientes';
89 $help_url = '';
90 llxHeader('', $langs->trans('Mo'), $help_url);
91 
92 if ($id > 0 || !empty($ref)) {
93  $object->fetch_thirdparty();
94 
95  $head = moPrepareHead($object);
96 
97  print dol_get_fiche_head($head, 'note', $langs->trans("ManufacturingOrder"), -1, $object->picto);
98 
99  // Object card
100  // ------------------------------------------------------------
101  $linkback = '<a href="'.dol_buildpath('/mrp/mo_list.php', 1).'?restore_lastsearch_values=1'.(!empty($socid) ? '&socid='.$socid : '').'">'.$langs->trans("BackToList").'</a>';
102 
103  $morehtmlref = '<div class="refidno">';
104  // Ref customer
105  //$morehtmlref.=$form->editfieldkey("RefCustomer", 'ref_client', $object->ref_client, $object, 0, 'string', '', 0, 1);
106  //$morehtmlref.=$form->editfieldval("RefCustomer", 'ref_client', $object->ref_client, $object, 0, 'string', '', null, null, '', 1);
107  // Thirdparty
108  $morehtmlref .= $langs->trans('ThirdParty').' : '.(is_object($object->thirdparty) ? $object->thirdparty->getNomUrl(1) : '');
109  // Project
110  if (!empty($conf->project->enabled)) {
111  $langs->load("projects");
112  $morehtmlref .= '<br>'.$langs->trans('Project').' ';
113  if ($permissiontoadd) {
114  if ($action != 'classify') {
115  $morehtmlref .= '<a class="editfielda" href="'.$_SERVER['PHP_SELF'].'?action=classify&token='.newToken().'&id='.$object->id.'">'.img_edit($langs->transnoentitiesnoconv('SetProject')).'</a> : ';
116  }
117  if ($action == 'classify') {
118  //$morehtmlref.=$form->form_project($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->fk_soc, $object->fk_project, 'projectid', 0, 0, 1, 1);
119  $morehtmlref .= '<form method="post" action="'.$_SERVER['PHP_SELF'].'?id='.$object->id.'">';
120  $morehtmlref .= '<input type="hidden" name="action" value="classin">';
121  $morehtmlref .= '<input type="hidden" name="token" value="'.newToken().'">';
122  $morehtmlref .= $formproject->select_projects($object->fk_soc, $object->fk_project, 'projectid', 0, 0, 1, 0, 1, 0, 0, '', 1);
123  $morehtmlref .= '<input type="submit" class="button valignmiddle" value="'.$langs->trans("Modify").'">';
124  $morehtmlref .= '</form>';
125  } else {
126  $morehtmlref .= $form->form_project($_SERVER['PHP_SELF'].'?id='.$object->id, $object->fk_soc, $object->fk_project, 'none', 0, 0, 0, 1);
127  }
128  } else {
129  if (!empty($object->fk_project)) {
130  $proj = new Project($db);
131  $proj->fetch($object->fk_project);
132  $morehtmlref .= ' : '.$proj->getNomUrl();
133  } else {
134  $morehtmlref .= '';
135  }
136  }
137  }
138  $morehtmlref .= '</div>';
139 
140  dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'ref', $morehtmlref);
141 
142 
143  print '<div class="fichecenter">';
144  print '<div class="underbanner clearboth"></div>';
145 
146 
147  $cssclass = "titlefield";
148  include DOL_DOCUMENT_ROOT.'/core/tpl/notes.tpl.php';
149 
150  print '</div>';
151 
152  print dol_get_fiche_end();
153 }
154 
155 // End of page
156 llxFooter();
157 $db->close();
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
llxFooter
llxFooter()
Empty footer.
Definition: wrapper.php:73
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
dol_include_once
if(!function_exists('dol_getprefix')) dol_include_once($relpath, $classname='')
Make an include_once using default root and alternate root if it fails.
Definition: functions.lib.php:1033
FormProjets
Class to manage building of HTML components.
Definition: html.formprojet.class.php:30
$form
if($cancel &&! $id) if($action=='add' &&! $cancel) if($action=='delete') if($id) $form
Actions.
Definition: card.php:142
Mo
Class for Mo.
Definition: mo.class.php:35
img_edit
img_edit($titlealt='default', $float=0, $other='')
Show logo editer/modifier fiche.
Definition: functions.lib.php:4389
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
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
newToken
newToken()
Return the value of token currently saved into session with name 'newtoken'.
Definition: functions.lib.php:10878
dol_get_fiche_end
dol_get_fiche_end($notab=0)
Return tab footer of a card.
Definition: functions.lib.php:2018
ExtraFields
Class to manage standard extra fields.
Definition: extrafields.class.php:39
Form
Class to manage generation of HTML components Only common components must be here.
Definition: html.form.class.php:52
setEventMessages
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='')
Set event messages in dol_events session object.
Definition: functions.lib.php:8137
llxHeader
if(!defined('NOREQUIRESOC')) if(!defined('NOREQUIRETRAN')) if(!defined('NOCSRFCHECK')) if(!defined('NOTOKENRENEWAL')) if(!defined('NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined('NOREQUIREAJAX')) llxHeader()
Empty header.
Definition: wrapper.php:59
moPrepareHead
moPrepareHead($object)
Prepare array of tabs for Mo.
Definition: mrp_mo.lib.php:30