mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-09-08 11:34:04 -04:00
Enable sorting in takings (with static row below the table) (#293, #507)
This commit is contained in:
1 parent
d94b1d921e
commit
c3f2f41888
13 files changed
+49
-61
No files matched your search
@@ -26,8 +26,10 @@ class Giftcards extends Secure_area implements iData_controller
|
||||
$search = $this->input->get('search');
|
||||
$limit = $this->input->get('limit');
|
||||
$offset = $this->input->get('offset');
|
||||
$sort = $this->input->get('sort');
|
||||
$order = $this->input->get('order');
|
||||
|
||||
$giftcards = $this->Giftcard->search($search, $limit, $offset);
|
||||
$giftcards = $this->Giftcard->search($search, $limit, $offset, $sort, $order);
|
||||
$total_rows = $this->Giftcard->get_found_rows($search);
|
||||
|
||||
$data_rows = array();
|
||||
|
||||
Reference in new issue
Block a user