* Copyright (C) 2005-2009 Regis Houssin * * 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$ */ /* \file htdocs/compta/prelevement/ligne-prelevement.class.php \ingroup prelevement \brief Fichier de la classe des lignes de prelevements \version $Revision$ */ /** * \class LignePrelevement * \brief Classe permettant la gestion des prelevements */ class LignePrelevement { var $id; var $db; var $statuts = array(); /** * \brief Constructeur de la classe * \param DB Handler acces base de donnees * \param user Objet user */ function LignePrelevement($DB, $user) { $this->db = $DB ; $this->user = $user; // List of language codes for status $this->statuts[0] = "Waiting"; $this->statuts[2] = "Credited"; $this->statuts[3] = "Refused"; } /** * \brief Recupere l'objet prelevement * \param rowid id de la facture a recuperer */ function fetch($rowid) { global $conf; $result = 0; $sql = "SELECT pl.rowid, pl.amount, p.ref, p.rowid as bon_rowid"; $sql.= ", pl.statut, pl.fk_soc"; $sql.= " FROM ".MAIN_DB_PREFIX."prelevement_lignes as pl"; $sql.= ", ".MAIN_DB_PREFIX."prelevement_bons as p"; $sql.= " WHERE pl.rowid=".$rowid; $sql.= " AND p.rowid = pl.fk_prelevement_bons"; $sql.= " AND p.entity = ".$conf->entity; if ($this->db->query($sql)) { if ($this->db->num_rows()) { $obj = $this->db->fetch_object(); $this->id = $obj->rowid; $this->amount = $obj->amount; $this->socid = $obj->fk_soc; $this->statut = $obj->statut; $this->bon_ref = $obj->ref; $this->bon_rowid = $obj->bon_rowid; } else { $result++; dol_syslog("LignePrelevement::Fetch rowid=$rowid numrows=0"); } $this->db->free(); } else { $result++; dol_syslog("LignePrelevement::Fetch rowid=$rowid"); dol_syslog($this->db->error()); } return $result; } } ?>