Check(); ShowMenuCompta($g_dossier,$g_UserProperty); if ( $g_UserProperty['use_admin'] == 0 ) { // check if user can access if (CheckAction($g_dossier,$g_user,ENCJRN) == 0 ){ /* Cannot Access */ NoAccess(); } if ( isset ($g_jrn)) { if (CheckJrn($g_dossier,$g_user,$g_jrn) == 0 ){ /* Cannot Access */ NoAccess(); exit -1; } } // if isset g_jrn } // if show if ( isset ($_GET['show'])) { $result=ShowJrn(); echo "
"; 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 "
"; if ( $jrn_type=='NONE' ) include('user_action_gl.php'); } 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 ) { $result=ShowJrn( "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(); ?>