dolibarr/htdocs/comm/prospect/class/prospect.class.php

177 lines
5.7 KiB
PHP
Raw Normal View History

2006-04-07 23:35:17 +02:00
<?php
/* Copyright (C) 2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2006-2012 Laurent Destailleur <eldy@users.sourceforge.net>
2012-12-30 15:13:49 +01:00
* Copyright (C) 2005-2012 Regis Houssin <regis.houssin@capnetworks.com>
*
2006-04-07 23:35:17 +02:00
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
2006-04-07 23:35:17 +02:00
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
2011-08-03 02:45:22 +02:00
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2006-04-07 23:35:17 +02:00
*/
/**
2010-06-05 17:32:18 +02:00
* \file htdocs/comm/prospect/class/prospect.class.php
* \ingroup societe
* \brief Fichier de la classe des prospects
2010-06-05 17:32:18 +02:00
*/
include_once DOL_DOCUMENT_ROOT.'/societe/class/societe.class.php';
2006-04-07 23:35:17 +02:00
/**
* \class Prospect
* \brief Classe permettant la gestion des prospects
*/
2006-04-07 23:35:17 +02:00
class Prospect extends Societe
{
var $db;
2006-04-07 23:35:17 +02:00
/**
* Constructor
*
* @param DoliDB $db Databas handler
2006-04-07 23:35:17 +02:00
*/
function __construct($db)
2006-04-07 23:35:17 +02:00
{
global $config;
$this->db = $db;
2006-04-07 23:35:17 +02:00
return 0;
}
2006-04-07 23:35:17 +02:00
/**
2012-03-18 19:23:01 +01:00
* Charge indicateurs this->nb de tableau de bord
*
* @return int <0 if KO, >0 if OK
2006-04-07 23:35:17 +02:00
*/
function load_state_board()
{
global $conf, $user;
2007-01-03 02:50:29 +01:00
$this->nb=array("customers" => 0,"prospects" => 0);
2007-10-24 21:40:09 +02:00
$clause = "WHERE";
2006-04-07 23:35:17 +02:00
$sql = "SELECT count(s.rowid) as nb, s.client";
2006-04-07 23:35:17 +02:00
$sql.= " FROM ".MAIN_DB_PREFIX."societe as s";
2008-03-01 02:26:41 +01:00
if (!$user->rights->societe->client->voir && !$user->societe_id)
2007-10-24 21:40:09 +02:00
{
$sql.= " LEFT JOIN ".MAIN_DB_PREFIX."societe_commerciaux as sc ON s.rowid = sc.fk_soc";
$sql.= " WHERE sc.fk_user = " .$user->id;
$clause = "AND";
}
2012-02-01 11:32:55 +01:00
$sql.= " ".$clause." s.client IN (1,2,3)";
2012-02-02 07:49:50 +01:00
$sql.= " AND s.entity IN (".getEntity($this->element, 1).")";
2006-04-07 23:35:17 +02:00
$sql.= " GROUP BY s.client";
2006-04-07 23:35:17 +02:00
$resql=$this->db->query($sql);
if ($resql)
{
while ($obj=$this->db->fetch_object($resql))
{
if ($obj->client == 1 || $obj->client == 3) $this->nb["customers"]+=$obj->nb;
if ($obj->client == 2 || $obj->client == 3) $this->nb["prospects"]+=$obj->nb;
2006-04-07 23:35:17 +02:00
}
$this->db->free($resql);
2006-04-07 23:35:17 +02:00
return 1;
}
else
2006-04-07 23:35:17 +02:00
{
dol_print_error($this->db);
2006-04-07 23:35:17 +02:00
$this->error=$this->db->error();
return -1;
}
}
2006-04-07 23:35:17 +02:00
/**
2012-03-18 19:23:01 +01:00
* Return status of prospect
*
* @param int $mode 0=libelle long, 1=libelle court, 2=Picto + Libelle court, 3=Picto, 4=Picto + Libelle long
* @return string Libelle
2006-04-07 23:35:17 +02:00
*/
2011-05-13 22:00:43 +02:00
function getLibProspStatut($mode=0)
2006-04-07 23:35:17 +02:00
{
2011-05-13 22:00:43 +02:00
return $this->LibProspStatut($this->stcomm_id,$mode);
2006-04-07 23:35:17 +02:00
}
/**
2012-03-18 19:23:01 +01:00
* Return label of a given status
*
* @param int $statut Id statut
* @param int $mode 0=long label, 1=short label, 2=Picto + short label, 3=Picto, 4=Picto + long label, 5=Short label + Picto
* @return string Libelle du statut
2006-04-07 23:35:17 +02:00
*/
2011-05-13 22:00:43 +02:00
function LibProspStatut($statut,$mode=0)
2006-04-07 23:35:17 +02:00
{
global $langs;
$langs->load('customers');
if ($mode == 2)
{
2006-05-14 05:12:01 +02:00
if ($statut == -1) return img_action($langs->trans("StatusProspect-1"),-1).' '.$langs->trans("StatusProspect-1");
if ($statut == 0) return img_action($langs->trans("StatusProspect0"), 0).' '.$langs->trans("StatusProspect0");
if ($statut == 1) return img_action($langs->trans("StatusProspect1"), 1).' '.$langs->trans("StatusProspect1");
if ($statut == 2) return img_action($langs->trans("StatusProspect2"), 2).' '.$langs->trans("StatusProspect2");
if ($statut == 3) return img_action($langs->trans("StatusProspect3"), 3).' '.$langs->trans("StatusProspect3");
}
if ($mode == 3)
{
if ($statut == -1) return img_action($langs->trans("StatusProspect-1"),-1);
if ($statut == 0) return img_action($langs->trans("StatusProspect0"), 0);
if ($statut == 1) return img_action($langs->trans("StatusProspect1"), 1);
if ($statut == 2) return img_action($langs->trans("StatusProspect2"), 2);
if ($statut == 3) return img_action($langs->trans("StatusProspect3"), 3);
}
2006-04-07 23:35:17 +02:00
if ($mode == 4)
{
2006-05-14 05:12:01 +02:00
if ($statut == -1) return img_action($langs->trans("StatusProspect-1"),-1).' '.$langs->trans("StatusProspect-1");
if ($statut == 0) return img_action($langs->trans("StatusProspect0"), 0).' '.$langs->trans("StatusProspect0");
if ($statut == 1) return img_action($langs->trans("StatusProspect1"), 1).' '.$langs->trans("StatusProspect1");
if ($statut == 2) return img_action($langs->trans("StatusProspect2"), 2).' '.$langs->trans("StatusProspect2");
if ($statut == 3) return img_action($langs->trans("StatusProspect3"), 3).' '.$langs->trans("StatusProspect3");
2006-04-07 23:35:17 +02:00
}
return "Error, mode/status not found";
}
/**
2012-03-18 19:23:01 +01:00
* Renvoi le libelle du niveau
*
* @return string Libelle
*/
2013-02-12 15:31:12 +01:00
function getLibProspLevel()
{
2013-02-12 15:31:12 +01:00
return $this->LibProspLevel($this->fk_prospectlevel);
}
/**
2012-03-18 19:23:01 +01:00
* Renvoi le libelle du niveau
*
* @param int $fk_prospectlevel Prospect level
* @return string Libelle du niveau
*/
2013-02-12 15:31:12 +01:00
function LibProspLevel($fk_prospectlevel)
{
global $langs;
$lib=$langs->trans("ProspectLevel".$fk_prospectlevel);
// If lib not found in language file, we get label from cache/databse
if ($lib == $langs->trans("ProspectLevel".$fk_prospectlevel))
{
$lib=$langs->getLabelFromKey($this->db,$fk_prospectlevel,'c_prospectlevel','code','label');
}
return $lib;
}
2006-04-07 23:35:17 +02:00
}
?>