'; // Check privilege if (isset($_REQUEST['p_jrn']) && $g_user->check_jrn($_REQUEST['p_jrn']) == 'X') { NoAccess(); exit - 1; } if (!isset($_REQUEST['p_jrn'])) { $Ledger->id = -1; } else $Ledger->id = $_REQUEST['p_jrn']; echo $Ledger->display_search_form(); //------------------------------ // UPdate the payment //------------------------------ if (isset($_GET ['paid'])) { $Ledger->update_paid($_GET); } $p_array = $_GET; /* by default we should the default period */ if (!isset($p_array['date_start'])) { $period = $g_user->get_periode(); $per = new Periode($cn, $period); list($date_start, $date_end) = $per->get_date_limit(); $p_array['date_start'] = $date_start; $p_array['date_end'] = $date_end; } /* compute the sql stmt */ list($sql, $where) = $Ledger->build_search_sql($p_array); $max_line = $cn->count_sql($sql); $step = $_SESSION['g_pagesize']; $page = (isset($_GET['offset'])) ? $_GET['page'] : 1; $offset = (isset($_GET['offset'])) ? $_GET['offset'] : 0; $bar = jrn_navigation_bar($offset, $max_line, $step, $page); echo '
'; /* * Export to csv */ $r = HtmlInput::get_to_hidden(array('l', 'date_start', 'date_end', 'desc', 'amount_min', 'amount_max', 'qcode', 'accounting', 'unpaid', 'gDossier', 'ledger_type', 'p_action')); if (isset($_GET['r_jrn'])) { foreach ($_GET['r_jrn'] as $k => $v) $r.=HtmlInput::hidden('r_jrn[' . $k . ']', $v); } echo ''; echo ''; exit(); ?>