Task #5410 : Commercial
This commit is contained in:
parent
dbe39bbc79
commit
75b1ebd5e5
7 changed files with 265 additions and 14 deletions
|
|
@ -68,6 +68,7 @@ if ( isset ($_POST["update"] ) ) {
|
|||
if ( pg_NumRows($Ret) == 0 || $p_parent==$old_line ) {
|
||||
echo '<SCRIPT> alert(" Ne peut pas modifier; aucune poste parent"); </SCRIPT>';
|
||||
} else {
|
||||
|
||||
$Ret=ExecSql($cn,"update tmp_pcmn set pcm_val=$p_val, pcm_lib='$p_lib',pcm_val_parent=$p_parent where pcm_val=$old_line");
|
||||
}
|
||||
} else {
|
||||
|
|
|
|||
|
|
@ -21,28 +21,35 @@
|
|||
require_once("constant.php");
|
||||
require_once("postgres.php");
|
||||
require_once("class_parm_code.php");
|
||||
|
||||
require_once('class_fiche.php');
|
||||
require_once('class_poste.php');
|
||||
require_once('user_common.php');
|
||||
|
||||
// Use the view vw_customer
|
||||
//
|
||||
class Customer {
|
||||
class Customer extends fiche{
|
||||
var $id; // f_id
|
||||
var $poste; // poste comptable
|
||||
var $db; // base de donnée
|
||||
var $name;
|
||||
var $street;
|
||||
var $country;
|
||||
var $cp;
|
||||
var $vat_number;
|
||||
var $fiche_def_ref; // fiche_def_ref.frd_id
|
||||
// Constructor
|
||||
// only a db connection is needed
|
||||
function Customer($p_cn) {
|
||||
$this->db=$p_cn;
|
||||
function Customer($p_cn,$p_id=0) {
|
||||
$this->fiche_def_ref=FICHE_TYPE_CLIENT;
|
||||
fiche::fiche($p_cn,$p_id) ;
|
||||
|
||||
}
|
||||
// Get all info contains in the view
|
||||
// thanks to the poste elt
|
||||
function GetFromPoste($p_poste=0) {
|
||||
$this->poste=($p_poste==0)?$this->poste:$p_poste;
|
||||
$sql="select * from vw_client where poste_comptable=".$this->poste;
|
||||
$Res=ExecSql($this->db,$sql);
|
||||
$Res=ExecSql($this->cn,$sql);
|
||||
if ( pg_NumRows($Res) == 0) return null;
|
||||
// There is only _one_ row by customer
|
||||
$row=pg_fetch_array($Res,0);
|
||||
|
|
@ -58,7 +65,7 @@ class Customer {
|
|||
**************************************************
|
||||
* Purpose : Get all the info for making a vat listing
|
||||
* for the vat administration
|
||||
*
|
||||
* TODO : optimize SQL
|
||||
* parm :
|
||||
* - periode
|
||||
*
|
||||
|
|
@ -72,15 +79,15 @@ class Customer {
|
|||
|
||||
// BASE ACCOUNT
|
||||
// for belgium
|
||||
$s=new parm_code($this->db,'VENTE');
|
||||
$s->Get()
|
||||
$s=new parm_code($this->cn,'VENTE');
|
||||
$s->Get();
|
||||
$SOLD=$s->p_value;
|
||||
|
||||
$c=new parm_code($this->db,'CUSTOMER');
|
||||
$c=new parm_code($this->cn,'CUSTOMER');
|
||||
$c->Get();
|
||||
$CUSTOMER=$c->p_value;
|
||||
|
||||
$t=new parm_code($this->db,'COMPTE_TVA');
|
||||
$t=new parm_code($this->cn,'COMPTE_TVA');
|
||||
$t->Get();
|
||||
$TVA=$t->p_value;
|
||||
// Get all the sell operation
|
||||
|
|
@ -95,7 +102,7 @@ where
|
|||
$cond_sql
|
||||
";
|
||||
|
||||
$Res=ExecSql($this->db,$sql);
|
||||
$Res=ExecSql($this->cn,$sql);
|
||||
// Foreach operation
|
||||
// where 7% or tva account are involved
|
||||
// and store the result in an array (a_Res)
|
||||
|
|
@ -108,7 +115,7 @@ where
|
|||
|
||||
// select the operation
|
||||
//----
|
||||
$Res2=ExecSql($this->db,"select j_poste,j_montant,j_debit from jrnx where j_grpt=".$row1['j_grpt']);
|
||||
$Res2=ExecSql($this->cn,"select j_poste,j_montant,j_debit from jrnx where j_grpt=".$row1['j_grpt']);
|
||||
$a_row=array();
|
||||
// Store the result in the array
|
||||
//---
|
||||
|
|
@ -167,6 +174,111 @@ where
|
|||
}
|
||||
return $a_Res;
|
||||
}
|
||||
|
||||
/* function Display
|
||||
**************************************************
|
||||
* Purpose : Display object instance
|
||||
*
|
||||
* parm :
|
||||
* -
|
||||
* gen :
|
||||
* -
|
||||
* return:
|
||||
*/
|
||||
function Display()
|
||||
{
|
||||
var_dump($this);
|
||||
}
|
||||
/* function Get
|
||||
**************************************************
|
||||
* Purpose : Get Attribute of client
|
||||
*
|
||||
* parm :
|
||||
* -
|
||||
* gen :
|
||||
* -
|
||||
* return:
|
||||
*/
|
||||
function Get()
|
||||
{
|
||||
echo_debug('class_client',__LINE__,'Get');
|
||||
fiche::getAttribut();
|
||||
}
|
||||
/* function GetAll
|
||||
**************************************************
|
||||
* Purpose : Get array of fiche with all attribute
|
||||
*
|
||||
* parm :
|
||||
* - none
|
||||
* gen :
|
||||
* -
|
||||
* return: array of fiche with all attribute
|
||||
*/
|
||||
function GetAll($p_offset=-1)
|
||||
{
|
||||
return fiche::GetByDef($this->fiche_def_ref,$p_offset);
|
||||
}
|
||||
/* function Summary
|
||||
**************************************************
|
||||
* Purpose : show the default screen
|
||||
*
|
||||
* parm :
|
||||
* -
|
||||
* gen :
|
||||
* -
|
||||
* return: string to display
|
||||
*/
|
||||
function Summary()
|
||||
{
|
||||
|
||||
$url=urlencode($_SERVER['REQUEST_URI']);
|
||||
$script=$_SERVER['SCRIPT_NAME'];
|
||||
// Creation of the nav bar
|
||||
// Get the max numberRow
|
||||
$all_client=$this->CountByDef($this->fiche_def_ref);
|
||||
// Get offset and page variable
|
||||
$offset=( isset ($_REQUEST['offset'] )) ?$_REQUEST['offset']:0;
|
||||
$page=(isset($_REQUEST['page']))?$_REQUEST['page']:1;
|
||||
$bar=jrn_navigation_bar($offset,$all_client,$_SESSION['g_pagesize'],$page);
|
||||
|
||||
// Get The result Array
|
||||
$step_client=$this->GetAll($offset);
|
||||
if ( $all_client == 0 ) return "";
|
||||
$r=$bar;
|
||||
$r.="<table border=1><TR>
|
||||
<TH>Quick Code</TH>
|
||||
<th>Nom</th>
|
||||
<th>Adresse</th>
|
||||
<th>Solde</th>
|
||||
<th>Action </th>
|
||||
</TR>";
|
||||
foreach ($step_client as $client ) {
|
||||
$r.="<TR>";
|
||||
$r.="<TD>".$client->strAttribut(ATTR_DEF_QUICKCODE)."</TD>";
|
||||
$r.="<TD>".$client->strAttribut(ATTR_DEF_NAME)."</TD>";
|
||||
$r.="<TD>".$client->strAttribut(ATTR_DEF_ADRESS).
|
||||
" ".$client->strAttribut(ATTR_DEF_CP).
|
||||
" ".$client->strAttribut(ATTR_DEF_PAYS).
|
||||
"</TD>";
|
||||
$post=new poste($this->cn,$client->strAttribut(ATTR_DEF_ACCOUNT));
|
||||
$a=$post->GetSoldeDetail();
|
||||
$r.=sprintf('<TD align="right"> %10.2f€</TD>',$a['solde']);
|
||||
$r.="<TD>";
|
||||
$r.=sprintf('<A HREF="%s?p_action=client&sa=detail&f_id=%d&url=%s">D</A> - ',
|
||||
$script,$client->id,$url);
|
||||
|
||||
$r.='<A HREF="#">C</A>';
|
||||
$r.='<A HREF="#">S</A>';
|
||||
$r.='</TD>';
|
||||
|
||||
$r.="</TR>";
|
||||
|
||||
}
|
||||
$r.="</TABLE>";
|
||||
return $r;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -231,6 +231,70 @@ class fiche {
|
|||
return ;
|
||||
$all[0]=new fiche($this->cn);
|
||||
|
||||
for ($i=0;$i<$Max;$i++) {
|
||||
$row=pg_fetch_array($Ret,$i);
|
||||
$t=new fiche($this->cn,$row['f_id']);
|
||||
$t->getAttribut();
|
||||
$all[$i]=$t;
|
||||
|
||||
}
|
||||
return $all;
|
||||
}
|
||||
/* function GetByDef
|
||||
**************************************************
|
||||
* Purpose : Return array of card from the frd family
|
||||
*
|
||||
* parm :
|
||||
* - the fiche_def_ref.frd_id
|
||||
* gen :
|
||||
* -
|
||||
* return: array of fiche object
|
||||
*/
|
||||
function CountByDef($p_frd_id) {
|
||||
$sql="select *
|
||||
from
|
||||
fiche join fiche_Def using (fd_id)
|
||||
where frd_id=".$p_frd_id;
|
||||
|
||||
|
||||
$Ret=ExecSql($this->cn,$sql);
|
||||
|
||||
return pg_NumRows($Ret) ;
|
||||
}
|
||||
/* function GetByDef
|
||||
**************************************************
|
||||
* Purpose : Return array of card from the frd family
|
||||
*
|
||||
* parm :
|
||||
* - the fiche_def_ref.frd_id
|
||||
* gen :
|
||||
* -
|
||||
* return: array of fiche object
|
||||
*/
|
||||
function GetByDef($p_frd_id,$p_offset=-1) {
|
||||
if ( $p_offset == -1 )
|
||||
{
|
||||
$sql="select *
|
||||
from
|
||||
fiche join fiche_Def using (fd_id)
|
||||
where frd_id=".$p_frd_id." order by f_id";
|
||||
}
|
||||
else
|
||||
{
|
||||
$limit=$_SESSION['g_pagesize'];
|
||||
$sql="select *
|
||||
from
|
||||
fiche join fiche_Def using (fd_id)
|
||||
where frd_id=".$p_frd_id." order by f_id
|
||||
limit ".$limit." offset ".$p_offset;
|
||||
|
||||
}
|
||||
|
||||
$Ret=ExecSql($this->cn,$sql);
|
||||
if ( ($Max=pg_NumRows($Ret)) == 0 )
|
||||
return ;
|
||||
$all[0]=new fiche($this->cn);
|
||||
|
||||
for ($i=0;$i<$Max;$i++) {
|
||||
$row=pg_fetch_array($Ret,$i);
|
||||
$t=new fiche($this->cn,$row['f_id']);
|
||||
|
|
@ -248,5 +312,26 @@ class fiche {
|
|||
"<TR> <TD>".
|
||||
$this->attribut_def."</TD></TR>";
|
||||
}
|
||||
/* function strAttribut
|
||||
**************************************************
|
||||
* Purpose : return the string of the given attribute
|
||||
* (attr_def.ad_id)
|
||||
* parm :
|
||||
* -
|
||||
* gen :
|
||||
* -
|
||||
* return:
|
||||
*/
|
||||
function strAttribut($p_ad_id)
|
||||
{
|
||||
if ( sizeof ($this->attribut) == 0 )
|
||||
return '- ERROR -';
|
||||
foreach ($this->attribut as $e)
|
||||
{
|
||||
if ( $e->ad_id == $p_ad_id )
|
||||
return $e->av_text;
|
||||
}
|
||||
return '- ERROR -';
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
|
@ -123,13 +123,14 @@ function GetSolde($p_cond="") {
|
|||
*
|
||||
*/
|
||||
function GetSoldeDetail($p_cond="") {
|
||||
if ( $p_cond != "") $p_cond.=" and ";
|
||||
$Res=ExecSql($this->db,"select sum(deb) as sum_deb, sum(cred) as sum_cred from
|
||||
( select j_poste,
|
||||
case when j_debit='t' then j_montant else 0 end as deb,
|
||||
case when j_debit='f' then j_montant else 0 end as cred
|
||||
from jrnx join tmp_pcmn on j_poste=pcm_val
|
||||
where
|
||||
j_poste like ('$this->id'::text) and
|
||||
j_poste like ('$this->id'::text)
|
||||
$p_cond
|
||||
) as m ");
|
||||
$Max=pg_NumRows($Res);
|
||||
|
|
|
|||
47
include/client.inc.php
Normal file
47
include/client.inc.php
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
<?
|
||||
/*
|
||||
* 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
|
||||
require_once("class_customer.php");
|
||||
$sub_action=(isset($_REQUEST['sa']))?$_REQUEST['sa']:"";
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// Menu
|
||||
|
||||
// by default open liste
|
||||
if ( $sub_action == "" )
|
||||
$sub_action="list";
|
||||
|
||||
if ( $sub_action == "list" )
|
||||
{
|
||||
$client=new Customer($cn);
|
||||
echo $client->Summary();
|
||||
}
|
||||
if ( $sub_action == 'detail' )
|
||||
{
|
||||
$f_id=$_REQUEST['f_id'];
|
||||
$client=new Customer($cn,$f_id);
|
||||
$retour=sprintf('<A HREF="%s">Retour</A>',
|
||||
urldecode($_REQUEST['url']));
|
||||
$client->Display();
|
||||
echo $retour;
|
||||
}
|
||||
|
||||
html_page_stop();
|
||||
?>
|
||||
|
|
@ -96,6 +96,7 @@ define ("ALL_FICHE_DEF_REF", 1000);
|
|||
// fixed value for attr_def data
|
||||
define ("ATTR_DEF_ACCOUNT",5);
|
||||
define ("ATTR_DEF_NAME",1);
|
||||
//define ("ATTR_DEF_QUICKCODE",13);
|
||||
define ("ATTR_DEF_PRIX_ACHAT",7);
|
||||
define ("ATTR_DEF_PRIX_VENTE",6);
|
||||
define ("ATTR_DEF_TVA",2);
|
||||
|
|
|
|||
|
|
@ -575,6 +575,7 @@ return array ($count,$r);
|
|||
* - none
|
||||
* return:
|
||||
* none
|
||||
* TODO ADD A DATE !!!
|
||||
*/
|
||||
function InsertStockGoods($p_cn,$p_j_id,$p_good,$p_quant,$p_type)
|
||||
{
|
||||
|
|
@ -845,11 +846,14 @@ function isValid ($p_cn,$p_grpt_id) {
|
|||
* return:
|
||||
* string
|
||||
*/
|
||||
function jrn_navigation_bar($p_offset,$p_line,$p_size,$p_page=1)
|
||||
function jrn_navigation_bar($p_offset,$p_line,$p_size=0,$p_page=1)
|
||||
{
|
||||
// if the pagesize is unlimited return ""
|
||||
// in that case there is no nav. bar
|
||||
if ( $_SESSION['g_pagesize'] == -1 ) return "";
|
||||
if ( $p_size==0) {
|
||||
$p_size= $_SESSION['g_pagesize'];
|
||||
}
|
||||
// if there is no row return an empty string
|
||||
if ( $p_line == 0 ) return "";
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue