mirror of
https://github.com/hotspotbilling/phpnuxbill.git
synced 2025-07-24 21:04:36 +02:00
fix Customer view to view tbl_payment_gateway
This commit is contained in:
parent
234e5e3967
commit
b3744a5007
1 changed files with 1 additions and 1 deletions
|
@ -282,7 +282,7 @@ switch ($action) {
|
|||
}
|
||||
if ($v == 'order') {
|
||||
$v = 'order';
|
||||
$query = ORM::for_table('tbl_transactions')->where('username', $customer['username'])->order_by_desc('id');
|
||||
$query = ORM::for_table('tbl_payment_gateway')->where('username', $customer['username'])->order_by_desc('id');
|
||||
$order = Paginator::findMany($query);
|
||||
$ui->assign('order', $order);
|
||||
} else if ($v == 'activation') {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue