dolibarr  13.0.2
box_goodcustomers.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2003-2007 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3  * Copyright (C) 2004-2010 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) 2016 Charlie Benke <charlie@patas-monkey.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 = "goodcustomers";
37  public $boximg = "object_company";
38  public $boxlabel = "BoxGoodCustomers";
39  public $depends = array("societe");
40 
44  public $db;
45 
46  public $enabled = 1;
47 
48  public $info_box_head = array();
49  public $info_box_contents = array();
50 
51 
58  public function __construct($db, $param = '')
59  {
60  global $conf, $user;
61 
62  $this->db = $db;
63 
64  // disable box for such cases
65  if (!empty($conf->global->SOCIETE_DISABLE_CUSTOMERS)) $this->enabled = 0; // disabled by this option
66  if (empty($conf->global->MAIN_BOX_ENABLE_BEST_CUSTOMERS)) $this->enabled = 0; // not enabled by default. Very slow on large database
67 
68  $this->hidden = !($user->rights->societe->lire);
69  }
70 
77  public function loadBox($max = 5)
78  {
79  global $user, $langs, $conf;
80  $langs->load("boxes");
81 
82  $this->max = $max;
83 
84  include_once DOL_DOCUMENT_ROOT.'/societe/class/societe.class.php';
85  $thirdpartystatic = new Societe($this->db);
86 
87  $this->info_box_head = array('text' => $langs->trans("BoxTitleGoodCustomers", $max));
88 
89  if ($user->rights->societe->lire)
90  {
91  $sql = "SELECT s.rowid, s.nom as name, s.logo, s.code_client, s.code_fournisseur, s.client, s.fournisseur, s.tms as datem, s.status as status,";
92  $sql .= " count(*) as nbfact, sum(".$this->db->ifsql('f.paye=1', '1', '0').") as nbfactpaye";
93  $sql .= " FROM ".MAIN_DB_PREFIX."societe as s, ".MAIN_DB_PREFIX."facture as f";
94  $sql .= ' WHERE s.entity IN ('.getEntity('societe').')';
95  $sql .= ' AND s.rowid = f.fk_soc';
96  $sql .= " GROUP BY s.rowid, s.nom, s.logo, s.code_client, s.code_fournisseur, s.client, s.fournisseur, s.tms, s.status";
97  $sql .= $this->db->order("nbfact", "DESC");
98  $sql .= $this->db->plimit($max, 0);
99 
100  dol_syslog(get_class($this)."::loadBox", LOG_DEBUG);
101  $result = $this->db->query($sql);
102  if ($result)
103  {
104  $num = $this->db->num_rows($result);
105 
106  $line = 0;
107  while ($line < $num)
108  {
109  $objp = $this->db->fetch_object($result);
110  $datem = $this->db->jdate($objp->tms);
111  $thirdpartystatic->id = $objp->rowid;
112  $thirdpartystatic->name = $objp->name;
113  $thirdpartystatic->code_client = $objp->code_client;
114  $thirdpartystatic->code_fournisseur = $objp->code_fournisseur;
115  $thirdpartystatic->client = $objp->client;
116  $thirdpartystatic->fournisseur = $objp->fournisseur;
117  $thirdpartystatic->logo = $objp->logo;
118  $nbfact = $objp->nbfact;
119  $nbimpaye = $objp->nbfact - $objp->nbfactpaye;
120 
121  $this->info_box_contents[$line][] = array(
122  'td' => '',
123  'text' => $thirdpartystatic->getNomUrl(1),
124  'asis' => 1,
125  );
126 
127  $this->info_box_contents[$line][] = array(
128  'td' => 'class="right"',
129  'text' => dol_print_date($datem, "day")
130  );
131 
132  $this->info_box_contents[$line][] = array(
133  'td' => 'class="right"',
134  'text' => $nbfact.($nbimpaye != 0 ? ' ('.$nbimpaye.')' : '')
135  );
136 
137  $this->info_box_contents[$line][] = array(
138  'td' => 'class="right" width="18"',
139  'text' => $thirdpartystatic->LibStatut($objp->status, 3)
140  );
141 
142  $line++;
143  }
144 
145  if ($num == 0) $this->info_box_contents[$line][0] = array(
146  'td' => 'class="center opacitymedium"',
147  'text'=>$langs->trans("NoRecordedCustomers")
148  );
149 
150  $this->db->free($result);
151  } else {
152  $this->info_box_contents[0][0] = array(
153  'td' => '',
154  'maxlength'=>500,
155  'text' => ($this->db->error().' sql='.$sql),
156  );
157  }
158  } else {
159  $this->info_box_contents[0][0] = array(
160  'td' => 'class="nohover opacitymedium left"',
161  'text' => $langs->trans("ReadPermissionNotAllowed")
162  );
163  }
164  }
165 
174  public function showBox($head = null, $contents = null, $nooutput = 0)
175  {
176  return parent::showBox($this->info_box_head, $this->info_box_contents, $nooutput);
177  }
178 }
Class to manage the box to show last thirdparties.
__construct($db, $param= '')
Constructor.
showBox($head=null, $contents=null, $nooutput=0)
Method to show box.
Class ModeleBoxes.
$conf db
API class for accounts.
Definition: inc.php:54
Class to manage third parties objects (customers, suppliers, prospects...)
loadBox($max=5)
Load data for box to show them later.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename= '', $restricttologhandler= '', $logcontext=null)
Write log message into outputs.
dol_print_date($time, $format= '', $tzoutput= 'auto', $outputlangs= '', $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).