dolibarr 21.0.0-alpha
box_propales.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2003-2007 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3 * Copyright (C) 2004-2007 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2005-2009 Regis Houssin <regis.houssin@inodbox.com>
5 * Copyright (C) 2015-2021 Frederic France <frederic.france@netlogic.fr>
6 * Copyright (C) 2020 Pierre Ardoin <mapiolca@me.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <https://www.gnu.org/licenses/>.
20 */
21
28include_once DOL_DOCUMENT_ROOT.'/core/boxes/modules_boxes.php';
29
30
35{
36 public $boxcode = "lastpropals";
37 public $boximg = "object_propal";
38 public $boxlabel = "BoxLastProposals";
39 public $depends = array("propal"); // conf->propal->enabled
40
47 public function __construct($db, $param)
48 {
49 global $user;
50
51 $this->db = $db;
52
53 $this->hidden = !($user->hasRight('propal', 'read'));
54 }
55
62 public function loadBox($max = 5)
63 {
64 global $user, $langs, $conf;
65
66 $this->max = $max;
67
68 include_once DOL_DOCUMENT_ROOT.'/comm/propal/class/propal.class.php';
69 include_once DOL_DOCUMENT_ROOT.'/societe/class/societe.class.php';
70 $propalstatic = new Propal($this->db);
71 $societestatic = new Societe($this->db);
72
73 $text = $langs->trans("BoxTitleLast".(getDolGlobalString('MAIN_LASTBOX_ON_OBJECT_DATE') ? "" : "Modified")."Propals", $max);
74 $this->info_box_head = array(
75 'text' => $text.'<a class="paddingleft" href="'.DOL_URL_ROOT.'/comm/propal/list.php?sortfield=p.tms&sortorder=DESC"><span class="badge">...</span></a>'
76 );
77
78 if ($user->hasRight('propal', 'lire')) {
79 $sql = "SELECT s.rowid as socid, s.nom as name, s.name_alias";
80 $sql .= ", s.code_client, s.code_compta, s.client";
81 $sql .= ", s.logo, s.email, s.entity";
82 $sql .= ", p.rowid, p.ref, p.fk_statut as status, p.datep as dp, p.datec, p.fin_validite, p.date_cloture, p.total_ht, p.total_tva, p.total_ttc, p.tms";
83 $sql .= " FROM ".MAIN_DB_PREFIX."propal as p, ".MAIN_DB_PREFIX."societe as s";
84 if (!$user->hasRight('societe', 'client', 'voir')) {
85 $sql .= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
86 }
87 $sql .= " WHERE p.fk_soc = s.rowid";
88 $sql .= " AND p.entity IN (".getEntity('propal').")";
89 if (!$user->hasRight('societe', 'client', 'voir')) {
90 $sql .= " AND s.rowid = sc.fk_soc AND sc.fk_user = ".((int) $user->id);
91 }
92 if ($user->socid) {
93 $sql .= " AND s.rowid = ".((int) $user->socid);
94 }
95 if (getDolGlobalString('MAIN_LASTBOX_ON_OBJECT_DATE')) {
96 $sql .= " ORDER BY p.datep DESC, p.ref DESC ";
97 } else {
98 $sql .= " ORDER BY p.tms DESC, p.ref DESC ";
99 }
100 $sql .= $this->db->plimit($max, 0);
101
102 $result = $this->db->query($sql);
103 if ($result) {
104 $num = $this->db->num_rows($result);
105 $now = dol_now();
106
107 $line = 0;
108
109 while ($line < $num) {
110 $objp = $this->db->fetch_object($result);
111 $date = $this->db->jdate($objp->dp);
112 $datec = $this->db->jdate($objp->datec);
113 $datem = $this->db->jdate($objp->tms);
114 $dateterm = $this->db->jdate($objp->fin_validite);
115 $dateclose = $this->db->jdate($objp->date_cloture);
116
117 $propalstatic->id = $objp->rowid;
118 $propalstatic->ref = $objp->ref;
119 $propalstatic->total_ht = $objp->total_ht;
120 $propalstatic->total_tva = $objp->total_tva;
121 $propalstatic->total_ttc = $objp->total_ttc;
122 $propalstatic->statut = $objp->status;
123 $propalstatic->status = $objp->status;
124 $propalstatic->date = $date;
125
126 $societestatic->id = $objp->socid;
127 $societestatic->name = $objp->name;
128 //$societestatic->name_alias = $objp->name_alias;
129 $societestatic->code_client = $objp->code_client;
130 $societestatic->code_compta = $objp->code_compta;
131 $societestatic->client = $objp->client;
132 $societestatic->logo = $objp->logo;
133 $societestatic->email = $objp->email;
134 $societestatic->entity = $objp->entity;
135
136 $late = '';
137 if ($objp->status == 1 && $dateterm < ($now - $conf->propal->cloture->warning_delay)) {
138 $late = img_warning($langs->trans("Late"));
139 }
140
141 $this->info_box_contents[$line][] = array(
142 'td' => 'class="nowraponall"',
143 'text' => $propalstatic->getNomUrl(1),
144 'text2'=> $late,
145 'asis' => 1,
146 );
147
148 $this->info_box_contents[$line][] = array(
149 'td' => 'class="tdoverflowmax150 maxwidth150onsmartphone"',
150 'text' => $societestatic->getNomUrl(1),
151 'asis' => 1,
152 );
153
154 $this->info_box_contents[$line][] = array(
155 'td' => 'class="nowraponall right amount"',
156 'text' => price($objp->total_ht, 0, $langs, 0, -1, -1, $conf->currency),
157 );
158
159 $this->info_box_contents[$line][] = array(
160 'td' => 'class="center nowraponall" title="'.dol_escape_htmltag($langs->trans("DateModification").': '.dol_print_date($datem, 'dayhour', 'tzuserrel')).'"',
161 'text' => dol_print_date($datem, 'day', 'tzuserrel'),
162 );
163
164 $this->info_box_contents[$line][] = array(
165 'td' => 'class="right" width="18"',
166 'text' => $propalstatic->LibStatut($objp->status, 3),
167 );
168
169 $line++;
170 }
171
172 if ($num == 0) {
173 $this->info_box_contents[$line][0] = array(
174 'td' => 'class="center"',
175 'text'=>$langs->trans("NoRecordedProposals"),
176 );
177 }
178
179 $this->db->free($result);
180 } else {
181 $this->info_box_contents[0][0] = array(
182 'td' => '',
183 'maxlength'=>500,
184 'text' => ($this->db->error().' sql='.$sql),
185 );
186 }
187 } else {
188 $this->info_box_contents[0][0] = array(
189 'td' => 'class="nohover left"',
190 'text' => '<span class="opacitymedium">'.$langs->trans("ReadPermissionNotAllowed").'</span>'
191 );
192 }
193 }
194
203 public function showBox($head = null, $contents = null, $nooutput = 0)
204 {
205 return parent::showBox($this->info_box_head, $this->info_box_contents, $nooutput);
206 }
207}
Class ModeleBoxes.
Class to manage proposals.
Class to manage third parties objects (customers, suppliers, prospects...)
Class to manage the box to show last proposals.
loadBox($max=5)
Load data into info_box_contents array to show array later.
__construct($db, $param)
Constructor.
showBox($head=null, $contents=null, $nooutput=0)
Method to show box.
img_warning($titlealt='default', $moreatt='', $morecss='pictowarning')
Show warning logo.
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.
dol_now($mode='auto')
Return date for now.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0, $cleanalsojavascript=0)
Returns text escaped for inclusion in HTML alt or title or value tags, or into values of HTML input f...