forked from Wavyzz/dolibarr
871 lines
19 KiB
PHP
871 lines
19 KiB
PHP
<?php
|
|
/* Copyright (C) 2002-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
* Copyright (C) 2004 Éric Seigne <eric.seigne@ryxeo.com>
|
|
* Copyright (C) 2004 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
*
|
|
* 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.
|
|
*
|
|
* $Id$
|
|
* $Source$
|
|
*
|
|
*/
|
|
|
|
|
|
/**
|
|
\file htdocs/propal.class.php
|
|
\brief Fichier de la classe des propales
|
|
\author Rodolphe Qiedeville
|
|
\author Eric Seigne
|
|
\author Laurent Destailleur
|
|
\version $Revision$
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
\class Propal
|
|
\brief Classe permettant la gestion des propales
|
|
*/
|
|
|
|
class Propal
|
|
{
|
|
var $id;
|
|
var $db;
|
|
var $socidp;
|
|
var $contactid;
|
|
var $projetidp;
|
|
var $author;
|
|
var $ref;
|
|
var $datep;
|
|
var $remise;
|
|
var $products;
|
|
var $products_qty;
|
|
var $note;
|
|
var $price;
|
|
|
|
|
|
/**
|
|
* \brief Constructeur
|
|
*/
|
|
|
|
function Propal($DB, $soc_idp="", $propalid=0)
|
|
{
|
|
$this->db = $DB ;
|
|
$this->socidp = $soc_idp;
|
|
$this->id = $propalid;
|
|
$this->products = array();
|
|
$this->remise = 0;
|
|
}
|
|
|
|
|
|
/**
|
|
* \brief Ajout d'un produit dans la proposition, en memoire dans l'objet
|
|
* \param idproduct id du produit à ajouter
|
|
* \param qty quantité
|
|
* \param remise_percent remise effectuée sur le produit
|
|
* \return void
|
|
* \see insert_product
|
|
*/
|
|
|
|
function add_product($idproduct, $qty, $remise_percent=0)
|
|
{
|
|
if ($idproduct > 0)
|
|
{
|
|
$i = sizeof($this->products);
|
|
$this->products[$i] = $idproduct;
|
|
if (!$qty)
|
|
{
|
|
$qty = 1 ;
|
|
}
|
|
$this->products_qty[$i] = $qty;
|
|
$this->products_remise_percent[$i] = $remise_percent;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* \brief Ajout d'un produit dans la proposition, en base
|
|
* \param idproduct id du produit à ajouter
|
|
* \param qty quantité
|
|
* \param remise_percent remise effectuée sur le produit
|
|
* \return int 0 en cas de succès
|
|
* \see add_product
|
|
*/
|
|
|
|
function insert_product($idproduct, $qty, $remise_percent=0)
|
|
{
|
|
if ($this->statut == 0)
|
|
{
|
|
$prod = new Product($this->db, $idproduct);
|
|
if ($prod->fetch($idproduct) > 0)
|
|
{
|
|
$price = $prod->price;
|
|
$subprice = $prod->price;
|
|
|
|
if ($remise_percent > 0)
|
|
{
|
|
$remise = round(($prod->price * $remise_percent / 100), 2);
|
|
$price = $prod->price - $remise;
|
|
}
|
|
|
|
$sql = "INSERT INTO ".MAIN_DB_PREFIX."propaldet (fk_propal, fk_product, qty, price, tva_tx, description, remise_percent, subprice) VALUES ";
|
|
$sql .= " (".$this->id.",". $idproduct.",'". $qty."','". ereg_replace(",",".",$price)."','".$prod->tva_tx."','".addslashes($prod->label)."','".ereg_replace(",",".",$remise_percent)."','".ereg_replace(",",".",$subprice)."')";
|
|
|
|
if ($this->db->query($sql) )
|
|
{
|
|
$this->update_price();
|
|
|
|
return 1;
|
|
}
|
|
else
|
|
{
|
|
return -1;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
return -2;
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
*
|
|
*
|
|
*/
|
|
|
|
function insert_product_generic($p_desc, $p_price, $p_qty, $p_tva_tx=19.6, $remise_percent=0)
|
|
{
|
|
if ($this->statut == 0)
|
|
{
|
|
if (strlen(trim($p_qty)) == 0)
|
|
{
|
|
$p_qty = 1;
|
|
}
|
|
|
|
$p_price = ereg_replace(",",".",$p_price);
|
|
|
|
$price = $p_price;
|
|
$subprice = $p_price;
|
|
|
|
if ($remise_percent > 0)
|
|
{
|
|
$remise = round(($p_price * $remise_percent / 100), 2);
|
|
$price = $p_price - $remise;
|
|
}
|
|
|
|
$sql = "INSERT INTO ".MAIN_DB_PREFIX."propaldet (fk_propal, fk_product, qty, price, tva_tx, description, remise_percent, subprice) VALUES ";
|
|
$sql .= " (".$this->id.", 0,'". $p_qty."','". ereg_replace(",",".",$price)."','".$p_tva_tx."','".$p_desc."','$remise_percent', '".ereg_replace(",",".",$subprice)."') ; ";
|
|
|
|
|
|
if ($this->db->query($sql) )
|
|
{
|
|
|
|
if ($this->update_price() > 0)
|
|
{
|
|
return 1;
|
|
}
|
|
else
|
|
{
|
|
return -1;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
print $this->db->error();
|
|
print "<br>".$sql;
|
|
return -2;
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
*
|
|
*
|
|
*/
|
|
|
|
function fetch_client()
|
|
{
|
|
$client = new Societe($this->db);
|
|
$client->fetch($this->socidp);
|
|
$this->client = $client;
|
|
}
|
|
|
|
/*
|
|
*
|
|
*
|
|
*/
|
|
|
|
function delete_product($idligne)
|
|
{
|
|
if ($this->statut == 0)
|
|
{
|
|
$sql = "DELETE FROM ".MAIN_DB_PREFIX."propaldet WHERE rowid = $idligne";
|
|
|
|
if ($this->db->query($sql) )
|
|
{
|
|
$this->update_price();
|
|
|
|
return 1;
|
|
}
|
|
else
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
function create()
|
|
{
|
|
/*
|
|
* Insertion dans la base
|
|
*/
|
|
$this->fin_validite = $this->datep + ($this->duree_validite * 24 * 3600);
|
|
|
|
$sql = "INSERT INTO ".MAIN_DB_PREFIX."propal (fk_soc, fk_soc_contact, price, remise, tva, total, datep, datec, ref, fk_user_author, note, model_pdf, fin_validite) ";
|
|
$sql .= " VALUES ($this->socidp, $this->contactid, 0, $this->remise, 0,0,".$this->db->idate($this->datep).", now(), '$this->ref', $this->author, '$this->note','$this->modelpdf',".$this->db->idate($this->fin_validite).")";
|
|
$sqlok = 0;
|
|
|
|
if ( $this->db->query($sql) )
|
|
{
|
|
|
|
$this->id = $this->db->last_insert_id();
|
|
|
|
$sql = "SELECT rowid FROM ".MAIN_DB_PREFIX."propal WHERE ref='$this->ref';";
|
|
if ( $this->db->query($sql) )
|
|
{
|
|
/*
|
|
* Insertion du detail des produits dans la base
|
|
*/
|
|
if ( $this->db->num_rows() )
|
|
{
|
|
$propalid = $this->db->result( 0, 0);
|
|
$this->db->free();
|
|
|
|
for ($i = 0 ; $i < sizeof($this->products) ; $i++)
|
|
{
|
|
$prod = new Product($this->db, $this->products[$i]);
|
|
$prod->fetch($this->products[$i]);
|
|
|
|
$this->insert_product($this->products[$i],
|
|
$this->products_qty[$i],
|
|
$this->products_remise_percent[$i]);
|
|
}
|
|
/*
|
|
*
|
|
*/
|
|
$this->update_price();
|
|
/*
|
|
* Affectation au projet
|
|
*/
|
|
if ($this->projetidp)
|
|
{
|
|
$sql = "UPDATE ".MAIN_DB_PREFIX."propal SET fk_projet=$this->projetidp WHERE ref='$this->ref';";
|
|
$this->db->query($sql);
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
print $this->db->error() . '<b><br>'.$sql;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
print $this->db->error() . '<b><br>'.$sql;
|
|
}
|
|
return $this->id;
|
|
}
|
|
|
|
/**
|
|
* \brief Mets à jour le prix total de la proposition
|
|
*
|
|
*
|
|
*/
|
|
|
|
function update_price()
|
|
{
|
|
include_once DOL_DOCUMENT_ROOT . "/lib/price.lib.php";
|
|
|
|
/*
|
|
* Liste des produits a ajouter
|
|
*/
|
|
$sql = "SELECT price, qty, tva_tx FROM ".MAIN_DB_PREFIX."propaldet WHERE fk_propal = $this->id";
|
|
if ( $this->db->query($sql) )
|
|
{
|
|
$num = $this->db->num_rows();
|
|
$i = 0;
|
|
|
|
while ($i < $num)
|
|
{
|
|
$obj = $this->db->fetch_object();
|
|
$products[$i][0] = $obj->price;
|
|
$products[$i][1] = $obj->qty;
|
|
$products[$i][2] = $obj->tva_tx;
|
|
$i++;
|
|
}
|
|
}
|
|
$calculs = calcul_price($products, $this->remise_percent);
|
|
|
|
$this->remise = $calculs[3];
|
|
$this->total_ht = $calculs[0];
|
|
$this->total_tva = $calculs[1];
|
|
$this->total_ttc = $calculs[2];
|
|
/*
|
|
*
|
|
*/
|
|
$sql = "UPDATE ".MAIN_DB_PREFIX."propal SET";
|
|
$sql .= " price='". ereg_replace(",",".",$this->total_ht)."'";
|
|
$sql .= ", tva='". ereg_replace(",",".",$this->total_tva)."'";
|
|
$sql .= ", total='". ereg_replace(",",".",$this->total_ttc)."'";
|
|
$sql .= ", remise='".ereg_replace(",",".",$this->remise)."'";
|
|
$sql .=" WHERE rowid = $this->id";
|
|
|
|
if ( $this->db->query($sql) )
|
|
{
|
|
return 1;
|
|
}
|
|
else
|
|
{
|
|
print "Erreur mise à jour du prix<p>".$sql;
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
|
|
/*
|
|
* \brief Recupère de la base les caractéristiques d'une propale
|
|
* \param rowid id de la propal à récupérer
|
|
*/
|
|
|
|
function fetch($rowid)
|
|
{
|
|
|
|
$sql = "SELECT ref,total,price,remise,tva,fk_soc,fk_soc_contact,".$this->db->pdate("datep")."as dp,".$this->db->pdate("fin_validite")."as dfv, model_pdf, note, fk_projet, fk_statut, remise_percent, fk_user_author";
|
|
$sql .= ", c.label as statut_label";
|
|
$sql .= " FROM ".MAIN_DB_PREFIX."propal";
|
|
$sql .= "," . MAIN_DB_PREFIX."c_propalst as c";
|
|
$sql .= " WHERE rowid=$rowid AND fk_statut = c.id";
|
|
|
|
if ($this->db->query($sql) )
|
|
{
|
|
if ($this->db->num_rows())
|
|
{
|
|
$obj = $this->db->fetch_object();
|
|
|
|
$this->id = $rowid;
|
|
$this->datep = $obj->dp;
|
|
$this->fin_validite = $obj->dfv;
|
|
$this->date = $obj->dp;
|
|
$this->ref = $obj->ref;
|
|
$this->price = $obj->price;
|
|
$this->remise = $obj->remise;
|
|
$this->remise_percent = $obj->remise_percent;
|
|
$this->total = $obj->total;
|
|
$this->total_ht = $obj->price;
|
|
$this->total_tva = $obj->tva;
|
|
$this->total_ttc = $obj->total;
|
|
$this->socidp = $obj->fk_soc;
|
|
$this->soc_id = $obj->fk_soc;
|
|
$this->projetidp = $obj->fk_projet;
|
|
$this->contactid = $obj->fk_soc_contact;
|
|
$this->modelpdf = $obj->model_pdf;
|
|
$this->note = $obj->note;
|
|
$this->statut = $obj->fk_statut;
|
|
$this->statut_libelle = $obj->statut_label;
|
|
|
|
$this->user_author_id = $obj->fk_user_author;
|
|
|
|
if ($obj->fk_statut == 0)
|
|
{
|
|
$this->brouillon = 1;
|
|
}
|
|
|
|
$this->lignes = array();
|
|
$this->db->free();
|
|
|
|
$this->ref_url = '<a href="'.DOL_URL_ROOT.'/comm/propal.php?propalid='.$this->id.'">'.$this->ref.'</a>';
|
|
|
|
/*
|
|
* Lignes produits
|
|
*/
|
|
|
|
$sql = "SELECT p.rowid, p.label, p.description, p.ref, d.price, d.tva_tx, d.qty, d.remise_percent, d.subprice";
|
|
$sql .= " FROM ".MAIN_DB_PREFIX."propaldet as d, ".MAIN_DB_PREFIX."product as p";
|
|
$sql .= " WHERE d.fk_propal = ".$this->id ." AND d.fk_product = p.rowid ORDER by d.rowid ASC";
|
|
|
|
$result = $this->db->query($sql);
|
|
if ($result)
|
|
{
|
|
$num = $this->db->num_rows();
|
|
$i = 0;
|
|
|
|
while ($i < $num)
|
|
{
|
|
$objp = $this->db->fetch_object();
|
|
|
|
$ligne = new PropaleLigne();
|
|
$ligne->libelle = stripslashes($objp->label);
|
|
$ligne->desc = stripslashes($objp->description);
|
|
$ligne->qty = $objp->qty;
|
|
$ligne->ref = $objp->ref;
|
|
$ligne->tva_tx = $objp->tva_tx;
|
|
$ligne->subprice = $objp->subprice;
|
|
$ligne->remise_percent = $objp->remise_percent;
|
|
$ligne->price = $objp->price;
|
|
$ligne->product_id = $objp->rowid;
|
|
|
|
$this->lignes[$i] = $ligne;
|
|
$i++;
|
|
}
|
|
$this->db->free();
|
|
}
|
|
else
|
|
{
|
|
print $this->db->error();
|
|
}
|
|
|
|
/*
|
|
* Lignes génériques
|
|
*/
|
|
$sql = "SELECT d.qty, d.description, d.price, d.subprice, d.tva_tx, d.rowid, d.remise_percent";
|
|
$sql .= " FROM ".MAIN_DB_PREFIX."propaldet as d";
|
|
$sql .= " WHERE d.fk_propal = ".$this->id ." AND d.fk_product = 0";
|
|
|
|
$result = $this->db->query($sql);
|
|
if ($result)
|
|
{
|
|
$num = $this->db->num_rows();
|
|
$j = 0;
|
|
|
|
while ($j < $num)
|
|
{
|
|
$objp = $this->db->fetch_object();
|
|
$ligne = new PropaleLigne();
|
|
$ligne->libelle = stripslashes($objp->description);
|
|
$ligne->desc = stripslashes($objp->description);
|
|
$ligne->qty = $objp->qty;
|
|
$ligne->ref = $objp->ref;
|
|
$ligne->tva_tx = $objp->tva_tx;
|
|
$ligne->subprice = $objp->subprice;
|
|
$ligne->remise_percent = $objp->remise_percent;
|
|
$ligne->price = $objp->price;
|
|
$ligne->product_id = 0;
|
|
|
|
$this->lignes[$i] = $ligne;
|
|
$i++;
|
|
$j++;
|
|
}
|
|
|
|
$this->db->free();
|
|
}
|
|
else
|
|
{
|
|
print $this->db->error();
|
|
}
|
|
}
|
|
return 1;
|
|
}
|
|
else
|
|
{
|
|
print $this->db->error();
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
/*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
function valid($user)
|
|
{
|
|
if ($user->rights->propale->valider)
|
|
{
|
|
|
|
$sql = "UPDATE ".MAIN_DB_PREFIX."propal SET fk_statut = 1, date_valid=now(), fk_user_valid=$user->id";
|
|
$sql .= " WHERE rowid = $this->id AND fk_statut = 0 ;";
|
|
|
|
if ($this->db->query($sql) )
|
|
{
|
|
return 1;
|
|
}
|
|
else
|
|
{
|
|
print $this->db->error() . ' in ' . $sql;
|
|
return -1;
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* \brief Définit une remise globale sur la proposition
|
|
*
|
|
*
|
|
*/
|
|
|
|
function set_remise($user, $remise)
|
|
{
|
|
if ($user->rights->propale->creer)
|
|
{
|
|
$remise = ereg_replace(",",".",$remise);
|
|
|
|
$sql = "UPDATE ".MAIN_DB_PREFIX."propal SET remise_percent = ".$remise;
|
|
$sql .= " WHERE rowid = $this->id AND fk_statut = 0 ;";
|
|
|
|
if ($this->db->query($sql) )
|
|
{
|
|
$this->remise_percent = $remise;
|
|
$this->update_price();
|
|
return 1;
|
|
}
|
|
else
|
|
{
|
|
print $this->db->error() . ' in ' . $sql;
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
function set_pdf_model($user, $modelpdf)
|
|
{
|
|
if ($user->rights->propale->creer)
|
|
{
|
|
|
|
$sql = "UPDATE ".MAIN_DB_PREFIX."propal SET model_pdf = '$modelpdf'";
|
|
$sql .= " WHERE rowid = $this->id AND fk_statut = 0 ;";
|
|
|
|
if ($this->db->query($sql) )
|
|
{
|
|
return 1;
|
|
}
|
|
else
|
|
{
|
|
print $this->db->error() . ' in ' . $sql;
|
|
return 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* \brief Cloture de la proposition commerciale
|
|
*
|
|
*/
|
|
|
|
function cloture($user, $statut, $note)
|
|
{
|
|
$this->statut = $statut;
|
|
|
|
|
|
$sql = "UPDATE ".MAIN_DB_PREFIX."propal SET fk_statut = $statut, note = '$note', date_cloture=now(), fk_user_cloture=$user->id";
|
|
$sql .= " WHERE rowid = $this->id;";
|
|
|
|
if ($this->db->query($sql) )
|
|
{
|
|
if ($statut == 2)
|
|
{
|
|
/* Propale signée */
|
|
include_once DOL_DOCUMENT_ROOT . "/commande/commande.class.php";
|
|
|
|
$this->create_commande($user);
|
|
|
|
/* Classe la société rattachée comme client */
|
|
|
|
$soc = new Societe($this->db);
|
|
$soc->id = $this->socidp;
|
|
$soc->set_as_client();
|
|
|
|
|
|
return 1;
|
|
}
|
|
else
|
|
{
|
|
/* Propale non signée */
|
|
return 1;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
print $this->db->error() . ' in ' . $sql;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* \brief Créée une commande à partir de la proposition commerciale
|
|
*
|
|
*/
|
|
|
|
function create_commande($user)
|
|
{
|
|
if ($this->statut == 2)
|
|
{
|
|
/* Propale signée */
|
|
include_once DOL_DOCUMENT_ROOT . "/commande/commande.class.php";
|
|
$commande = new Commande($this->db);
|
|
$commande->create_from_propale($user, $this->id);
|
|
return 1;
|
|
}
|
|
}
|
|
|
|
/**
|
|
*
|
|
*
|
|
*/
|
|
|
|
function reopen($userid)
|
|
{
|
|
$sql = "UPDATE ".MAIN_DB_PREFIX."propal SET fk_statut = 0";
|
|
|
|
$sql .= " WHERE rowid = $this->id;";
|
|
|
|
if ($this->db->query($sql) )
|
|
{
|
|
return 1;
|
|
}
|
|
else
|
|
{
|
|
print $this->db->error() . ' in ' . $sql;
|
|
}
|
|
}
|
|
|
|
/**
|
|
*
|
|
*
|
|
*/
|
|
|
|
function liste_array ($brouillon=0, $user='')
|
|
{
|
|
$ga = array();
|
|
|
|
$sql = "SELECT rowid, ref FROM ".MAIN_DB_PREFIX."propal";
|
|
if ($brouillon = 1)
|
|
{
|
|
$sql .= " WHERE fk_statut = 0";
|
|
if ($user)
|
|
{
|
|
$sql .= " AND fk_user_author".$user;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if ($user)
|
|
{
|
|
$sql .= " WHERE fk_user_author".$user;
|
|
}
|
|
}
|
|
|
|
$sql .= " ORDER BY datep DESC";
|
|
|
|
if ($this->db->query($sql) )
|
|
{
|
|
$nump = $this->db->num_rows();
|
|
|
|
if ($nump)
|
|
{
|
|
$i = 0;
|
|
while ($i < $nump)
|
|
{
|
|
$obj = $this->db->fetch_object();
|
|
|
|
$ga[$obj->rowid] = $obj->ref;
|
|
$i++;
|
|
}
|
|
}
|
|
return $ga;
|
|
}
|
|
else
|
|
{
|
|
print $this->db->error();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* \brief Renvoie un tableau contenant les numéros de commandes associées
|
|
*
|
|
*/
|
|
|
|
function commande_liste_array ()
|
|
{
|
|
$ga = array();
|
|
|
|
$sql = "SELECT fk_commande FROM ".MAIN_DB_PREFIX."co_pr";
|
|
$sql .= " WHERE fk_propale = " . $this->id;
|
|
if ($this->db->query($sql) )
|
|
{
|
|
$nump = $this->db->num_rows();
|
|
|
|
if ($nump)
|
|
{
|
|
$i = 0;
|
|
while ($i < $nump)
|
|
{
|
|
$obj = $this->db->fetch_object();
|
|
|
|
$ga[$i] = $obj->fk_commande;
|
|
$i++;
|
|
}
|
|
}
|
|
return $ga;
|
|
}
|
|
else
|
|
{
|
|
print $this->db->error();
|
|
}
|
|
}
|
|
|
|
/*
|
|
*
|
|
*
|
|
*/
|
|
|
|
function delete($user)
|
|
{
|
|
$sql = "DELETE FROM ".MAIN_DB_PREFIX."propaldet WHERE fk_propal = $this->id ;";
|
|
if ( $this->db->query($sql) )
|
|
{
|
|
$sql = "DELETE FROM ".MAIN_DB_PREFIX."propal WHERE rowid = $this->id;";
|
|
if ( $this->db->query($sql) )
|
|
{
|
|
dolibarr_syslog("Suppression de la proposition $this->id par $user->fullname ($user->id)");
|
|
return 1;
|
|
}
|
|
else
|
|
{
|
|
return -2;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* \brief Mets à jour la note
|
|
*
|
|
*/
|
|
|
|
function update_note($note)
|
|
{
|
|
$sql = "UPDATE ".MAIN_DB_PREFIX."propal SET note = '$note'";
|
|
$sql .= " WHERE rowid = $this->id;";
|
|
|
|
if ($this->db->query($sql) )
|
|
{
|
|
return 1;
|
|
}
|
|
else
|
|
{
|
|
print $this->db->error() . ' in ' . $sql;
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
|
|
/*
|
|
* \brief Information sur l'objet
|
|
*
|
|
*/
|
|
|
|
function info($id)
|
|
{
|
|
$sql = "SELECT c.rowid, ".$this->db->pdate("datec")." as datec";
|
|
$sql .= ", fk_user_valid, fk_user_cloture, fk_user_author";
|
|
$sql .= " FROM ".MAIN_DB_PREFIX."propal as c";
|
|
$sql .= " WHERE c.rowid = $id";
|
|
|
|
if ($this->db->query($sql))
|
|
{
|
|
if ($this->db->num_rows())
|
|
{
|
|
$obj = $this->db->fetch_object();
|
|
|
|
$this->id = $obj->rowid;
|
|
|
|
$this->date_creation = $obj->datec;
|
|
|
|
$cuser = new User($this->db, $obj->fk_user_author);
|
|
$cuser->fetch();
|
|
$this->user_creation = $cuser;
|
|
|
|
if ($obj->fk_user_valid)
|
|
{
|
|
$vuser = new User($this->db, $obj->fk_user_valid);
|
|
$vuser->fetch();
|
|
$this->user_validation = $vuser;
|
|
}
|
|
|
|
if ($obj->fk_user_cloture)
|
|
{
|
|
$cluser = new User($this->db, $obj->fk_user_cloture);
|
|
$cluser->fetch();
|
|
$this->user_cloture = $cluser;
|
|
}
|
|
|
|
|
|
}
|
|
$this->db->free();
|
|
|
|
}
|
|
else
|
|
{
|
|
print $this->db->error();
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* \brief Retourne le libellé du statut d'une propale (brouillon, validée, ...)
|
|
* \return string Libellé
|
|
*/
|
|
function get_libstatut()
|
|
{
|
|
return $this->LibStatut($this->statut);
|
|
}
|
|
|
|
/**
|
|
* \brief Renvoi le libellé d'un statut donné
|
|
* \param statut id statut
|
|
* \return string Libellé
|
|
*/
|
|
function LibStatut($statut)
|
|
{
|
|
global $langs;
|
|
$langs->load("propals");
|
|
if ($statut == 0) return $langs->trans("PropalStatusDraft");
|
|
return $langs->trans("PropalStatusValidated");
|
|
}
|
|
|
|
}
|
|
|
|
class PropaleLigne
|
|
{
|
|
function PropaleLigne()
|
|
{
|
|
}
|
|
}
|
|
?>
|