dolibarr  16.0.1
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 
28 include_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 
44  public $db;
45 
46  public $param;
47 
48  public $info_box_head = array();
49  public $info_box_contents = array();
50 
51 
58  public function __construct($db, $param)
59  {
60  global $user;
61 
62  $this->db = $db;
63 
64  $this->hidden = empty($user->rights->propale->lire);
65  }
66 
73  public function loadBox($max = 5)
74  {
75  global $user, $langs, $conf;
76 
77  $this->max = $max;
78 
79  include_once DOL_DOCUMENT_ROOT.'/comm/propal/class/propal.class.php';
80  include_once DOL_DOCUMENT_ROOT.'/societe/class/societe.class.php';
81  $propalstatic = new Propal($this->db);
82  $societestatic = new Societe($this->db);
83 
84  $this->info_box_head = array('text' => $langs->trans("BoxTitleLast".(!empty($conf->global->MAIN_LASTBOX_ON_OBJECT_DATE) ? "" : "Modified")."Propals", $max));
85 
86  if ($user->rights->propale->lire) {
87  $sql = "SELECT s.rowid as socid, s.nom as name, s.name_alias";
88  $sql .= ", s.code_client, s.code_compta, s.client";
89  $sql .= ", s.logo, s.email, s.entity";
90  $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";
91  $sql .= " FROM ".MAIN_DB_PREFIX."societe as s";
92  $sql .= ", ".MAIN_DB_PREFIX."propal as p";
93  if (empty($user->rights->societe->client->voir) && !$user->socid) {
94  $sql .= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
95  }
96  $sql .= " WHERE p.fk_soc = s.rowid";
97  $sql .= " AND p.entity IN (".getEntity('propal').")";
98  if (empty($user->rights->societe->client->voir) && !$user->socid) {
99  $sql .= " AND s.rowid = sc.fk_soc AND sc.fk_user = ".((int) $user->id);
100  }
101  if ($user->socid) {
102  $sql .= " AND s.rowid = ".((int) $user->socid);
103  }
104  if (!empty($conf->global->MAIN_LASTBOX_ON_OBJECT_DATE)) {
105  $sql .= " ORDER BY p.datep DESC, p.ref DESC ";
106  } else {
107  $sql .= " ORDER BY p.tms DESC, p.ref DESC ";
108  }
109  $sql .= $this->db->plimit($max, 0);
110 
111  $result = $this->db->query($sql);
112  if ($result) {
113  $num = $this->db->num_rows($result);
114  $now = dol_now();
115 
116  $line = 0;
117 
118  while ($line < $num) {
119  $objp = $this->db->fetch_object($result);
120  $date = $this->db->jdate($objp->dp);
121  $datec = $this->db->jdate($objp->datec);
122  $datem = $this->db->jdate($objp->tms);
123  $dateterm = $this->db->jdate($objp->fin_validite);
124  $dateclose = $this->db->jdate($objp->date_cloture);
125 
126  $propalstatic->id = $objp->rowid;
127  $propalstatic->ref = $objp->ref;
128  $propalstatic->total_ht = $objp->total_ht;
129  $propalstatic->total_tva = $objp->total_tva;
130  $propalstatic->total_ttc = $objp->total_ttc;
131  $propalstatic->statut = $objp->status;
132  $propalstatic->status = $objp->status;
133  $propalstatic->date = $date;
134 
135  $societestatic->id = $objp->socid;
136  $societestatic->name = $objp->name;
137  //$societestatic->name_alias = $objp->name_alias;
138  $societestatic->code_client = $objp->code_client;
139  $societestatic->code_compta = $objp->code_compta;
140  $societestatic->client = $objp->client;
141  $societestatic->logo = $objp->logo;
142  $societestatic->email = $objp->email;
143  $societestatic->entity = $objp->entity;
144 
145  $late = '';
146  if ($objp->status == 1 && $dateterm < ($now - $conf->propal->cloture->warning_delay)) {
147  $late = img_warning($langs->trans("Late"));
148  }
149 
150  $this->info_box_contents[$line][] = array(
151  'td' => 'class="nowraponall"',
152  'text' => $propalstatic->getNomUrl(1),
153  'text2'=> $late,
154  'asis' => 1,
155  );
156 
157  $this->info_box_contents[$line][] = array(
158  'td' => 'class="tdoverflowmax150 maxwidth150onsmartphone"',
159  'text' => $societestatic->getNomUrl(1),
160  'asis' => 1,
161  );
162 
163  $this->info_box_contents[$line][] = array(
164  'td' => 'class="nowraponall right amount"',
165  'text' => price($objp->total_ht, 0, $langs, 0, -1, -1, $conf->currency),
166  );
167 
168  $this->info_box_contents[$line][] = array(
169  'td' => 'class="center nowraponall" title="'.dol_escape_htmltag($langs->trans("DateModification").': '.dol_print_date($datem, 'dayhour', 'tzuserrel')).'"',
170  'text' => dol_print_date($datem, 'day', 'tzuserrel'),
171  );
172 
173  $this->info_box_contents[$line][] = array(
174  'td' => 'class="right" width="18"',
175  'text' => $propalstatic->LibStatut($objp->status, 3),
176  );
177 
178  $line++;
179  }
180 
181  if ($num == 0) {
182  $this->info_box_contents[$line][0] = array(
183  'td' => 'class="center"',
184  'text'=>$langs->trans("NoRecordedProposals"),
185  );
186  }
187 
188  $this->db->free($result);
189  } else {
190  $this->info_box_contents[0][0] = array(
191  'td' => '',
192  'maxlength'=>500,
193  'text' => ($this->db->error().' sql='.$sql),
194  );
195  }
196  } else {
197  $this->info_box_contents[0][0] = array(
198  'td' => 'class="nohover opacitymedium left"',
199  'text' => $langs->trans("ReadPermissionNotAllowed")
200  );
201  }
202  }
203 
212  public function showBox($head = null, $contents = null, $nooutput = 0)
213  {
214  return parent::showBox($this->info_box_head, $this->info_box_contents, $nooutput);
215  }
216 }
$conf db
API class for accounts.
Definition: inc.php:41
dol_now($mode= 'auto')
Return date for now.
Class to manage the box to show last proposals.
Class ModeleBoxes.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags= '', $escapeonlyhtmltags=0)
Returns text escaped for inclusion in HTML alt or title tags, or into values of HTML input fields...
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...
Class to manage third parties objects (customers, suppliers, prospects...)
dol_print_date($time, $format= '', $tzoutput= 'auto', $outputlangs= '', $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
loadBox($max=5)
Load data into info_box_contents array to show array later.
__construct($db, $param)
Constructor.
Class to manage proposals.