dolibarr  13.0.2
note.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3  * Copyright (C) 2004-2016 Laurent Destailleur <eldy@users.sourceforge.net>
4  * Copyright (C) 2005-2012 Regis Houssin <regis.houssin@inodbox.com>
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 require '../main.inc.php';
28 require_once DOL_DOCUMENT_ROOT.'/core/lib/contract.lib.php';
29 require_once DOL_DOCUMENT_ROOT.'/contrat/class/contrat.class.php';
30 if (!empty($conf->projet->enabled)) {
31  require_once DOL_DOCUMENT_ROOT.'/projet/class/project.class.php';
32 }
33 
34 // Load translation files required by the page
35 $langs->loadLangs(array('companies', 'contracts'));
36 
37 $action = GETPOST('action', 'aZ09');
38 $confirm = GETPOST('confirm', 'alpha');
39 $socid = GETPOST('socid', 'int');
40 $id = GETPOST('id', 'int');
41 $ref = GETPOST('ref', 'alpha');
42 
43 // Security check
44 if ($user->socid) $socid = $user->socid;
45 $result = restrictedArea($user, 'contrat', $id);
46 
47 $object = new Contrat($db);
48 $object->fetch($id, $ref);
49 
50 $permissionnote = $user->rights->contrat->creer; // Used by the include of actions_setnotes.inc.php
51 
52 // Initialize technical object to manage hooks of page. Note that conf->hooks_modules contains array of hook context
53 $hookmanager->initHooks(array('contractcard', 'globalcard'));
54 
55 
56 
57 /*
58  * Actions
59  */
60 
61 include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php'; // Must be include, not includ_once
62 
63 
64 
65 /*
66  * View
67  */
68 
69 llxHeader('', $langs->trans("Contract"), "");
70 
71 $form = new Form($db);
72 
73 if ($id > 0 || !empty($ref))
74 {
75  $object->fetch_thirdparty();
76 
77  $head = contract_prepare_head($object);
78 
79  $hselected = 2;
80 
81  print dol_get_fiche_head($head, 'note', $langs->trans("Contract"), -1, 'contract');
82 
83  // Contract card
84 
85  $linkback = '<a href="'.DOL_URL_ROOT.'/contrat/list.php?restore_lastsearch_values=1'.(!empty($socid) ? '&socid='.$socid : '').'">'.$langs->trans("BackToList").'</a>';
86 
87 
88  $morehtmlref = '';
89  //if (! empty($modCodeContract->code_auto)) {
90  $morehtmlref .= $object->ref;
91  /*} else {
92  $morehtmlref.=$form->editfieldkey("",'ref',$object->ref,0,'string','',0,3);
93  $morehtmlref.=$form->editfieldval("",'ref',$object->ref,0,'string','',0,2);
94  }*/
95 
96  $morehtmlref .= '<div class="refidno">';
97  // Ref customer
98  $morehtmlref .= $form->editfieldkey("RefCustomer", 'ref_customer', $object->ref_customer, $object, 0, 'string', '', 0, 1);
99  $morehtmlref .= $form->editfieldval("RefCustomer", 'ref_customer', $object->ref_customer, $object, 0, 'string', '', null, null, '', 1, 'getFormatedCustomerRef');
100  // Ref supplier
101  $morehtmlref .= '<br>';
102  $morehtmlref .= $form->editfieldkey("RefSupplier", 'ref_supplier', $object->ref_supplier, $object, 0, 'string', '', 0, 1);
103  $morehtmlref .= $form->editfieldval("RefSupplier", 'ref_supplier', $object->ref_supplier, $object, 0, 'string', '', null, null, '', 1, 'getFormatedSupplierRef');
104  // Thirdparty
105  $morehtmlref .= '<br>'.$langs->trans('ThirdParty').' : '.$object->thirdparty->getNomUrl(1);
106  // Project
107  if (!empty($conf->projet->enabled))
108  {
109  $langs->load("projects");
110  $morehtmlref .= '<br>'.$langs->trans('Project').' ';
111  if ($user->rights->contrat->creer)
112  {
113  if ($action != 'classify')
114  //$morehtmlref.='<a class="editfielda" href="' . $_SERVER['PHP_SELF'] . '?action=classify&amp;id=' . $object->id . '">' . img_edit($langs->transnoentitiesnoconv('SetProject')) . '</a> : ';
115  $morehtmlref .= ' : ';
116  if ($action == 'classify') {
117  //$morehtmlref.=$form->form_project($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->socid, $object->fk_project, 'projectid', 0, 0, 1, 1);
118  $morehtmlref .= '<form method="post" action="'.$_SERVER['PHP_SELF'].'?id='.$object->id.'">';
119  $morehtmlref .= '<input type="hidden" name="action" value="classin">';
120  $morehtmlref .= '<input type="hidden" name="token" value="'.newToken().'">';
121  $morehtmlref .= $formproject->select_projects($object->thirdparty->id, $object->fk_project, 'projectid', $maxlength, 0, 1, 0, 1, 0, 0, '', 1);
122  $morehtmlref .= '<input type="submit" class="button valignmiddle" value="'.$langs->trans("Modify").'">';
123  $morehtmlref .= '</form>';
124  } else {
125  $morehtmlref .= $form->form_project($_SERVER['PHP_SELF'].'?id='.$object->id, $object->thirdparty->id, $object->fk_project, 'none', 0, 0, 0, 1);
126  }
127  } else {
128  if (!empty($object->fk_project)) {
129  $proj = new Project($db);
130  $proj->fetch($object->fk_project);
131  $morehtmlref .= '<a href="'.DOL_URL_ROOT.'/projet/card.php?id='.$object->fk_project.'" title="'.$langs->trans('ShowProject').'">';
132  $morehtmlref .= $proj->ref;
133  $morehtmlref .= '</a>';
134  } else {
135  $morehtmlref .= '';
136  }
137  }
138  }
139  $morehtmlref .= '</div>';
140 
141 
142  dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'none', $morehtmlref);
143 
144 
145  print '<div class="fichecenter">';
146  print '<div class="underbanner clearboth"></div>';
147 
148  print '<table class="border centpercent tableforfield">';
149 
150 
151  // Ligne info remises tiers
152  print '<tr><td class="titlefield">'.$langs->trans('Discount').'</td><td colspan="3">';
153  if ($object->thirdparty->remise_percent) print $langs->trans("CompanyHasRelativeDiscount", $object->thirdparty->remise_percent);
154  else print $langs->trans("CompanyHasNoRelativeDiscount");
155  $absolute_discount = $object->thirdparty->getAvailableDiscounts();
156  print '. ';
157  if ($absolute_discount) print $langs->trans("CompanyHasAbsoluteDiscount", price($absolute_discount), $langs->trans("Currency".$conf->currency));
158  else print $langs->trans("CompanyHasNoAbsoluteDiscount");
159  print '.';
160  print '</td></tr>';
161 
162  // Date
163  print '<tr>';
164  print '<td class="titlefield">';
165  print $form->editfieldkey("Date", 'date_contrat', $object->date_contrat, $object, 0);
166  print '</td><td>';
167  print $form->editfieldval("Date", 'date_contrat', $object->date_contrat, $object, 0, 'datehourpicker');
168  print '</td>';
169  print '</tr>';
170 
171  print "</table>";
172 
173  print '</div>';
174 
175  //print '<br>';
176 
177  include DOL_DOCUMENT_ROOT.'/core/tpl/notes.tpl.php';
178 
180 }
181 
182 
183 llxFooter();
184 $db->close();
GETPOST($paramname, $check= 'alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
Class to manage contracts.
contract_prepare_head(Contrat $object)
Prepare array with list of tabs.
price($amount, $form=0, $outlangs= '', $trunc=1, $rounding=-1, $forcerounding=-1, $currency_code= '')
Function to format a value into an amount for visual output Function used into PDF and HTML pages...
llxHeader()
Empty header.
Definition: wrapper.php:45
Class to manage generation of HTML components Only common components must be here.
Class to manage projects.
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.
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