Files
dolibarr/htdocs/actioncomm.class.php
Laurent Destailleur de42d8cab0 Renomage dans tout le code du mot déclaratif de fonction php "Function" (avec F majuscule)
par "function" (avec f minuscule), qui est le mot correct (bien que cela ne gène pas le php,
cela gène doxygen et autres outils d'analyse syntaxique).
2004-08-07 18:51:54 +00:00

178 lines
3.8 KiB
PHP
Raw Blame History

<?PHP
/* Copyright (C) 2002-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2004 Laurent Destailleur <eldy@users.sourceforge.net>
*
* $Id$
* $Source$
*
* 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 2 of the License, or
* (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
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*/
class ActionComm
{
var $id;
var $db;
var $date;
var $type;
var $priority;
var $user;
var $author;
var $societe;
var $contact;
var $note;
var $percent;
/*
* Initialisation
*
*/
function ActionComm($db)
{
$this->db = $db;
$this->societe = new Societe($db);
$this->author = new User($db);
if (class_exists("Contact"))
{
$this->contact = new Contact($db);
}
}
/*
*
*
*
*/
function add($author)
{
if (! $this->contact)
{
$this->contact = 0;
}
if (! $this->propalrowid)
{
$this->propalrowid = 0;
}
if (! $this->percent)
{
$this->percent = 0;
}
if (! $this->priority)
{
$this->priority = 0;
}
$sql = "INSERT INTO ".MAIN_DB_PREFIX."actioncomm (datea, fk_action, fk_soc, fk_user_author, fk_user_action, fk_contact, percent, note,priority,propalrowid) ";
$sql .= " VALUES ('$this->date', $this->type, $this->societe, $author->id,";
$sql .= $this->user->id . ", $this->contact, '$this->percent', '$this->note', $this->priority, $this->propalrowid);";
if ($this->db->query($sql) )
{
return 1;
}
else
{
dolibarr_print_error($this->db);
}
}
/*
*
*
*
*/
function fetch($id)
{
$sql = "SELECT ".$this->db->pdate("a.datea")." as da, a.note, c.libelle, fk_soc, fk_user_author, fk_contact, fk_facture, a.percent ";
$sql .= "FROM ".MAIN_DB_PREFIX."actioncomm as a, ".MAIN_DB_PREFIX."c_actioncomm as c WHERE a.id=$id AND a.fk_action=c.id;";
if ($this->db->query($sql) )
{
if ($this->db->num_rows())
{
$obj = $this->db->fetch_object(0);
$this->id = $id;
$this->type = $obj->libelle;
$this->date = $obj->da;
$this->note =$obj->note;
$this->percent =$obj->percent;
$this->societe->id = $obj->fk_soc;
$this->author->id = $obj->fk_user_author;
$this->contact->id = $obj->fk_contact;
$this->fk_facture = $obj->fk_facture;
if ($this->fk_facture)
{
$this->objet_url = '<a href="'. DOL_URL_ROOT . '/compta/facture.php?facid='.$this->fk_facture.'">Facture</a>';
}
$this->db->free();
}
}
else
{
dolibarr_print_error($this->db);
}
}
/**
* Supprime l'action
*
*
*/
function delete($id)
{
$sql = "DELETE FROM ".MAIN_DB_PREFIX."actioncomm WHERE id=$id;";
if ($this->db->query($sql) )
{
return 1;
}
}
/**
* Met <20> jour l'action
*
*/
function update()
{
if ($this->percent > 100)
{
$this->percent = 100;
}
$sql = "UPDATE ".MAIN_DB_PREFIX."actioncomm ";
$sql .= " SET percent=$this->percent";
if ($this->percent == 100)
{
$sql .= ", datea = now()";
}
$sql .= ", fk_contact =". $this->contact->id;
$sql .= " WHERE id=$this->id;";
if ($this->db->query($sql) )
{
return 1;
}
}
}
?>