/*
* 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
*/
// Copyright Author Dany De Bontridder ddebontridder@yahoo.fr
/* $Revision$ */
echo_debug(__FILE__,__LINE__,"include user_action_fin.php");
include_once("form_input.php");
include_once("class_widget.php");
$cn=DbConnect($_SESSION['g_dossier']);
if ( ! isset ($_GET['action']) && ! isset ($_POST["action"]) ) {
return;
}
include_once ("preference.php");
include_once ("user_common.php");
$action=(isset($_GET['action']))?$_GET['action']:$_POST['action'];
//////////////////////////////////////////////////////////////////////
// action = new
//////////////////////////////////////////////////////////////////////
if ( $action == 'new' ) {
// Check privilege
if ( CheckJrn($_SESSION['g_dossier'],$_SESSION['g_user'],$_SESSION['g_jrn']) != 2 ) {
NoAccess();
exit -1;
}
// We request a new form
if ( isset($_GET['blank'] )) {
// Submit button in the form
$submit='
';
// add a one-line calculator
$r=FormFin($cn,$_SESSION['g_jrn'],$_SESSION['g_user'],$submit,null,false);
echo '
';
echo $r;
echo "
On-line calculator
".JS_CALC_LINE."
";
echo "
";
}
// Add an item
if ( isset ($_POST['add_item'])) {
// Add a line
$nb_number=$_POST["nb_item"];
$nb_number++;
// submit button in the form
$submit='
';
$r=FormFin($cn,$_SESSION['g_jrn'],$_SESSION['g_user'],$submit,$HTTP_POST_VARS,false, $nb_number);
echo '
';
echo $r;
echo "
On-line calculator
".JS_CALC_LINE."
";
echo "
";
}
// Correct it
if ( isset ($_POST['correct'])) {
// Get number of lines
$nb_number=$_POST["nb_item"];
// submit button in the form
$submit='
';
$r=FormFin($cn,$_SESSION['g_jrn'],$_SESSION['g_user'],$submit,$HTTP_POST_VARS,false, $nb_number);
echo '
';
echo $r;
echo "
On-line calculator
".JS_CALC_LINE."
";
echo "
";
}
// View the charge and show a submit button to save it
if ( isset ($_POST['view_invoice']) ) {
$nb_number=$_POST["nb_item"];
$submit='';
$submit.='';
$r=FormFin($cn,$_SESSION['g_jrn'],$_SESSION['g_user'],$submit,$HTTP_POST_VARS,true,$nb_number);
// if something goes wrong correct it
if ( $r == null ) {
// submit button in the form
$submit='
';
$r=FormFin($cn,$_SESSION['g_jrn'],$_SESSION['g_user'],$submit,$HTTP_POST_VARS,false, $nb_number);
}
echo '
';
echo $r;
echo "
On-line calculator
".JS_CALC_LINE."
";
echo "
";
}
// Save the charge into database
if ( isset($_POST['save'] )) {
$r=RecordFin($cn,$HTTP_POST_VARS,$_SESSION['g_user'],$_SESSION['g_jrn']);
// Get number of lines
$nb_number=$_POST["nb_item"];
// submit button in the form
$submit='
";
}
}
//////////////////////////////////////////////////////////////////////
// see jrn
//////////////////////////////////////////////////////////////////////
if ( $action == 'voir_jrn' ) {
// Check privilege
if ( CheckJrn($_SESSION['g_dossier'],$_SESSION['g_user'],$_SESSION['g_jrn']) < 1 ) {
NoAccess();
exit -1;
}
?>
// Show list of sell
echo_debug ("user_action_jrn.php");
// Date - date of payment - Customer - amount
$sql=SQL_LIST_ALL_INVOICE." and jr_tech_per=".$current." and jr_def_id=".$_SESSION['g_jrn'];
$list=ListJrn($cn,$_SESSION['g_jrn'],$sql);
echo $list;
echo '
';
}
//////////////////////////////////////////////////////////////////////
// balance
//////////////////////////////////////////////////////////////////////
if ( $action == 'solde' ) {
require_once("poste.php");
// find the bank account
$accountSql="select distinct pcm_val::text,pcm_lib from
tmp_pcmn
where pcm_val like '550%' or pcm_val='58'
order by pcm_val::text";
$ResAccount=ExecSql($cn,$accountSql);
echo '