dolibarr/htdocs/paiement.class.php
2004-02-09 14:41:41 +00:00

273 lines
6.8 KiB
PHP
Raw Blame History

<?PHP
/* Copyright (C) 2002 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* 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$
*
*/
class Paiement
{
var $id;
var $db;
var $facid;
var $datepaye;
var $amount;
var $author;
var $paiementid; // numero du paiement dans le cas ou une facture paye +ieur fois
var $num_paiement;
var $note;
/*
*
*
*
*/
Function Paiement($DB, $soc_idp="")
{
$this->db = $DB ;
}
/*
*
*
*/
Function fetch($id)
{
$sql = "SELECT p.rowid,".$this->db->pdate("p.datep")." as dp, p.amount";
$sql .=", c.libelle as paiement_type, p.num_paiement";
$sql .= " FROM ".MAIN_DB_PREFIX."paiement as p, ".MAIN_DB_PREFIX."c_paiement as c";
$sql .= " WHERE p.fk_paiement = c.id";
$sql .=" AND p.rowid = ".$id;
$result = $this->db->query($sql);
if ($result)
{
if ($this->db->num_rows())
{
$obj = $this->db->fetch_object($result , 0);
$this->id = $obj->rowid;
$this->date = $obj->dp;
$this->numero = $obj->num_paiement;
$this->montant = $obj->amount;
$this->note = $obj->note;
$this->type_libelle = $obj->paiement_type;
}
$this->db->free();
//
// Factures concern<72>es
// TODO d<>placer dans une autre table l'info pour permettre le paiement
// Sur plusieurs factures
//
$sql = "SELECT p.rowid,".$this->db->pdate("p.datep")." as dp, p.amount";
$sql .=", c.libelle as paiement_type, p.num_paiement";
$sql .= " FROM ".MAIN_DB_PREFIX."paiement as p, ".MAIN_DB_PREFIX."c_paiement as c";
$sql .= " WHERE p.fk_paiement = c.id";
$sql .=" AND p.rowid = ".$id;
$result = $this->db->query($sql);
if ($result)
{
if ($this->db->num_rows())
{
$obj = $this->db->fetch_object($result , 0);
}
}
}
else
{
print $this->db->error();
}
}
/*
*
*
*
*/
Function create($pid, $user)
{
/*
* Insertion dans la base
*/
if (strlen(trim($this->amount)))
{
$this->amount = ereg_replace(",",".",$this->amount);
if ($pid > 0)
{
$sql = "INSERT INTO llx_paiement_facture (fk_facture, fk_paiement, amount)";
$sql .= " VALUES ($this->facid, $pid, $this->amount)";
$result = $this->db->query($sql);
$sql = "UPDATE llx_paiement SET amount = amount + ".$this->amount;
$result = $this->db->query($sql);
return $pid;
}
else
{
$sql = "INSERT INTO llx_paiement (fk_facture, datec, datep, amount, author, fk_paiement, num_paiement, note, fk_user_creat)";
$sql .= " VALUES ($this->facid, now(), $this->datepaye,$this->amount,'$this->author', $this->paiementid, '$this->num_paiement', '$this->note', $user->id)";
$result = $this->db->query($sql);
if ($result)
{
$this->id = $this->db->last_insert_id();
$sql = "INSERT INTO llx_paiement_facture (fk_facture, fk_paiement, amount)";
$sql .= " VALUES ($this->facid, ".$this->id.", $this->amount)";
$result = $this->db->query($sql);
$sql = "UPDATE llx_paiement SET amount = amount + ".$this->amount;
$result = $this->db->query($sql);
$sql = "INSERT INTO ".MAIN_DB_PREFIX."paiement (fk_facture, datec, datep, amount, author, fk_paiement, num_paiement, note)";
$sql .= " VALUES ($this->facid, now(), $this->datepaye,$this->amount,'$this->author', $this->paiementid, '$this->num_paiement', '$this->note')";
$result = $this->db->query($sql);
if ($result)
{
$this->id = $this->db->last_insert_id();
return $this->id;
}
else
{
print $this->db->error() ."<br>".$sql;
}
}
}
}
/*
*
*
*
*/
Function select($name, $filtre='', $id='')
{
$form = new Form($this->db);
if ($filtre == 'cr<63>dit')
{
$sql = "SELECT id, libelle FROM ".MAIN_DB_PREFIX."c_paiement WHERE type IN (0,2) ORDER BY libelle";
}
elseif ($filtre == 'd<>bit')
{
$sql = "SELECT id, libelle FROM ".MAIN_DB_PREFIX."c_paiement WHERE type IN (1,2) ORDER BY libelle";
}
else
{
$sql = "SELECT id, libelle FROM ".MAIN_DB_PREFIX."c_paiement ORDER BY libelle";
}
$form->select($name, $sql, $id);
}
/*
*
*
*
*/
Function delete()
{
$sql = "SELECT ".MAIN_DB_PREFIX."paiement.rowid FROM ".MAIN_DB_PREFIX."facture, ".MAIN_DB_PREFIX."paiement WHERE ".MAIN_DB_PREFIX."paiement.rowid = ".$this->id;
$sql .= " AND ".MAIN_DB_PREFIX."paiement.fk_facture = ".MAIN_DB_PREFIX."facture.rowid AND ".MAIN_DB_PREFIX."facture.paye = 0";
$result = $this->db->query($sql);
if ($result)
{
if ($this->db->num_rows() == 1)
{
$sql = "DELETE FROM ".MAIN_DB_PREFIX."paiement WHERE ".MAIN_DB_PREFIX."paiement.rowid = ".$this->id;
$result = $this->db->query($sql);
if ($result)
{
$sql = "DELETE FROM llx_paiement_facture WHERE fk_paiement.rowid = ".$this->id;
$result = $this->db->query($sql);
return 1;
}
else
{
print $this->db->error() ."<br>".$sql;
return 0;
}
}
}
else
{
print $this->db->error() ."<br>".$sql;
return 0;
}
}
/*
* Information sur l'objet
*
*/
Function info($id)
{
$sql = "SELECT c.rowid, ".$this->db->pdate("datec")." as datec, fk_user_creat, fk_user_modif";
$sql .= ", ".$this->db->pdate("tms")." as tms";
$sql .= " FROM ".MAIN_DB_PREFIX."paiement as c";
$sql .= " WHERE c.rowid = $id";
if ($this->db->query($sql))
{
if ($this->db->num_rows())
{
$obj = $this->db->fetch_object($result , 0);
$this->id = $obj->idp;
$cuser = new User($this->db, $obj->fk_user_creat);
$cuser->fetch();
$this->user_creation = $cuser;
$muser = new User($this->db, $obj->fk_user_modif);
$muser->fetch();
$this->user_modification = $muser;
$this->date_creation = $obj->datec;
$this->date_modification = $obj->tms;
}
$this->db->free();
}
else
{
print $this->db->error();
}
}
}
?>