dolibarr 21.0.0-beta
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) 2004 Eric Seigne <eric.seigne@ryxeo.com>
5 * Copyright (C) 2005-2012 Regis Houssin <regis.houssin@inodbox.com>
6 * Copyright (C) 2013 Florian Henry <florian.henry@open-concept.pro>
7 * Copyright (C) 2017 Ferran Marcet <fmarcet@2byte.es>
8 * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 3 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program. If not, see <https://www.gnu.org/licenses/>.
22 */
23
30// Load Dolibarr environment
31require '../../main.inc.php';
32require_once DOL_DOCUMENT_ROOT.'/comm/propal/class/propal.class.php';
33require_once DOL_DOCUMENT_ROOT.'/core/lib/propal.lib.php';
34if (isModEnabled('project')) {
35 require_once DOL_DOCUMENT_ROOT.'/projet/class/project.class.php';
36}
37
46// Load translation files required by the page
47$langs->loadLangs(array('propal', 'compta', 'bills', 'companies'));
48
49$id = GETPOSTINT('id');
50$ref = GETPOST('ref', 'alpha');
51$action = GETPOST('action', 'aZ09');
52
53$now = dol_now();
54
55$object = new Propal($db);
56if ($id > 0 || !empty($ref)) {
57 $object->fetch($id, $ref);
58}
59
60// Security check
61$socid = '';
62if ($user->socid > 0) {
63 $socid = $user->socid;
64}
65
66// Initialize a technical object to manage hooks of page. Note that conf->hooks_modules contains an array of hook context
67$hookmanager->initHooks(array('propalnote'));
68
69restrictedArea($user, 'propal', $object->id, 'propal');
70
71$usercancreate = $user->hasRight("propal", "creer");
72
73
74/*
75 * Actions
76 */
77
78$permissionnote = $user->hasRight('propal', 'creer'); // Used by the include of actions_setnotes.inc.php
79
80$parameters = array();
81$reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
82if ($reshook < 0) {
83 setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
84}
85if (empty($reshook)) {
86 include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php'; // Must be 'include', not 'include_once'
87}
88
89
90
91/*
92 * View
93 */
94
95$form = new Form($db);
96
97$title = $object->ref." - ".$langs->trans('Notes');
98$help_url = 'EN:Commercial_Proposals|FR:Proposition_commerciale|ES:Presupuestos';
99
100llxHeader('', $title, $help_url);
101
102if ($object->id > 0) {
103 if ($object->fetch_thirdparty() > 0) {
104 $head = propal_prepare_head($object);
105 print dol_get_fiche_head($head, 'note', $langs->trans('Proposal'), -1, 'propal');
106
107 $cssclass = 'titlefield';
108 //if ($action == 'editnote_public') $cssclass='titlefieldcreate';
109 //if ($action == 'editnote_private') $cssclass='titlefieldcreate';
110
111
112 // Proposal card
113
114 $linkback = '<a href="'.DOL_URL_ROOT.'/comm/propal/list.php?restore_lastsearch_values=1'.(!empty($socid) ? '&socid='.$socid : '').'">'.$langs->trans("BackToList").'</a>';
115
116
117 $morehtmlref = '<div class="refidno">';
118 // Ref customer
119 $morehtmlref .= $form->editfieldkey("RefCustomer", 'ref_client', $object->ref_client, $object, 0, 'string', '', 0, 1);
120 $morehtmlref .= $form->editfieldval("RefCustomer", 'ref_client', $object->ref_client, $object, 0, 'string', '', null, null, '', 1);
121 // Thirdparty
122 $morehtmlref .= '<br>'.$object->thirdparty->getNomUrl(1);
123 // Project
124 if (isModEnabled('project')) {
125 $langs->load("projects");
126 $morehtmlref .= '<br>';
127 if (0) {
128 $morehtmlref .= img_picto($langs->trans("Project"), 'project', 'class="pictofixedwidth"');
129 if ($action != 'classify') {
130 $morehtmlref .= '<a class="editfielda" href="'.$_SERVER['PHP_SELF'].'?action=classify&token='.newToken().'&id='.$object->id.'">'.img_edit($langs->transnoentitiesnoconv('SetProject')).'</a> ';
131 }
132 $morehtmlref .= $form->form_project($_SERVER['PHP_SELF'].'?id='.$object->id, $object->socid, $object->fk_project, ($action == 'classify' ? 'projectid' : 'none'), 0, 0, 0, 1, '', 'maxwidth300');
133 } else {
134 if (!empty($object->fk_project)) {
135 $proj = new Project($db);
136 $proj->fetch($object->fk_project);
137 $morehtmlref .= $proj->getNomUrl(1);
138 if ($proj->title) {
139 $morehtmlref .= '<span class="opacitymedium"> - '.dol_escape_htmltag($proj->title).'</span>';
140 }
141 }
142 }
143 }
144 $morehtmlref .= '</div>';
145
146 dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'ref', $morehtmlref);
147
148 print '<div class="fichecenter">';
149 print '<div class="underbanner clearboth"></div>';
150
151 $cssclass = "titlefield";
152 include DOL_DOCUMENT_ROOT.'/core/tpl/notes.tpl.php';
153
154 print '</div>';
155
156 print dol_get_fiche_end();
157 }
158}
159
160// End of page
161llxFooter();
162$db->close();
$id
Definition account.php:48
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:66
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
Definition wrapper.php:71
Class to manage generation of HTML components Only common components must be here.
Class to manage projects.
Class to manage proposals.
llxFooter()
Footer empty.
Definition document.php:107
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
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.
dol_now($mode='auto')
Return date for now.
newToken()
Return the value of token currently saved into session with name 'newtoken'.
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 edit/modify fiche.
propal_prepare_head($object)
Prepare array with list of tabs.
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.