mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-25 02:41:26 +01:00
146 lines
3.5 KiB
PHP
146 lines
3.5 KiB
PHP
<?PHP
|
|
/* Copyright (C) 2002 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
*
|
|
* $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 Propal {
|
|
var $id;
|
|
var $socidp;
|
|
var $contactid;
|
|
var $projetidp;
|
|
var $author;
|
|
var $ref;
|
|
var $datep;
|
|
var $remise;
|
|
var $products;
|
|
var $note;
|
|
|
|
var $price;
|
|
|
|
Function Propal($soc_idp="") {
|
|
$this->socidp = $soc_idp;
|
|
$this->products = array();
|
|
}
|
|
|
|
Function add_product($idproduct) {
|
|
if ($idproduct > 0) {
|
|
$i = sizeof($this->products);
|
|
$this->products[$i] = $idproduct;
|
|
}
|
|
}
|
|
/*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
Function create($db) {
|
|
/*
|
|
* Total des produits a ajouter
|
|
*/
|
|
$sql = "SELECT sum(price) FROM llx_product ";
|
|
$sql .= " WHERE rowid in (";
|
|
for ($i = 0 ; $i < sizeof($this->products) ; $i++) {
|
|
$sql .= $this->products[$i] . ",";
|
|
}
|
|
$sql = substr($sql, 0, strlen($sql)-1) . ");";
|
|
|
|
if ( $db->query($sql) ) {
|
|
$cprice = $db->result(0, 0);
|
|
$db->free();
|
|
}
|
|
/*
|
|
* Calcul TVA, Remise
|
|
*/
|
|
$totalht = $cprice - $remise;
|
|
$tva = tva($totalht);
|
|
$total = $totalht + $tva;
|
|
/*
|
|
* Insertion dans la base
|
|
*/
|
|
$sql = "INSERT INTO llx_propal (fk_soc, fk_soc_contact, price, remise, tva, total, datep, datec, ref, fk_user_author, note) ";
|
|
$sql .= " VALUES ($this->socidp, $this->contactid, $cprice, $this->remise, $tva, $total, $this->datep, now(), '$this->ref', $this->author, '$this->note')";
|
|
$sqlok = 0;
|
|
|
|
if ( $db->query($sql) ) {
|
|
$sql = "SELECT rowid FROM llx_propal WHERE ref='$this->ref';";
|
|
if ( $db->query($sql) ) {
|
|
/*
|
|
* Insertion du detail des produits dans la base
|
|
*/
|
|
if ( $db->num_rows() ) {
|
|
$propalid = $db->result( 0, 0);
|
|
$db->free();
|
|
|
|
for ($i = 0 ; $i < sizeof($this->products) ; $i++) {
|
|
$prod = new Product($db, $this->products[$i]);
|
|
$prod->fetch();
|
|
|
|
$sql = "INSERT INTO llx_propaldet (fk_propal, fk_product, price) VALUES ";
|
|
$sql .= " ($propalid,". $this->products[$i].", $prod->price) ; ";
|
|
|
|
if (! $db->query($sql) ) {
|
|
print $sql . '<br>' . $db->error() .'<br>';
|
|
}
|
|
}
|
|
/*
|
|
* Affectation au projet
|
|
*/
|
|
if ($this->projetidp) {
|
|
$sql = "UPDATE llx_propal SET fk_projet=$this->projetidp WHERE ref='$this->ref';";
|
|
$db->query($sql);
|
|
}
|
|
}
|
|
} else {
|
|
print $db->error() . '<b><br>'.$sql;
|
|
}
|
|
} else {
|
|
print $db->error() . '<b><br>'.$sql;
|
|
}
|
|
return 1;
|
|
}
|
|
/*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
Function fetch($db, $rowid) {
|
|
|
|
$sql = "SELECT ref,price,".$db->pdate(datep)."as dp FROM llx_propal WHERE rowid=$rowid;";
|
|
|
|
if ($db->query($sql) ) {
|
|
if ($db->num_rows()) {
|
|
$obj = $db->fetch_object(0);
|
|
|
|
$this->id = $rowid;
|
|
$this->datep = $obj->dp;
|
|
$this->ref = $obj->ref;
|
|
$this->price = $obj->price;
|
|
|
|
$db->free();
|
|
}
|
|
} else {
|
|
print $db->error();
|
|
}
|
|
}
|
|
}
|
|
?>
|
|
|