dolibarr  17.0.4
info.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2005-2009 Regis Houssin <regis.houssin@inodbox.com>
3  * Copyright (C) 2009-2016 Laurent Destailleur <eldy@users.sourceforge.net>
4  * Copyright (C) 2011 Juanjo Menent <jmenent@2byte.es>
5  * Copyright (C) 2017 Ferran Marcet <fmarcet@2byte.es>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <https://www.gnu.org/licenses/>.
19  */
20 
27 // Load Dolibarr environment
28 require '../main.inc.php';
29 require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
30 require_once DOL_DOCUMENT_ROOT.'/fichinter/class/fichinter.class.php';
31 require_once DOL_DOCUMENT_ROOT.'/core/lib/fichinter.lib.php';
32 if (isModEnabled('project')) {
33  require_once DOL_DOCUMENT_ROOT.'/projet/class/project.class.php';
34 }
35 
36 // Load translation files required by the page
37 $langs->loadLangs(array('companies', 'interventions'));
38 
39 $socid = 0;
40 $id = GETPOST('id', 'int');
41 $ref = GETPOST('ref', 'alpha');
42 
43 // Security check
44 if ($user->socid) {
45  $socid = $user->socid;
46 }
47 $result = restrictedArea($user, 'ficheinter', $id, 'fichinter');
48 
49 $object = new Fichinter($db);
50 
51 if (!$object->fetch($id, $ref) > 0) {
52  dol_print_error($db);
53  exit;
54 }
55 
56 
57 /*
58  * View
59  */
60 
61 $form = new Form($db);
62 
63 llxHeader('', $langs->trans("Intervention"));
64 
65 $object->fetch_thirdparty();
66 $object->info($object->id);
67 
68 $head = fichinter_prepare_head($object);
69 print dol_get_fiche_head($head, 'info', $langs->trans('InterventionCard'), -1, 'intervention');
70 
71 // Intervention card
72 $linkback = '<a href="'.DOL_URL_ROOT.'/fichinter/list.php?restore_lastsearch_values=1'.(!empty($socid) ? '&socid='.$socid : '').'">'.$langs->trans("BackToList").'</a>';
73 
74 
75 $morehtmlref = '<div class="refidno">';
76 // Ref customer
77 //$morehtmlref.=$form->editfieldkey("RefCustomer", 'ref_client', $object->ref_client, $object, 0, 'string', '', 0, 1);
78 //$morehtmlref.=$form->editfieldval("RefCustomer", 'ref_client', $object->ref_client, $object, 0, 'string', '', null, null, '', 1);
79 // Thirdparty
80 $morehtmlref .= $langs->trans('ThirdParty').' : '.$object->thirdparty->getNomUrl(1);
81 // Project
82 if (isModEnabled('project')) {
83  $langs->load("projects");
84  $morehtmlref .= '<br>'.$langs->trans('Project').' ';
85  if ($user->rights->commande->creer) {
86  if ($action != 'classify') {
87  //$morehtmlref.='<a class="editfielda" href="' . $_SERVER['PHP_SELF'] . '?action=classify&token='.newToken().'&id=' . $object->id . '">' . img_edit($langs->transnoentitiesnoconv('SetProject')) . '</a> : ';
88  $morehtmlref .= ' : ';
89  }
90  if ($action == 'classify') {
91  //$morehtmlref.=$form->form_project($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->socid, $object->fk_project, 'projectid', 0, 0, 1, 1);
92  $morehtmlref .= '<form method="post" action="'.$_SERVER['PHP_SELF'].'?id='.$object->id.'">';
93  $morehtmlref .= '<input type="hidden" name="action" value="classin">';
94  $morehtmlref .= '<input type="hidden" name="token" value="'.newToken().'">';
95  $morehtmlref .= $formproject->select_projects($object->socid, $object->fk_project, 'projectid', $maxlength, 0, 1, 0, 1, 0, 0, '', 1);
96  $morehtmlref .= '<input type="submit" class="button valignmiddle" value="'.$langs->trans("Modify").'">';
97  $morehtmlref .= '</form>';
98  } else {
99  $morehtmlref .= $form->form_project($_SERVER['PHP_SELF'].'?id='.$object->id, $object->socid, $object->fk_project, 'none', 0, 0, 0, 1, '', 'maxwidth300');
100  }
101  } else {
102  if (!empty($object->fk_project)) {
103  $proj = new Project($db);
104  $proj->fetch($object->fk_project);
105  $morehtmlref .= ' : '.$proj->getNomUrl(1);
106  if ($proj->title) {
107  $morehtmlref .= ' - '.$proj->title;
108  }
109  } else {
110  $morehtmlref .= '';
111  }
112  }
113 }
114 $morehtmlref .= '</div>';
115 
116 dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'ref', $morehtmlref);
117 
118 print '<div class="fichecenter">';
119 print '<div class="underbanner clearboth"></div>';
120 
121 print '<br>';
122 
123 print '<table width="100%"><tr><td>';
124 dol_print_object_info($object);
125 print '</td></tr></table>';
126 
127 print '</div>';
128 
129 print dol_get_fiche_end();
130 
131 llxFooter();
132 $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:56
llxFooter()
Empty footer.
Definition: wrapper.php:70
Class to manage interventions.
Class to manage generation of HTML components Only common components must be here.
Class to manage projects.
if($cancel &&! $id) if($action=='add' &&! $cancel) if($action=='delete') if($id) $form
Actions.
Definition: card.php:143
fichinter_prepare_head($object)
Prepare array with list of tabs.
dol_print_object_info($object, $usetable=0)
Show informations on an object TODO Move this into html.formother.
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='')
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.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
isModEnabled($module)
Is Dolibarr module enabled.
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.