79 lines
2.4 KiB
PHP
79 lines
2.4 KiB
PHP
<?php
|
|
/*
|
|
* This file is part of PhpCompta.
|
|
*
|
|
* PhpCompta 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.
|
|
*
|
|
* PhpCompta 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 PhpCompta; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
/* $Revision$ */
|
|
|
|
// Copyright Author Dany De Bontridder ddebontridder@yahoo.fr
|
|
|
|
/* !\file concern the table quant_sold
|
|
*/
|
|
|
|
/*! \brief this object handles the table quant_sold
|
|
*
|
|
*/
|
|
/*!\todo the qs_valid field is not used it should be delete into
|
|
* the table quant_sold
|
|
*/
|
|
require_once ('class_gestion_table.php');
|
|
|
|
|
|
class gestion_sold extends gestion_table
|
|
{
|
|
var $qs_id; /*!< $qs_id primary key */
|
|
var $qs_internal; /*!< qs_internal */
|
|
var $qs_fiche; /*!< f_id code */
|
|
var $qs_quantite; /*!< quantity of the card */
|
|
var $qs_price; /*!< price */
|
|
var $qs_vat; /*!< vat_amount */
|
|
var $qs_vat_code; /*!< vat_code */
|
|
var $qs_client; /*!< f_id of the customer */
|
|
var $qs_valid; /*!< will not be used */
|
|
var $j_id; /*!< jrnx.j_id */
|
|
/*!\brief return an array of gestion_table, the object are
|
|
* retrieved thanks the qs_internal
|
|
*/
|
|
function get_list() {
|
|
if ($this->qs_internal=="")
|
|
exit (__FILE__.__LINE__." qs_internal est vide");
|
|
$sql="select qs_id,
|
|
qs_internal,
|
|
qs_fiche,
|
|
qs_quantite,
|
|
qs_price,
|
|
qs_vat,
|
|
qs_vat_code,
|
|
qs_client,
|
|
j_id
|
|
from quant_sold
|
|
where qs_internal='".$this->qs_internal."'";
|
|
$ret=ExecSql($this->db,$sql);
|
|
// $res contains all the line
|
|
$res=pg_fetch_all($ret);
|
|
|
|
if ( sizeof($res)==0) return null;
|
|
$count=0;
|
|
foreach ($res as $row) {
|
|
$t_gestion_sold=new gestion_sold($this->db);
|
|
foreach ($row as $idx=>$value)
|
|
$t_gestion_sold->$idx=$value;
|
|
$array[$count]=clone $t_gestion_sold;
|
|
$count++;
|
|
}
|
|
return $array;
|
|
}
|
|
}
|