Topic: Bank account reconcile - Putting Bank statements in descending order
Just an FYI:
When reconciling Bank Accounts, the previous Bank Statements were always listed from oldest to newest. This drove me nuts because the oldest are the lease accessed statements. My solution was:
Modify /includes/ui/ui_lists.php ~line 1525: Add 'order' => 'reconciled DESC':
so that the entire statement is:
return combo_input($name, $selected_id, $sql, 'id', 'reconciled',
array(
'spec_option' => $special_option,
'format' => '_format_date',
'spec_id' => '',
'select_submit'=> $submit_on_change,
'order' => 'reconciled DESC'
) );
I hope this help others
