Fix barcode generation in items and item_kits (#537, #538)

Enable sorting in takings (with static row below the table) (#293, #507)
This commit is contained in:
jekkos committed 2016-05-09 18:40:13 +02:00
1 parent d94b1d921e
commit c3f2f41888
13 files changed
+49 -61

No files matched your search

+3 -1
View File
@@ -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();