1<?php
2/* Copyright (C) 2003      Rodolphe Quiedeville <rodolphe@quiedeville.org>
3 * Copyright (C) 2005-2017 Laurent Destailleur  <eldy@users.sourceforge.net>
4 * Copyright (C) 2005-2011 Regis Houssin        <regis.houssin@inodbox.com>
5 * Copyright (C) 2017 	   Nicolas Zabouri      <info@inovea-conseil.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19 */
20
21/**
22 *      \file       htdocs/core/boxes/box_services_contracts.php
23 *		\ingroup    produits,services
24 *      \brief      Widget of sells products
25 */
26
27include_once DOL_DOCUMENT_ROOT.'/core/boxes/modules_boxes.php';
28
29
30/**
31 * Class to manage the box to show last contracted products/services lines
32 */
33class box_services_contracts extends ModeleBoxes
34{
35	public $boxcode = "lastproductsincontract";
36	public $boximg = "object_product";
37	public $boxlabel = "BoxLastProductsInContract";
38	public $depends = array("service", "contrat");
39
40	/**
41	 * @var DoliDB Database handler.
42	 */
43	public $db;
44
45	public $param;
46
47	public $info_box_head = array();
48	public $info_box_contents = array();
49
50
51	/**
52	 *  Constructor
53	 *
54	 *  @param  DoliDB  $db         Database handler
55	 *  @param  string  $param      More parameters
56	 */
57	public function __construct($db, $param)
58	{
59		global $user;
60
61		$this->db = $db;
62
63		$this->hidden = !($user->rights->service->lire && $user->rights->contrat->lire);
64	}
65
66	/**
67	 *  Load data into info_box_contents array to show array later.
68	 *
69	 *  @param	int		$max        Maximum number of records to load
70	 *  @return	void
71	 */
72	public function loadBox($max = 5)
73	{
74		global $user, $langs, $conf;
75
76		$this->max = $max;
77
78		include_once DOL_DOCUMENT_ROOT.'/contrat/class/contrat.class.php';
79
80		$form = new Form($this->db);
81
82		$this->info_box_head = array('text' => $langs->trans("BoxLastProductsInContract", $max));
83
84		if ($user->rights->service->lire && $user->rights->contrat->lire)
85		{
86			$contractstatic = new Contrat($this->db);
87			$contractlinestatic = new ContratLigne($this->db);
88			$thirdpartytmp = new Societe($this->db);
89			$productstatic = new Product($this->db);
90
91			$sql = "SELECT s.nom as name, s.rowid as socid, s.email, s.client, s.fournisseur, s.code_client, s.code_fournisseur, s.code_compta, s.code_compta_fournisseur,";
92			$sql .= " c.rowid, c.ref, c.statut as contract_status, c.ref_customer, c.ref_supplier,";
93			$sql .= " cd.rowid as cdid, cd.label, cd.description, cd.tms as datem, cd.statut as contractline_status, cd.product_type as type, cd.date_fin_validite as date_line,";
94			$sql .= " p.rowid as product_id, p.ref as product_ref, p.label as product_label, p.fk_product_type as product_type, p.entity, p.tobuy, p.tosell";
95			$sql .= " FROM (".MAIN_DB_PREFIX."societe as s";
96			$sql .= " INNER JOIN ".MAIN_DB_PREFIX."contrat as c ON s.rowid = c.fk_soc";
97			$sql .= " INNER JOIN ".MAIN_DB_PREFIX."contratdet as cd ON c.rowid = cd.fk_contrat";
98			$sql .= " LEFT JOIN ".MAIN_DB_PREFIX."product as p ON cd.fk_product = p.rowid";
99			if (!$user->rights->societe->client->voir && !$user->socid) $sql .= " INNER JOIN ".MAIN_DB_PREFIX."societe_commerciaux as sc ON s.rowid = sc.fk_soc AND sc.fk_user = ".$user->id;
100			$sql .= ")";
101			$sql .= " WHERE c.entity = ".$conf->entity;
102			if ($user->socid) $sql .= " AND s.rowid = ".$user->socid;
103			$sql .= $this->db->order("c.tms", "DESC");
104			$sql .= $this->db->plimit($max, 0);
105
106			$result = $this->db->query($sql);
107			if ($result)
108			{
109				$num = $this->db->num_rows($result);
110				$now = dol_now();
111
112				$i = 0;
113
114				while ($i < $num)
115				{
116					$late = '';
117
118					$objp = $this->db->fetch_object($result);
119					$datem = $this->db->jdate($objp->datem);
120
121					$contractlinestatic->id = $objp->cdid;
122					$contractlinestatic->fk_contrat = $objp->rowid;
123					$contractlinestatic->label = $objp->label;
124					$contractlinestatic->description = $objp->description;
125					$contractlinestatic->type = $objp->type;
126					$contractlinestatic->product_id = $objp->product_id;
127					$contractlinestatic->product_ref = $objp->product_ref;
128					$contractlinestatic->product_type = $objp->product_type;
129					$contractlinestatic->statut = $objp->contractline_status;
130
131					$contractstatic->id = $objp->rowid;
132					$contractstatic->ref = $objp->ref;
133					$contractstatic->ref_customer = $objp->ref_customer;
134					$contractstatic->ref_supplier = $objp->ref_supplier;
135					$contractstatic->statut = $objp->contract_status;
136
137					$thirdpartytmp->name = $objp->name;
138					$thirdpartytmp->id = $objp->socid;
139					$thirdpartytmp->email = $objp->email;
140					$thirdpartytmp->client = $objp->client;
141					$thirdpartytmp->fournisseur = $objp->fournisseur;
142					$thirdpartytmp->code_client = $objp->code_client;
143					$thirdpartytmp->code_fournisseur = $objp->code_fournisseur;
144					$thirdpartytmp->code_compta = $objp->code_compta;
145					$thirdpartytmp->code_compta_fournisseur = $objp->code_compta_fournisseur;
146
147					$dateline = $this->db->jdate($objp->date_line);
148					if ($contractstatic->statut == Contrat::STATUS_VALIDATED && $objp->contractline_status == ContratLigne::STATUS_OPEN && !empty($dateline) && ($dateline + $conf->contrat->services->expires->warning_delay) < $now) $late = img_warning($langs->trans("Late"));
149
150					// Label
151					if ($objp->product_id > 0)
152					{
153						$productstatic->id = $objp->product_id;
154						$productstatic->type = $objp->product_type;
155						$productstatic->ref = $objp->product_ref;
156						$productstatic->entity = $objp->pentity;
157						$productstatic->label = $objp->product_label;
158						$productstatic->status = $objp->tosell;
159						$productstatic->status_buy = $objp->tobuy;
160
161						$text = $productstatic->getNomUrl(1, '', 20);
162						if ($objp->product_label)
163						{
164							$text .= ' - ';
165							//$productstatic->ref=$objp->label;
166							//$text .= $productstatic->getNomUrl(0,'',16);
167							$text .= $objp->product_label;
168						}
169						$description = $objp->description;
170
171						// Add description in form
172						if (!empty($conf->global->PRODUIT_DESC_IN_FORM))
173						{
174							//$text .= (! empty($objp->description) && $objp->description!=$objp->product_label)?'<br>'.dol_htmlentitiesbr($objp->description):'';
175							$description = ''; // Already added into main visible desc
176						}
177
178						$s = $form->textwithtooltip($text, $description, 3, '', '', '', 0, (!empty($objp->fk_parent_line) ?img_picto('', 'rightarrow') : ''));
179					} else {
180						$s = img_object($langs->trans("ShowProductOrService"), ($objp->product_type ? 'service' : 'product')).' '.dol_htmlentitiesbr($objp->description);
181					}
182
183
184					$this->info_box_contents[$i][] = array(
185						'td' => 'class="tdoverflowmax150 maxwidth150onsmartphone"',
186						'text' => $s,
187						'asis' => 1
188					);
189
190					$this->info_box_contents[$i][] = array(
191						'td' => 'class="nowraponall"',
192						'text' => $contractstatic->getNomUrl(1),
193						'asis' => 1
194					);
195
196					$this->info_box_contents[$i][] = array(
197						'td' => 'class="tdoverflowmax150 maxwidth150onsmartphone"',
198						'text' => $thirdpartytmp->getNomUrl(1),
199						'asis' => 1
200					);
201
202					$this->info_box_contents[$i][] = array(
203						'td' => '',
204						'text' => dol_print_date($datem, 'day'),
205						'text2'=> $late,
206					);
207
208					$this->info_box_contents[$i][] = array(
209						'td' => 'class="right" width="18"',
210						'text' => $contractlinestatic->getLibStatut(3)
211					);
212
213					$i++;
214				}
215				if ($num == 0) $this->info_box_contents[$i][0] = array(
216					'td' => 'class="center opacitymedium"',
217					'text'=>$langs->trans("NoContractedProducts")
218				);
219
220				$this->db->free($result);
221			} else {
222				$this->info_box_contents[0][0] = array(
223					'td' => '',
224					'maxlength' => 500,
225					'text' => ($this->db->error().' sql='.$sql),
226				);
227			}
228		} else {
229			$this->info_box_contents[0][0] = array(
230				'td' => 'class="nohover opacitymedium left"',
231				'text' => $langs->trans("ReadPermissionNotAllowed")
232			);
233		}
234	}
235
236	/**
237	 *	Method to show box
238	 *
239	 *	@param	array	$head       Array with properties of box title
240	 *	@param  array	$contents   Array with properties of box lines
241	 *  @param	int		$nooutput	No print, only return string
242	 *	@return	string
243	 */
244	public function showBox($head = null, $contents = null, $nooutput = 0)
245	{
246		return parent::showBox($this->info_box_head, $this->info_box_contents, $nooutput);
247	}
248}
249