[ Index ]
 

Code source de Dolibarr 2.0.1

Accédez au Source d'autres logiciels libres

Classes | Fonctions | Variables | Constantes | Tables

title

Body

[fermer]

/htdocs/includes/boxes/ -> box_prospect.php (source)

   1  <?php
   2  /* Copyright (C) 2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
   3   * Copyright (C) 2005 Laurent Destailleur  <eldy@users.sourceforge.net>
   4   *
   5   * This program is free software; you can redistribute it and/or modify
   6   * it under the terms of the GNU General Public License as published by
   7   * the Free Software Foundation; either version 2 of the License, or
   8   * (at your option) any later version.
   9   *
  10   * This program is distributed in the hope that it will be useful,
  11   * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13   * GNU General Public License for more details.
  14   *
  15   * You should have received a copy of the GNU General Public License
  16   * along with this program; if not, write to the Free Software
  17   * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  18   *
  19   * $Id: box_prospect.php,v 1.10 2005/07/14 19:02:33 eldy Exp $
  20   * $Source: /cvsroot/dolibarr/dolibarr/htdocs/includes/boxes/box_prospect.php,v $
  21   *
  22   */
  23  
  24  /**
  25      \file       htdocs/includes/boxes/box_prospect.php
  26      \ingroup    commercial
  27      \brief      Module de génération de l'affichage de la box prospect
  28  */
  29  
  30  
  31  include_once(DOL_DOCUMENT_ROOT."/includes/boxes/modules_boxes.php");
  32  
  33  
  34  class box_prospect extends ModeleBoxes {
  35  
  36      var $boxcode="lastprospects";
  37      var $boximg="object_company";
  38      var $boxlabel;
  39      var $depends = array("commercial");
  40  
  41      var $info_box_head = array();
  42      var $info_box_contents = array();
  43  
  44      /**
  45       *      \brief      Constructeur de la classe
  46       */
  47      function box_prospect()
  48      {
  49          global $langs;
  50          $langs->load("boxes");
  51  
  52          $this->boxlabel=$langs->trans("BoxLastProspects");
  53      }
  54  
  55      /**
  56       *      \brief      Charge les données en mémoire pour affichage ultérieur
  57       *      \param      $max        Nombre maximum d'enregistrements à charger
  58       */
  59      function loadBox($max=5)
  60      {
  61          global $user, $langs, $db;
  62          $langs->load("boxes");
  63  
  64          $this->info_box_head = array('text' => $langs->trans("BoxTitleLastProspects",$max));
  65  
  66          if ($user->rights->societe->lire) 
  67          {
  68              $sql = "SELECT s.nom,s.idp";
  69              $sql .= " FROM ".MAIN_DB_PREFIX."societe as s WHERE s.client = 2";
  70              if ($user->societe_id > 0)
  71              {
  72                  $sql .= " AND s.idp = $user->societe_id";
  73              }
  74              $sql .= " ORDER BY s.datec DESC ";
  75              $sql .= $db->plimit($max, 0);
  76      
  77              $result = $db->query($sql);
  78      
  79              if ($result)
  80              {
  81                  $num = $db->num_rows($result);
  82      
  83                  $i = 0;
  84      
  85                  while ($i < $num)
  86                  {
  87                      $objp = $db->fetch_object($result);
  88      
  89                      $this->info_box_contents[$i][0] = array('align' => 'left',
  90                      'logo' => $this->boximg,
  91                      'text' => stripslashes($objp->nom),
  92                      'url' => DOL_URL_ROOT."/comm/prospect/fiche.php?id=".$objp->idp);
  93      
  94                      $i++;
  95                  }
  96   
  97                  $i=$num;
  98                  while ($i < $max)
  99                  {
 100                      if ($num==0 && $i==$num)
 101                      {
 102                          $this->info_box_contents[$i][0] = array('align' => 'center','text'=>$langs->trans("NoRecordedProspects"));
 103                          $this->info_box_contents[$i][1] = array('text'=>'&nbsp;');
 104                      } else {
 105                          $this->info_box_contents[$i][0] = array('text'=>'&nbsp;');
 106                          $this->info_box_contents[$i][1] = array('text'=>'&nbsp;');
 107                      }
 108                      $i++;
 109                  }
 110  
 111              }
 112          }
 113          else {
 114              $this->info_box_contents[0][0] = array('align' => 'left',
 115              'text' => $langs->trans("ReadPermissionNotAllowed"));
 116          }
 117      }
 118  
 119      function showBox()
 120      {
 121          parent::showBox($this->info_box_head, $this->info_box_contents);
 122      }
 123  
 124  }
 125  
 126  ?>


Généré le : Mon Nov 26 12:29:37 2007 par Balluche grâce à PHPXref 0.7
  Clicky Web Analytics