Files
code-cegled/_include/include_balance_list.php
2019-03-27 22:59:40 +00:00

47 lines
1.2 KiB
PHP

<?php
# HA NINCS ID, AKKOR EGYENLEGLISTA
# HA VAN ID, AKKOR RENDEZÉS IS VAN
$where = '';
if ($this->is_id()) {
# RENDEZÉS
switch ($this->get_id()) {
case 1:
//1 - egyenleg szerint növekvő
$order_by = 'uk_balance ASC, uk_name ASC';
$url_postfix = '/' . $this->get_id();
break;
case 2:
//2 - tartozások
$where = ' AND uk_balance < 0';
$order_by = 'uk_name ASC';
$url_postfix = '/' . $this->get_id();
break;
default:
# code...
break;
}
}
else {
# EGYENLEG LISTA
$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'.$where.' 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('page_id', $this->is_id() ? $this->get_id() : null);
$smarty->assign('user_kids', $user_kids);
$smarty->assign('url_postfix', $url_postfix);
$smarty->display('user_balance_list.tpl');
?>