1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/noalyss_ynh.git synced 2024-09-03 19:46:20 +02:00
noalyss_ynh/sources/include/class_gestion_purchase.php

129 lines
3.9 KiB
PHP
Raw Normal View History

2015-09-27 00:35:53 +02:00
<?php
/*
* This file is part of NOALYSS.
*
* NOALYSS 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.
*
* NOALYSS 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 NOALYSS; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
// Copyright Author Dany De Bontridder danydb@aevalys.eu
/*!\file
* \brief Definition of the class gestion_purchase
*/
/*! \brief this object handles the table quant_purchase
*
*/
require_once NOALYSS_INCLUDE.'/class_gestion_table.php';
class gestion_purchase extends gestion_table
{
var $qp_id; /*!< id */
var $qp_internal; /*!< internal code */
var $qp_fiche; /*!< card id (fiche.f_id) */
var $qp_quantite; /*!< quantity */
var $qp_price; /*!< quantity */
var $qp_vat; /*!< vat amount */
var $qp_vat_code; /*!< vat_code */
var $qp_nd_amount; /*!< no deductible */
var $qp_nd_tva; /*!< tva not deductible */
var $qp_nd_tva_recup; /*!< tva ded via taxe */
var $qp_supplier; /*!< supplier code (f_id) */
var $qp_valid;
var $j_id; /*!< jrnx.j_id
*/
var $qp_dep_priv; /*!< private purchase */
var $qp_vat_sided; /* autoliquidation */
/*!\brief return an array of gestion_table, the object are
* retrieved thanks the qs_internal
*/
function get_list()
{
if ($this->qp_internal=="")
throw new Exception(__FILE__.__LINE__." qs_internal est vide");
$sql="select qp_id,
qp_internal,
qp_fiche,
qp_quantite,
qp_price,
qp_vat,
qp_vat_code,
tva_rate,
tva_label,
qp_nd_amount,
qp_nd_tva,
qp_nd_tva_recup,
qp_supplier,
j_id,
qp_dep_priv,
qp_vat_sided
from quant_purchase left join tva_rate on (qp_vat_code=tva_id)
where qp_internal='".$this->qp_internal."'";
$ret=$this->db->exec_sql($sql);
// $res contains all the line
$res=Database::fetch_all($ret);
if ( sizeof($res)==0) return null;
$count=0;
foreach ($res as $row)
{
$t_gestion_purchase=new gestion_purchase($this->db);
foreach ($row as $idx=>$value)
$t_gestion_purchase->$idx=$value;
$array[$count]=clone $t_gestion_purchase;
$count++;
}
return $array;
}
function search_by_jid($p_jid)
{
$res=$this->db->exec_sql("select qp_id from quant_purchase where j_id=".$p_jid);
if ( Database::num_row($res) == 1)
$this->qp_id=Database::fetch_result($res,0,0);
else
$this->qp_id=0;
}
function load()
{
$sql="select qp_id,
qp_internal,
qp_fiche,
qp_quantite,
qp_price,
qp_vat,
qp_vat_code,
qp_nd_amount,
qp_nd_tva,
qp_nd_tva_recup,
qp_supplier,
j_id,
qp_dep_priv,
qp_vat_sided
from quant_purchase
where qp_id=".$this->qp_id;
$ret=$this->db->exec_sql($sql);
// $res contains all the line
$res=Database::fetch_all($ret);
if ( empty($res) ) return null;
foreach ($res[0] as $idx=>$value)
$this->$idx=$value;
}
}