"; echo $result; echo ""; exit(); } // if type of journal is asked if ( isset ($_GET['JRN_TYPE'] ) ) { $jrn_type=$_GET['JRN_TYPE']; $result=ShowJrn("user_jrn.php?JRN_TYPE=".$jrn_type); echo "
"; echo $result; ShowMenuJrnUser($g_dossier,$g_UserProperty,$_GET['JRN_TYPE'],$g_jrn); echo "
"; } else { echo_debug("Selected is $g_jrn"); // Get the jrn_type_id include_once('jrn.php'); $JrnProp=GetJrnProp($g_dossier,$g_jrn); $jrn_type=$JrnProp['jrn_def_type']; echo_debug("Type is $jrn_type"); echo_debug("Jrn_def_type = $jrn_type"); $result=ShowJrn("user_jrn.php?JRN_TYPE=".$jrn_type); echo '
'; echo $result; ShowMenuJrnUser($g_dossier,$g_UserProperty,$jrn_type,$g_jrn); echo '
'; } // if a journal is selected show the journal's menu if ( $g_jrn != -1 ) { $p_array=array(array("user_jrn.php?JRN_TYPE=VEN" ,"Entrée"), array("user_jrn.php?JRN_TYPE=ACH","Dépense"), array("user_jrn.php?JRN_TYPE=FIN","Financier"), array("user_jrn.php?JRN_TYPE=OD","Op. Diverses"), array("impress.php","Impression"), array("","Recherche") ); $result=ShowItem($p_array,'H',"cell","mtitle","user_jrn.php?JRN_TYPE=".$jrn_type); // Get the jrn_type_id include_once('jrn.php'); $JrnProp=GetJrnProp($g_dossier,$g_jrn); $jrn_type=$JrnProp['jrn_def_type']; // display jrn's menu include_once('user_menu.php'); $menu_jrn=u_ShowMenuJrn($cn,$jrn_type); echo '
'; // echo $result; echo $menu_jrn; echo '
'; // Execute Action for g_jrn if ( $jrn_type=='VEN' ) include('user_action_ven.php'); if ( $jrn_type=='ACH' ) include('user_action_ach.php'); if ( $jrn_type=='FIN' ) include('user_action_fin.php'); if ( $jrn_type=='OD ' ) include('user_action_ods.php'); } // if isset g_jrn html_page_stop(); ?>