dolibarr/htdocs/facture.class.php

1030 lines
25 KiB
PHP
Raw Normal View History

2002-09-25 20:36:27 +02:00
<?PHP
2004-02-13 14:48:44 +01:00
/* Copyright (C) 2002-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
2004-01-30 23:12:26 +01:00
* Copyright (C) 2004 Laurent Destailleur <eldy@users.sourceforge.net>
2002-09-25 20:36:27 +02:00
*
* 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$
*
*/
2004-07-12 15:22:19 +02:00
/**
* Gestion des factures
*
* @author Rodolphe Quiedeville <rodolphe@quiedeville.org>
* @author Laurent Destailleur <eldy@users.sourceforge.net>
* @see http://www.dolibarr.com/
*/
class Facture
{
2002-09-25 20:36:27 +02:00
var $id;
var $db;
var $socidp;
var $number;
var $author;
var $date;
var $ref;
var $amount;
var $remise;
var $tva;
var $total;
var $note;
var $paye;
2002-09-25 20:36:27 +02:00
var $db_table;
2002-12-14 17:25:46 +01:00
var $propalid;
2003-05-16 22:35:47 +02:00
var $projetid;
/**
2004-07-12 15:22:19 +02:00
* Initialisation de la classe
2002-09-25 20:36:27 +02:00
*
*/
2003-06-21 17:22:27 +02:00
Function Facture($DB, $soc_idp="", $facid="")
{
$this->db = $DB ;
$this->socidp = $soc_idp;
$this->products = array(); // Tableau de lignes de factures
$this->db_table = MAIN_DB_PREFIX."facture";
2003-06-21 17:22:27 +02:00
$this->amount = 0;
$this->remise = 0;
2003-09-06 02:31:41 +02:00
$this->remise_percent = 0;
2003-06-21 17:22:27 +02:00
$this->tva = 0;
$this->total = 0;
$this->propalid = 0;
$this->projetid = 0;
$this->id = $facid;
2002-09-25 20:36:27 +02:00
}
/**
2004-07-12 15:22:19 +02:00
* Cr<EFBFBD>ation la facture
2002-09-25 20:36:27 +02:00
*
*
*/
2003-08-13 01:04:33 +02:00
Function create($user)
{
2003-10-12 20:16:50 +02:00
/* On positionne en mode brouillon la facture */
2003-08-11 21:58:31 +02:00
$this->brouillon = 1;
2003-10-12 20:16:50 +02:00
/* Facture r<>currente */
if ($this->fac_rec > 0)
{
require_once DOL_DOCUMENT_ROOT . '/compta/facture/facture-rec.class.php';
$_facrec = new FactureRec($this->db, $this->fac_rec);
$_facrec->fetch($this->fac_rec);
$this->projetid = $_facrec->projetid;
$this->cond_reglement = $_facrec->cond_reglement_id;
$this->amount = $_facrec->amount;
$this->remise = $_facrec->remise;
$this->remise_percent = $_facrec->remise_percent;
}
$sql = "SELECT fdm,nbjour FROM ".MAIN_DB_PREFIX."cond_reglement WHERE rowid = $this->cond_reglement";
2003-07-21 15:05:24 +02:00
if ($this->db->query($sql) )
{
if ($this->db->num_rows())
{
$obj = $this->db->fetch_object(0);
$cdr_nbjour = $obj->nbjour;
$cdr_fdm = $obj->fdm;
}
$this->db->free();
}
$datelim = $this->date + ( $cdr_nbjour * 3600 * 24 );
/*
* Insertion dans la base
*/
$socid = $this->socidp;
$number = $this->number;
$amount = $this->amount;
$remise = $this->remise;
2002-09-25 20:36:27 +02:00
if (! $remise)
{
$remise = 0 ;
}
if (! $this->projetid)
{
$this->projetid = "NULL";
}
$totalht = ($amount - $remise);
$tva = tva($totalht);
$total = $totalht + $tva;
2003-09-14 10:19:12 +02:00
$sql = "INSERT INTO $this->db_table (facnumber, fk_soc, datec, amount, remise, remise_percent, datef, note, fk_user_author,fk_projet, fk_cond_reglement, date_lim_reglement) ";
2004-07-15 11:37:18 +02:00
$sql .= " VALUES ('$number','$socid', now(), '$totalht', '$remise','$this->remise_percent', ".$this->db->idate($this->date).",'".addslashes($this->note)."',$user->id, $this->projetid, $this->cond_reglement,".$this->db->idate($datelim).")";
if ( $this->db->query($sql) )
{
$this->id = $this->db->last_insert_id();
$sql = "UPDATE ".MAIN_DB_PREFIX."facture SET facnumber='(PROV".$this->id.")' WHERE rowid=".$this->id;
2003-09-23 19:50:20 +02:00
$this->db->query($sql);
if ($this->id && $this->propalid)
{
$sql = "INSERT INTO ".MAIN_DB_PREFIX."fa_pr (fk_facture, fk_propal) VALUES (".$this->id.",".$this->propalid.")";
$this->db->query($sql);
}
if ($this->id && $this->commandeid)
{
$sql = "INSERT INTO ".MAIN_DB_PREFIX."co_fa (fk_facture, fk_commande) VALUES (".$this->id.",".$this->commandeid.")";
$this->db->query($sql);
}
2003-08-13 01:04:33 +02:00
/*
* Produits/services
2003-08-13 01:04:33 +02:00
*
*/
for ($i = 0 ; $i < sizeof($this->products) ; $i++)
{
$prod = new Product($this->db, $this->products[$i]);
$prod->fetch($this->products[$i]);
$result_insert = $this->addline($this->id,
$prod->libelle,
$prod->price,
$this->products_qty[$i],
$prod->tva_tx,
$this->products[$i],
$this->products_remise_percent[$i],
$this->products_date_start[$i],
$this->products_date_end[$i]
);
if ( $result_insert < 0)
2003-08-13 01:04:33 +02:00
{
print $sql . '<br>' . $this->db->error() .'<br>';
}
}
2003-10-12 20:16:50 +02:00
/*
* Produits de la facture r<EFBFBD>currente
*
*/
if ($this->fac_rec > 0)
{
for ($i = 0 ; $i < sizeof($_facrec->lignes) ; $i++)
{
if ($_facrec->lignes[$i]->produit_id)
{
$prod = new Product($this->db, $_facrec->lignes[$i]->produit_id);
$prod->fetch($_facrec->lignes[$i]->produit_id);
}
$result_insert = $this->addline($this->id,
2003-11-05 11:00:08 +01:00
addslashes($_facrec->lignes[$i]->desc),
$_facrec->lignes[$i]->subprice,
2003-10-12 20:16:50 +02:00
$_facrec->lignes[$i]->qty,
$_facrec->lignes[$i]->tva_taux,
$_facrec->lignes[$i]->produit_id,
$_facrec->lignes[$i]->remise_percent);
if ( $result_insert < 0)
{
print $sql . '<br>' . $this->db->error() .'<br>';
}
}
}
/*
*
*
*/
2003-08-13 01:04:33 +02:00
$this->updateprice($this->id);
return $this->id;
}
else
{
print "Erreur facture.class fonction create: ".$this->db->error() . '<br>'.$sql.'<br>';
return 0;
}
}
2002-09-25 20:36:27 +02:00
/**
* Recup<EFBFBD>re l'objet facture et ses lignes de factures
2002-09-25 20:36:27 +02:00
*
*/
2003-09-09 18:06:22 +02:00
Function fetch($rowid, $societe_id=0)
2003-02-01 20:45:45 +01:00
{
$sql = "SELECT f.fk_soc,f.facnumber,f.amount,f.tva,f.total,f.total_ttc,f.remise,f.remise_percent,".$this->db->pdate("f.datef")." as df,f.fk_projet,".$this->db->pdate("f.date_lim_reglement")." as dlr, c.rowid as cond_regl_id, c.libelle, c.libelle_facture, f.note, f.paye, f.fk_statut, f.fk_user_author";
$sql .= " FROM ".MAIN_DB_PREFIX."facture as f, ".MAIN_DB_PREFIX."cond_reglement as c";
2003-07-21 15:05:24 +02:00
$sql .= " WHERE f.rowid=$rowid AND c.rowid = f.fk_cond_reglement";
2003-02-01 20:45:45 +01:00
2003-09-09 18:06:22 +02:00
if ($societe_id > 0)
{
$sql .= " AND f.fk_soc = ".$societe_id;
}
2003-02-01 20:45:45 +01:00
if ($this->db->query($sql) )
{
if ($this->db->num_rows())
{
$obj = $this->db->fetch_object(0);
2003-08-04 20:08:24 +02:00
$this->id = $rowid;
$this->datep = $obj->dp;
$this->date = $obj->df;
$this->ref = $obj->facnumber;
2003-09-09 17:38:50 +02:00
$this->amount = $obj->amount;
$this->remise = $obj->remise;
$this->total_ht = $obj->total;
2003-08-04 20:08:24 +02:00
$this->total_tva = $obj->tva;
2003-09-09 17:38:50 +02:00
$this->total_ttc = $obj->total_ttc;
2003-08-04 20:08:24 +02:00
$this->paye = $obj->paye;
2003-09-06 02:31:41 +02:00
$this->remise_percent = $obj->remise_percent;
2003-08-04 20:08:24 +02:00
$this->socidp = $obj->fk_soc;
$this->statut = $obj->fk_statut;
2003-07-21 15:05:24 +02:00
$this->date_lim_reglement = $obj->dlr;
2003-10-12 20:16:50 +02:00
$this->cond_reglement_id = $obj->cond_regl_id;
2003-08-04 20:08:24 +02:00
$this->cond_reglement = $obj->libelle;
$this->cond_reglement_facture = $obj->libelle_facture;
2003-08-04 20:08:24 +02:00
$this->projetid = $obj->fk_projet;
$this->note = stripslashes($obj->note);
2003-09-09 18:06:22 +02:00
$this->user_author = $obj->fk_user_author;
2003-08-04 20:08:24 +02:00
$this->lignes = array();
if ($this->statut == 0)
{
$this->brouillon = 1;
}
2003-02-01 20:45:45 +01:00
$this->db->free();
2003-04-13 16:47:05 +02:00
/*
* Lignes
*/
$sql = "SELECT l.fk_product, l.description, l.price, l.qty, l.rowid, l.tva_taux, l.remise, l.remise_percent, l.subprice, ".$this->db->pdate("l.date_start")." as date_start,".$this->db->pdate("l.date_end")." as date_end";
$sql .= " FROM ".MAIN_DB_PREFIX."facturedet as l WHERE l.fk_facture = ".$this->id;
2003-04-13 16:47:05 +02:00
$result = $this->db->query($sql);
if ($result)
{
$num = $this->db->num_rows();
$i = 0; $total = 0;
while ($i < $num)
{
$objp = $this->db->fetch_object($i);
$faclig = new FactureLigne($this->db);
2003-10-12 20:16:50 +02:00
$faclig->desc = stripslashes($objp->description);
$faclig->qty = $objp->qty;
$faclig->price = $objp->price;
$faclig->subprice = $objp->subprice;
2003-10-12 20:16:50 +02:00
$faclig->tva_taux = $objp->tva_taux;
$faclig->remise = $objp->remise;
2003-10-12 20:16:50 +02:00
$faclig->remise_percent = $objp->remise_percent;
$faclig->produit_id = $objp->fk_product;
$faclig->date_start = $objp->date_start;
$faclig->date_end = $objp->date_end;
2003-04-13 16:47:05 +02:00
$this->lignes[$i] = $faclig;
$i++;
}
$this->db->free();
2003-09-09 17:38:50 +02:00
return 1;
2003-04-13 16:47:05 +02:00
}
else
{
print $this->db->error();
2003-09-09 17:38:50 +02:00
return -1;
2003-04-13 16:47:05 +02:00
}
2003-02-01 20:45:45 +01:00
}
2003-07-21 15:05:24 +02:00
else
{
print "Error";
2003-09-09 17:38:50 +02:00
return -2;
2003-07-21 15:05:24 +02:00
}
2003-02-01 20:45:45 +01:00
}
else
{
print $this->db->error();
2003-09-09 17:38:50 +02:00
return -3;
2003-02-01 20:45:45 +01:00
}
}
/**
* Recup<EFBFBD>re l'objet client li<EFBFBD> <EFBFBD> la facture
2003-04-13 16:47:05 +02:00
*
*/
Function fetch_client()
{
$client = new Societe($this->db);
$client->fetch($this->socidp);
$this->client = $client;
}
/**
* Valide la facture
2002-09-25 20:36:27 +02:00
*
*
*/
2003-02-01 20:45:45 +01:00
Function valid($userid, $dir)
{
$sql = "UPDATE ".MAIN_DB_PREFIX."facture SET fk_statut = 1, date_valid=now(), fk_user_valid=$userid";
2003-02-01 20:45:45 +01:00
$sql .= " WHERE rowid = $this->id AND fk_statut = 0 ;";
2003-02-01 20:45:45 +01:00
if ($this->db->query($sql) )
{
return 1;
}
else
{
print $this->db->error() . ' in ' . $sql;
}
}
/**
* Class la facture
*
*
*/
Function classin($cat_id)
{
$sql = "UPDATE ".MAIN_DB_PREFIX."facture SET fk_projet = $cat_id";
$sql .= " WHERE rowid = $this->id;";
2003-02-01 20:45:45 +01:00
if ($this->db->query($sql) )
{
return 1;
}
else
{
print $this->db->error() . ' in ' . $sql;
}
2002-09-25 20:36:27 +02:00
}
/**
* Supprime la facture
2002-12-14 17:25:46 +01:00
*
*/
Function delete($rowid)
{
$sql = "DELETE FROM ".MAIN_DB_PREFIX."facture_tva_sum WHERE fk_facture = $rowid;";
2002-12-14 17:25:46 +01:00
if ( $this->db->query( $sql) )
{
$sql = "DELETE FROM ".MAIN_DB_PREFIX."fa_pr WHERE fk_facture = $rowid;";
2002-12-14 17:25:46 +01:00
if ($this->db->query( $sql) )
{
$sql = "DELETE FROM ".MAIN_DB_PREFIX."co_fa WHERE fk_facture = $rowid;";
2002-12-14 17:25:46 +01:00
if ($this->db->query( $sql) )
{
$sql = "DELETE FROM ".MAIN_DB_PREFIX."facturedet WHERE fk_facture = $rowid;";
2003-02-01 20:45:45 +01:00
if ($this->db->query( $sql) )
{
$sql = "DELETE FROM ".MAIN_DB_PREFIX."facture WHERE rowid = $rowid AND fk_statut = 0;";
if ($this->db->query( $sql) )
{
return 1;
}
else
{
print "Err : ".$this->db->error();
return -1;
}
2003-02-01 20:45:45 +01:00
}
else
{
print "Err : ".$this->db->error();
return -2;
2003-02-01 20:45:45 +01:00
}
2002-12-14 17:25:46 +01:00
}
else
{
print "Err : ".$this->db->error();
return -3;
2002-12-14 17:25:46 +01:00
}
}
else
{
print "Err : ".$this->db->error();
return -4;
}
2002-12-14 17:25:46 +01:00
}
else
{
print "Err : ".$this->db->error();
return -5;
2002-12-14 17:25:46 +01:00
}
}
/**
* Retourne le libell<EFBFBD> du statut d'une facture (brouillon, valid<EFBFBD>e, annul<EFBFBD>e, pay<EFBFBD>e)
2002-12-19 19:59:23 +01:00
*
*/
Function get_libstatut()
{
return $this->LibStatut($this->paye,$this->statut);
}
/**
* Tag la facture comme pay<EFBFBD>e compl<EFBFBD>tement
2002-12-19 19:59:23 +01:00
*
*/
2002-12-14 17:25:46 +01:00
Function set_payed($rowid)
{
$sql = "UPDATE ".MAIN_DB_PREFIX."facture set paye=1 WHERE rowid = $rowid ;";
2002-12-14 17:25:46 +01:00
$return = $this->db->query( $sql);
}
/**
* Tag la facture comme paiement commenc<EFBFBD>e
*
*/
Function set_paiement_started($rowid)
{
$sql = "UPDATE ".MAIN_DB_PREFIX."facture set fk_statut=2 WHERE rowid = $rowid ;";
$return = $this->db->query( $sql);
}
/**
* Tag la facture comme annul<EFBFBD>e
*
*/
Function set_canceled($rowid)
{
$sql = "UPDATE ".MAIN_DB_PREFIX."facture set fk_statut=3 WHERE rowid = $rowid ;";
$return = $this->db->query( $sql);
}
/**
* Tag la facture comme valid<EFBFBD>e et valide la facture
2003-07-07 12:03:53 +02:00
*
*/
2003-09-23 19:50:20 +02:00
Function set_valid($rowid, $user, $soc)
2002-12-14 17:25:46 +01:00
{
2003-08-04 20:08:24 +02:00
if ($this->brouillon)
{
$action_notify = 2; // ne pas modifier cette valeur
2003-09-23 19:50:20 +02:00
$numfa = facture_get_num($soc); // d<>finit dans includes/modules/facture
$sql = "UPDATE ".MAIN_DB_PREFIX."facture set facnumber='$numfa', fk_statut = 1, fk_user_valid = $user->id";
/* Si l'option est activ<69>e on force la date de facture */
if (defined("FAC_FORCE_DATE_VALIDATION") && FAC_FORCE_DATE_VALIDATION == "1")
{
$sql .= ", datef=now()";
}
$sql .= " WHERE rowid = $rowid ;";
2003-08-04 20:08:24 +02:00
$result = $this->db->query( $sql);
2004-01-30 23:12:26 +01:00
if (! $result) { print "Err : ".$this->db->error(); return -1; }
2003-08-04 20:08:24 +02:00
/*
* Notify
*
*/
$filepdf = FAC_OUTPUTDIR . "/" . $this->ref . "/" . $this->ref . ".pdf";
$mesg = "La facture ".$this->ref." a <20>t<EFBFBD> valid<69>e.\n";
$notify = New Notify($this->db);
$notify->send($action_notify, $this->socidp, $mesg, "facture", $rowid, $filepdf);
/*
* Update Stats
*
*/
$sql = "SELECT fk_product FROM ".MAIN_DB_PREFIX."facturedet WHERE fk_facture = ".$this->id;
2003-10-12 20:16:50 +02:00
$sql .= " AND fk_product > 0";
2003-08-04 20:08:24 +02:00
$result = $this->db->query($sql);
if ($result)
{
2003-08-04 20:08:24 +02:00
$num = $this->db->num_rows();
$i = 0;
while ($i < $num)
{
$obj = $this->db->fetch_object($i);
$sql = "UPDATE ".MAIN_DB_PREFIX."product SET nbvente=nbvente+1 WHERE rowid = ".$obj->fk_product;
2003-08-04 20:08:24 +02:00
$db2 = $this->db->clone();
$result = $db2->query($sql);
$i++;
}
}
2003-08-04 20:08:24 +02:00
/*
* Contrats
*/
$contrat = new Contrat($this->db);
$contrat->create_from_facture($this->id, $user, $this->socidp);
2003-08-03 20:04:50 +02:00
2003-08-04 20:08:24 +02:00
return $result;
}
2003-02-01 20:45:45 +01:00
}
/**
* Ajoute un produit dans l'objet facture
2003-02-01 20:45:45 +01:00
*
*/
Function add_product($idproduct, $qty, $remise_percent, $datestart='', $dateend='')
2003-08-13 01:04:33 +02:00
{
if ($idproduct > 0)
{
$i = sizeof($this->products); // On recupere nb de produit deja dans tableau products
$this->products[$i] = $idproduct; // On ajoute a la suite
2003-08-13 01:04:33 +02:00
if (!$qty)
{
$qty = 1 ;
}
$this->products_qty[$i] = $qty;
$this->products_remise_percent[$i] = $remise_percent;
if ($datestart) { $this->products_date_start[$i] = $datestart; }
if ($dateend) { $this->products_date_end[$i] = $dateend; }
2003-08-13 01:04:33 +02:00
}
}
/**
2004-07-21 13:10:57 +02:00
* Ajoute une ligne de facture (associ<EFBFBD> <EFBFBD> aucun produit/service pr<EFBFBD>d<EFBFBD>fini)
2003-08-13 01:04:33 +02:00
*
*/
Function addline($facid, $desc, $pu, $qty, $txtva, $fk_product=0, $remise_percent=0, $datestart='', $dateend='')
2003-02-01 20:45:45 +01:00
{
2003-08-04 20:08:24 +02:00
if ($this->brouillon)
{
if (strlen(trim($qty))==0)
{
$qty=1;
}
2003-09-23 19:50:20 +02:00
$remise = 0;
2004-07-21 13:10:57 +02:00
$_price = $pu;
$subprice = $pu;
2003-09-23 19:50:20 +02:00
if (trim(strlen($remise_percent)) > 0)
{
2004-07-21 13:10:57 +02:00
$remise = ($pu * $remise_percent / 100);
$_price = ($pu - $remise);
2003-09-23 19:50:20 +02:00
}
2004-07-21 13:10:57 +02:00
/* Formatage des prix */
$_price = ereg_replace(",",".",$_price);
$subprice = ereg_replace(",",".",$subprice);
$sql = "INSERT INTO ".MAIN_DB_PREFIX."facturedet (fk_facture,description,price,qty,tva_taux, fk_product, remise_percent, subprice, remise, date_start, date_end)";
$sql .= " VALUES ($facid, '".addslashes($desc)."','$_price','$qty','$txtva',$fk_product,'$remise_percent','$subprice','$remise', ";
2004-07-21 13:10:57 +02:00
if ($datestart) { $sql.= "'$datestart', "; }
else { $sql.=" null, "; }
if ($dateend) { $sql.= "'$dateend' "; }
else { $sql.=" null "; }
$sql.=")";
2003-08-04 20:08:24 +02:00
if ( $this->db->query( $sql) )
{
$this->updateprice($facid);
return 1;
}
else
{
print "Erreur facture.class fonction addline : ".$this->db->error()."<br>$sql<br>";
return -1;
2003-08-04 20:08:24 +02:00
}
}
2003-02-01 20:45:45 +01:00
}
/**
* Mets <EFBFBD> jour une ligne de facture
* Retourne 0 si erreur
2003-02-01 20:45:45 +01:00
*/
Function updateline($rowid, $desc, $pu, $qty, $remise_percent=0, $datestart='', $dateend='')
2003-02-01 22:13:19 +01:00
{
2003-08-04 20:08:24 +02:00
if ($this->brouillon)
{
if (strlen(trim($qty))==0)
{
$qty=1;
}
2003-09-23 19:50:20 +02:00
$remise = 0;
2004-07-21 13:10:57 +02:00
$price = ereg_replace(",",".",$pu);
2003-09-23 19:50:20 +02:00
$subprice = $price;
if (trim(strlen($remise_percent)) > 0)
{
$remise = round(($pu * $remise_percent / 100), 2);
$price = $pu - $remise;
}
else
{
$remise_percent=0;
}
2004-07-21 13:10:57 +02:00
$sql = "UPDATE ".MAIN_DB_PREFIX."facturedet set description='$desc'";
$sql .= ",price='" . ereg_replace(",",".",$price)."'";
$sql .= ",subprice='" . ereg_replace(",",".",$subprice)."'";
$sql .= ",remise='". ereg_replace(",",".",$remise)."'";
$sql .= ",remise_percent='".ereg_replace(",",".",$remise_percent)."'";
$sql .= ",qty='$qty'";
if ($datestart) { $sql.= ",date_start='$datestart'"; }
else { $sql.=",date_start=null"; }
if ($dateend) { $sql.= ",date_end='$dateend'"; }
else { $sql.=",date_end=null"; }
2004-07-21 13:10:57 +02:00
$sql .= " WHERE rowid = $rowid ;";
2004-07-21 13:10:57 +02:00
2003-08-04 20:08:24 +02:00
$result = $this->db->query( $sql);
if ($result) {
$this->updateprice($this->id);
}
else {
print "Erreur : ".$this->db->error()."<br>".$sql;
}
return $result;
2003-02-01 22:13:19 +01:00
2003-08-04 20:08:24 +02:00
}
2003-02-01 22:13:19 +01:00
}
/**
* Supprime une ligne
2003-02-01 22:13:19 +01:00
*
*/
2003-02-01 20:45:45 +01:00
Function deleteline($rowid)
{
2003-08-04 20:08:24 +02:00
if ($this->brouillon)
{
$sql = "DELETE FROM ".MAIN_DB_PREFIX."facturedet WHERE rowid = $rowid;";
2003-08-04 20:08:24 +02:00
$result = $this->db->query( $sql);
2003-02-01 20:45:45 +01:00
2003-08-04 20:08:24 +02:00
$this->updateprice($this->id);
}
2003-02-01 20:45:45 +01:00
}
/**
2003-10-09 01:18:41 +02:00
* Mise <EFBFBD> jour des sommes de la facture
2003-02-01 20:45:45 +01:00
*
*/
Function updateprice($facid)
{
include_once DOL_DOCUMENT_ROOT . "/lib/price.lib.php";
$err=0;
$sql = "SELECT price, qty, tva_taux FROM ".MAIN_DB_PREFIX."facturedet WHERE fk_facture = $facid;";
2003-02-01 20:45:45 +01:00
$result = $this->db->query($sql);
if ($result)
{
2003-07-10 19:06:26 +02:00
$num = $this->db->num_rows();
$i = 0;
while ($i < $num)
2003-02-01 20:45:45 +01:00
{
2003-07-10 19:06:26 +02:00
$obj = $this->db->fetch_object($i);
$products[$i][0] = $obj->price;
$products[$i][1] = $obj->qty;
$products[$i][2] = $obj->tva_taux;
2003-09-15 18:06:16 +02:00
2003-07-10 19:06:26 +02:00
$i++;
2003-02-01 20:45:45 +01:00
}
$this->db->free();
2003-09-15 18:06:16 +02:00
/*
*
2003-09-15 18:06:16 +02:00
*/
$calculs = calcul_price($products, $this->remise_percent);
$this->total_remise = $calculs[3];
$this->amount_ht = $calculs[4];
$this->total_ht = $calculs[0];
$this->total_tva = $calculs[1];
$this->total_ttc = $calculs[2];
$tvas = $calculs[5];
/*
*
*/
2004-07-21 13:10:57 +02:00
$sql = "UPDATE ".MAIN_DB_PREFIX."facture ";
$sql .= "SET amount ='".ereg_replace(",",".",$this->amount_ht)."'";
$sql .= ", remise='". ereg_replace(",",".",$this->total_remise)."'";
$sql .= ", total='". ereg_replace(",",".",$this->total_ht)."'";
$sql .= ", tva='". ereg_replace(",",".",$this->total_tva)."'";
$sql .= ", total_ttc='".ereg_replace(",",".",$this->total_ttc)."'";
2003-02-01 20:45:45 +01:00
$sql .= " WHERE rowid = $facid ;";
2003-09-09 17:38:50 +02:00
if ( $this->db->query($sql) )
{
$sql = "DELETE FROM ".MAIN_DB_PREFIX."facture_tva_sum WHERE fk_facture=".$this->id;
if ( $this->db->query($sql) )
{
foreach ($tvas as $key => $value)
{
$sql = "REPLACE INTO ".MAIN_DB_PREFIX."facture_tva_sum SET fk_facture=".$this->id;
2004-07-15 11:37:18 +02:00
$sql .= ", amount = '".$tvas[$key]."'";
$sql .= ", tva_tx='".$key."'";
if (! $this->db->query($sql) )
{
print "$sql<br>";
$err++;
}
}
}
else
{
$err++;
}
if ($err == 0)
{
return 1;
}
else
{
return -3;
}
2003-09-09 17:38:50 +02:00
}
else
{
print "$sql<br>";
return -2;
}
2003-02-01 20:45:45 +01:00
}
2003-07-10 19:06:26 +02:00
else
{
print "Error";
2003-09-09 17:38:50 +02:00
return -1;
2003-07-10 19:06:26 +02:00
}
2002-12-14 17:25:46 +01:00
}
2003-09-17 19:31:32 +02:00
/**
* Applique une remise
2003-07-24 13:05:38 +02:00
*
*/
2003-09-06 02:31:41 +02:00
Function set_remise($user, $remise)
{
if ($user->rights->facture->creer)
{
$this->remise_percent = $remise ;
$sql = "UPDATE ".MAIN_DB_PREFIX."facture SET remise_percent = ".ereg_replace(",",".",$remise);
2003-09-06 02:31:41 +02:00
$sql .= " WHERE rowid = $this->id AND fk_statut = 0 ;";
if ($this->db->query($sql) )
{
$this->updateprice($this->id);
return 1;
}
else
{
print $this->db->error() . ' in ' . $sql;
return 0;
}
}
}
2003-09-17 19:31:32 +02:00
/**
* Envoie une relance
2003-09-06 02:31:41 +02:00
*
*
*/
2003-07-24 13:05:38 +02:00
Function send_relance($destinataire, $replytoname, $replytomail, $user)
{
$soc = new Societe($this->db, $this->socidp);
$file = FAC_OUTPUTDIR . "/" . $this->ref . "/" . $this->ref . ".pdf";
if (file_exists($file))
{
2002-12-14 17:25:46 +01:00
2003-07-24 13:05:38 +02:00
$sendto = $soc->contact_get_email($destinataire);
$sendtoid = $destinataire;
if (strlen($sendto))
{
$subject = "Relance facture $this->ref";
$message = "Nous apportons <20> votre connaissance que la facture $this->ref n'a toujours pas <20>t<EFBFBD> r<>gl<67>e.\n\nCordialement\n\n";
$filename = "$this->ref.pdf";
$replyto = $replytoname . " <".$replytomail .">";
$mailfile = new CMailFile($subject,
$sendto,
$replyto,
$message,
array($file),
array("application/pdf"),
array($filename)
);
2003-07-24 13:05:38 +02:00
if ( $mailfile->sendfile() )
{
$sendto = htmlentities($sendto);
$sql = "INSERT INTO ".MAIN_DB_PREFIX."actioncomm (datea,fk_action,fk_soc,note,fk_facture, fk_contact,fk_user_author, label, percent) VALUES (now(), 10 ,$this->socidp ,'Relance envoy<6F>e <20> $sendto',$this->id, $sendtoid, $user->id, 'Relance Facture par mail',100);";
2003-07-24 13:05:38 +02:00
if (! $this->db->query($sql) )
{
print $this->db->error();
print "<p>$sql</p>";
}
}
else
{
print "<b>!! erreur d'envoi<br>$sendto<br>$replyto<br>$filename";
}
}
else
{
print "Can't get email $sendto";
}
}
}
/**
* Renvoie la liste des sommes de tva
*
*/
Function getSumTva()
{
$sql = "SELECT amount, tva_tx FROM ".MAIN_DB_PREFIX."facture_tva_sum WHERE fk_facture = ".$this->id;
if ($this->db->query($sql))
{
$num = $this->db->num_rows();
$i = 0;
while ($i < $num)
{
$row = $this->db->fetch_row($i);
$tvs[$row[1]] = $row[0];
$i++;
}
return $tvs;
}
else
{
return -1;
}
}
2003-10-27 13:39:21 +01:00
/**
* Renvoie la sommes des paiements deja effectu<EFBFBD>s
* Utilis<EFBFBD> entre autre par certains mod<EFBFBD>les de factures
2003-10-27 13:39:21 +01:00
*/
Function getSommePaiement()
{
$sql = "SELECT sum(amount) FROM ".MAIN_DB_PREFIX."paiement_facture WHERE fk_facture = ".$this->id;
2003-10-27 13:39:21 +01:00
if ($this->db->query($sql))
{
$row = $this->db->fetch_row(0);
return $row[0];
}
else
{
return -1;
}
}
2003-10-09 01:18:41 +02:00
/**
* RODO TODO
2002-12-14 17:25:46 +01:00
*
*/
Function pdf()
2003-07-10 19:06:26 +02:00
{
2002-12-14 17:25:46 +01:00
}
/**
* Renvoi un libell<EFBFBD> du statut
*
*/
Function LibStatut($paye,$statut)
{
if (! $paye)
{
if ($statut == 0) return 'Brouillon (<28> valider)';
if ($statut == 3) return 'Annul<75>e';
return 'Valid<69>e (<28> payer)';
}
else
{
return 'Pay<61>e';
}
}
2004-07-21 17:20:37 +02:00
/**
* Mets <EFBFBD> jour les commentaires
*
*/
Function update_note($note)
{
$sql = "UPDATE ".MAIN_DB_PREFIX."facture SET note = '$note'";
$sql .= " WHERE rowid =". $this->id;
if ($this->db->query($sql) )
{
return 1;
}
else
{
print $this->db->error() . ' in ' . $sql;
return -1;
}
}
/*
* Information sur l'objet
*
*/
Function info($id)
{
$sql = "SELECT c.rowid, ".$this->db->pdate("datec")." as datec";
$sql .= ", fk_user_author, fk_user_valid";
$sql .= " FROM ".MAIN_DB_PREFIX."facture as c";
$sql .= " WHERE c.rowid = $id";
if ($this->db->query($sql))
{
if ($this->db->num_rows())
{
$obj = $this->db->fetch_object($result , 0);
2004-07-21 17:20:37 +02:00
$this->id = $obj->rowid;
$cuser = new User($this->db, $obj->fk_user_author);
$cuser->fetch();
$this->user_creation = $cuser;
$vuser = new User($this->db, $obj->fk_user_valid);
$vuser->fetch();
$this->user_validation = $vuser;
$this->date_creation = $obj->datec;
}
$this->db->free();
}
else
{
print $this->db->error();
}
}
2004-07-21 17:20:37 +02:00
2003-02-01 20:45:45 +01:00
}
2004-07-12 15:22:19 +02:00
class FactureLigne
{
Function FactureLigne($DB)
{
$this->db= $DB ;
}
/**
* Recup<EFBFBD>re l'objet ligne de facture
*
*/
Function fetch($rowid, $societe_id=0)
{
$sql = "SELECT fk_product, description, price, qty, rowid, tva_taux, remise, remise_percent, subprice, ".$this->db->pdate("date_start")." as date_start,".$this->db->pdate("date_end")." as date_end";
$sql .= " FROM ".MAIN_DB_PREFIX."facturedet WHERE rowid = ".$rowid;
$result = $this->db->query($sql);
if ($result)
{
$objp = $this->db->fetch_object($i);
$this->desc = stripslashes($objp->description);
$this->qty = $objp->qty;
$this->price = $objp->price;
$this->subprice = $objp->subprice;
$this->tva_taux = $objp->tva_taux;
$this->remise = $objp->remise;
$this->remise_percent = $objp->remise_percent;
$this->produit_id = $objp->fk_product;
$this->date_start = $objp->date_start;
$this->date_end = $objp->date_end;
$i++;
}
else {
print "Erreur ".$this->db->error()."<br>".$sql;
}
$this->db->free();
}
}
2004-07-12 15:22:19 +02:00
2002-09-25 20:36:27 +02:00
?>