type='ALL';
if (isset($_GET['amount_id']))
{
put_global(array(
array("key"=>'amount_min','value'=>$_GET['amount_id']),
array("key"=>'amount_max','value'=>$_GET['amount_id'])
));
}
$search_box=$ledger->search_form('ALL',1,'search_op');
if ($base == 'recherche.php' || $base == 'do.php')
{
echo '
';
echo '';
if ( isset ($_GET['amount_min'])&& isset($_GET['amount_max'])&& ($_GET['amount_max']!=0 ||$_GET['amount_min']!=0 ))
{
$_GET['viewsearch']=1;
put_global(
array
(
array('key'=>'ledger_type','value'=>'ALL')
)
);
}
//-----------------------------------------------------
// Display search result
//-----------------------------------------------------
if ( isset ($_GET['viewsearch']) )
{
// Navigation bar
$step=MAX_RECONCILE;
$page=(isset($_GET['offset']))?$_GET['page']:1;
$offset=(isset($_GET['offset']))?$_GET['offset']:0;
if (count ($_GET) == 0)
$array=null;
else
$array=$_GET;
$array['p_action']='ALL';
if ( ! isset ($array['date_start']) || ! isset ($array['date_end']))
{
// get first date of current exercice
list($array['date_start'],$array['date_end'])=$g_user->get_limit_current_exercice();
}
list($sql,$where)=$ledger->build_search_sql($array);
// Count nb of line
$max_line=$cn->count_sql($sql);
$target=HtmlInput::default_value_get("target", "");
list($count,$content)=$ledger->list_operation_to_reconcile($sql,$target);
$bar=navigation_bar($offset,$max_line,$step,$page);
if (! $inside ) {
echo $bar;
} else
{
if ($step<$max_line ) echo '
'._('Liste limitée à ').$step._(' enregistrements. Le nombre d\'enregistrements trouvés est de ') .$max_line.'
';
}
echo '';
}
echo '';
?>