dolibarr 21.0.0-alpha
box_factures.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2003-2007 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3 * Copyright (C) 2004-2009 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2005-2009 Regis Houssin <regis.houssin@inodbox.com>
5 * Copyright (C) 2015 Frederic France <frederic.france@free.fr>
6 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.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
27include_once DOL_DOCUMENT_ROOT.'/core/boxes/modules_boxes.php';
28
33{
34 public $boxcode = "lastcustomerbills";
35 public $boximg = "object_bill";
36 public $boxlabel = "BoxLastCustomerBills";
37 public $depends = array("facture");
38
45 public function __construct($db, $param)
46 {
47 global $user;
48
49 $this->db = $db;
50
51 $this->hidden = !$user->hasRight('facture', 'lire');
52 $this->urltoaddentry = DOL_URL_ROOT.'/compta/facture/card.php?action=create';
53 $this->msgNoRecords = 'NoRecordedInvoices';
54 }
55
62 public function loadBox($max = 5)
63 {
64 global $conf, $user, $langs;
65
66 $this->max = $max;
67
68 include_once DOL_DOCUMENT_ROOT.'/compta/facture/class/facture.class.php';
69 include_once DOL_DOCUMENT_ROOT.'/societe/class/societe.class.php';
70
71 $facturestatic = new Facture($this->db);
72 $societestatic = new Societe($this->db);
73
74 $langs->load("bills");
75
76 $text = $langs->trans("BoxTitleLast".(getDolGlobalString('MAIN_LASTBOX_ON_OBJECT_DATE') ? "" : "Modified")."CustomerBills", $max);
77 $this->info_box_head = array(
78 'text' => $text.'<a class="paddingleft" href="'.DOL_URL_ROOT.'/compta/facture/list.php?sortfield=f.tms&sortorder=DESC"><span class="badge">...</span></a>',
79 'limit' => dol_strlen($text)
80 );
81
82 if ($user->hasRight('facture', 'lire')) {
83 $sql = "SELECT f.rowid as facid";
84 $sql .= ", f.ref, f.type, f.total_ht";
85 $sql .= ", f.total_tva";
86 $sql .= ", f.total_ttc";
87 $sql .= ", f.datef as date";
88 $sql .= ", f.paye, f.fk_statut as status, f.datec, f.tms";
89 $sql .= ", f.date_lim_reglement as datelimite";
90 $sql .= ", s.rowid as socid, s.nom as name, s.name_alias";
91 $sql .= ", s.code_client, s.code_compta, s.client";
92 $sql .= ", s.logo, s.email, s.entity";
93 $sql .= ", s.tva_intra, s.siren as idprof1, s.siret as idprof2, s.ape as idprof3, s.idprof4, s.idprof5, s.idprof6";
94 $sql .= ", SUM(pf.amount) as am";
95 $sql .= " FROM ".MAIN_DB_PREFIX."facture as f";
96 $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."paiement_facture as pf ON f.rowid = pf.fk_facture,";
97 $sql .= " ".MAIN_DB_PREFIX."societe as s";
98 if (!$user->hasRight('societe', 'client', 'voir')) {
99 $sql .= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
100 }
101 $sql .= " WHERE f.fk_soc = s.rowid";
102 $sql .= " AND f.fk_statut > 0";
103 $sql .= " AND f.entity IN (".getEntity('invoice').")";
104 if (!$user->hasRight('societe', 'client', 'voir')) {
105 $sql .= " AND s.rowid = sc.fk_soc AND sc.fk_user = ".((int) $user->id);
106 }
107 if ($user->socid) {
108 $sql .= " AND s.rowid = ".((int) $user->socid);
109 }
110 $sql .= " GROUP BY s.rowid, s.nom, s.name_alias, s.code_client, s.code_compta, s.client, s.logo, s.email, s.entity, s.tva_intra, s.siren, s.siret, s.ape, s.idprof4, s.idprof5, s.idprof6,";
111 $sql .= " f.rowid, f.ref, f.type, f.total_ht, f.total_tva, f.total_ttc, f.datef, f.paye, f.fk_statut, f.datec, f.tms, f.date_lim_reglement";
112 if (getDolGlobalString('MAIN_LASTBOX_ON_OBJECT_DATE')) {
113 $sql .= " ORDER BY f.datef DESC, f.ref DESC ";
114 } else {
115 $sql .= " ORDER BY f.tms DESC, f.ref DESC ";
116 }
117 $sql .= $this->db->plimit($max, 0);
118
119 $result = $this->db->query($sql);
120 if ($result) {
121 $num = $this->db->num_rows($result);
122 $now = dol_now();
123
124 $line = 0;
125 $l_due_date = $langs->trans('Late').' ('.$langs->trans('DateDue').': %s)';
126
127 while ($line < $num) {
128 $objp = $this->db->fetch_object($result);
129
130 $datelimite = $this->db->jdate($objp->datelimite);
131 $datem = $this->db->jdate($objp->tms);
132
133 $facturestatic->id = $objp->facid;
134 $facturestatic->ref = $objp->ref;
135 $facturestatic->type = $objp->type;
136 $facturestatic->total_ht = $objp->total_ht;
137 $facturestatic->total_tva = $objp->total_tva;
138 $facturestatic->total_ttc = $objp->total_ttc;
139 $facturestatic->statut = $objp->status;
140 $facturestatic->status = $objp->status;
141 $facturestatic->date = $this->db->jdate($objp->date);
142 $facturestatic->date_lim_reglement = $this->db->jdate($objp->datelimite);
143
144 $facturestatic->paye = $objp->paye;
145 $facturestatic->alreadypaid = $objp->am;
146
147 $societestatic->id = $objp->socid;
148 $societestatic->name = $objp->name;
149 //$societestatic->name_alias = $objp->name_alias;
150 $societestatic->code_client = $objp->code_client;
151 $societestatic->code_compta = $objp->code_compta;
152 $societestatic->code_compta_client = $objp->code_compta;
153 $societestatic->client = $objp->client;
154 $societestatic->logo = $objp->logo;
155 $societestatic->email = $objp->email;
156 $societestatic->entity = $objp->entity;
157 $societestatic->tva_intra = $objp->tva_intra;
158 $societestatic->idprof1 = $objp->idprof1;
159 $societestatic->idprof2 = $objp->idprof2;
160 $societestatic->idprof3 = $objp->idprof3;
161 $societestatic->idprof4 = $objp->idprof4;
162 $societestatic->idprof5 = $objp->idprof5;
163 $societestatic->idprof6 = $objp->idprof6;
164
165 $late = '';
166 if ($facturestatic->hasDelay()) {
167 // @phan-suppress-next-line PhanPluginPrintfVariableFormatString
168 $late = img_warning(sprintf($l_due_date, dol_print_date($datelimite, 'day', 'tzuserrel')));
169 }
170
171 $this->info_box_contents[$line][] = array(
172 'td' => 'class="nowraponall"',
173 'text' => $facturestatic->getNomUrl(1),
174 'text2' => $late,
175 'asis' => 1,
176 );
177
178 $this->info_box_contents[$line][] = array(
179 'td' => 'class="tdoverflowmax200"',
180 'text' => $societestatic->getNomUrl(1, '', 40),
181 'asis' => 1,
182 );
183
184 $this->info_box_contents[$line][] = array(
185 'td' => 'class="right nowraponall amount"',
186 'text' => price($objp->total_ht, 0, $langs, 0, -1, -1, $conf->currency),
187 );
188
189 $this->info_box_contents[$line][] = array(
190 'td' => 'class="center nowraponall" title="'.dol_escape_htmltag($langs->trans("DateModification").': '.dol_print_date($datem, 'dayhour', 'tzuserrel')).'"',
191 'text' => dol_print_date($datem, 'day', 'tzuserrel'),
192 );
193
194 $this->info_box_contents[$line][] = array(
195 'td' => 'class="right" width="18"',
196 'text' => $facturestatic->LibStatut($objp->paye, $objp->status, 3, $objp->am),
197 );
198
199 $line++;
200 }
201
202 // if ($num == 0) {
203 // $this->info_box_contents[$line][0] = array(
204 // 'td' => 'class="center"',
205 // 'text' => '<span class="opacitymedium">'.$langs->trans("NoRecordedInvoices").'</span>',
206 // );
207 // }
208
209 $this->db->free($result);
210 } else {
211 $this->info_box_contents[0][0] = array(
212 'td' => '',
213 'maxlength' => 500,
214 'text' => ($this->db->error().' sql='.$sql),
215 );
216 }
217 } else {
218 $this->info_box_contents[0][0] = array(
219 'td' => 'class="nohover left"',
220 'text' => '<span class="opacitymedium">'.$langs->trans("ReadPermissionNotAllowed").'</span>'
221 );
222 }
223 }
224
225
226
235 public function showBox($head = null, $contents = null, $nooutput = 0)
236 {
237 return parent::showBox($this->info_box_head, $this->info_box_contents, $nooutput);
238 }
239}
Class to manage invoices.
Class ModeleBoxes.
Class to manage third parties objects (customers, suppliers, prospects...)
Class to manage the box to show last invoices.
showBox($head=null, $contents=null, $nooutput=0)
Method to show box.
__construct($db, $param)
Constructor.
loadBox($max=5)
Load data into info_box_contents array to show array later.
img_warning($titlealt='default', $moreatt='', $morecss='pictowarning')
Show warning logo.
dol_strlen($string, $stringencoding='UTF-8')
Make a strlen call.
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 a 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...