'; // add a one-line calculator $r=FormODS($cn,$_GET['p_jrn'],$User->GetPeriode(),$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=FormODS($cn,$_GET['p_jrn'],$User->GetPeriode(),$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=FormODS($cn,$_GET['p_jrn'],$User->GetPeriode(),$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 // TODO: the name 'view_invoice' should be changed to something more self-explaining, like // 'submit_od', no? if ( isset ($_POST['view_invoice']) ) { $nb_number=$_POST["nb_item"]; $submit=''; $submit.=''; $r=FormODS($cn,$_GET['p_jrn'],$User->GetPeriode(),$submit,$HTTP_POST_VARS,true,$nb_number); // if something goes wrong, correct it if ( $r == null ) { // submit button in the form $submit=' '; $r=FormODS($cn,$_GET['p_jrn'],$User->GetPeriode(),$submit,$HTTP_POST_VARS,false, $nb_number); } echo '
'; echo $r; echo "

On-line calculator

".JS_CALC_LINE."
"; echo "
"; } // Save the change into database if ( isset($_POST['save'] )) { $r=RecordODS($cn,$HTTP_POST_VARS,$User,$_GET['p_jrn']); // Get number of lines $nb_number=$_POST["nb_item"]; // submit button in the form $submit='

Recorded

'; $r.=FormODS($cn,$_GET['p_jrn'],$User->GetPeriode(),$submit,$HTTP_POST_VARS,true, $nb_number,true); echo '
'; echo $r; echo "
"; } } if ( $action == 'voir_jrn' ) { // Check privilege if ( CheckJrn($_SESSION['g_dossier'],$_SESSION['g_user'],$_GET['p_jrn']) < 1 ) { NoAccess(); exit -1; } // Show list of cells echo_debug ("user_action_ods.php"); // Date - date of payment - Customer - amount ?>
"; $w=new widget("select"); $periode_start=make_array($cn,"select p_id,to_char(p_start,'DD-MM-YYYY') from parm_periode order by p_id"); $User=new cl_user($cn); $current=(isset($_POST['p_periode']))?$_POST['p_periode']:$User->GetPeriode(); $w->selected=$current; echo 'Période '.$w->IOValue("p_periode",$periode_start).$w->Submit('gl_submit','Valider'); ?> '; } //Search if ( $action == 'search' ) { // Check privilege if ( CheckJrn($_SESSION['g_dossier'],$_SESSION['g_user'],$_GET['p_jrn']) <1 ) { NoAccess(); exit -1; } // PhpSessid $sessid=(isset ($_POST['PHPSESSID']))?$_POST['PHPSESSID']:$_GET['PHPSESSID']; // display a search box $search_box=u_ShowMenuRecherche($cn,$_GET['p_jrn'],$sessid,$HTTP_POST_VARS); echo '
'; echo $search_box; // if nofirst is set then show result if ( isset ($_GET['nofirst'] ) ) { list ($max_line,$a)=ListJrn($cn,$_GET['p_jrn'],"",$HTTP_POST_VARS); echo $a; } echo '
'; } include("user_update.php"); ?>