balance list can be sorted. balanace can be updated

This commit is contained in:
Ricsi
2017-02-18 00:14:40 +01:00
parent 9d418a2619
commit 40585222d7
3 changed files with 132 additions and 112 deletions

View File

@@ -1,27 +1,37 @@
<?php
# HA NINCS ID, AKKOR EGYENLEGLISTA
# HA VAN ID, AKKOR EMPTY
# HA VAN ID, AKKOR RENDEZÉS IS VAN
if ($this->is_id()) {
# EMPTY
# RENDEZÉS
/*
1 - egyenleg szerint növekvő
*/
$order_by = 'uk_balance ASC';
$url_postfix = '/' . $this->get_id();
}
else {
# EGYENLEG LISTA
$active_kid_assoc_array = $sql->assoc_array('select * from user_kid where uk_deleted = 0 and uk_is_active = 1 order by uk_name asc;');
$user_kids = array();
foreach ($active_kid_assoc_array as $kid) {
$new_kid = new user_kid();
$new_kid->set_user_data_by_id($kid['uk_id']);
$user_kids[] = $new_kid;
}
$smarty->assign('user_kids', $user_kids);
$smarty->display('user_balance_list.tpl');
$order_by = 'uk_name ASC';
$url_postfix = '';
}
$active_kid_assoc_array = $sql->assoc_array('select * from user_kid where uk_deleted = 0 and uk_is_active = 1 order by '. $order_by .';');
$user_kids = array();
foreach ($active_kid_assoc_array as $kid) {
$new_kid = new user_kid();
$new_kid->set_user_data_by_id($kid['uk_id']);
$user_kids[] = $new_kid;
}
$smarty->assign('user_kids', $user_kids);
$smarty->assign('url_postfix', $url_postfix);
$smarty->display('user_balance_list.tpl');
?>