Skip to content

Commit

Permalink
Merge pull request #206 from ottemo/awk_search-by-order-id-107518618
Browse files Browse the repository at this point in the history
[#107518618] add filter for order id
  • Loading branch information
James Vastbinder committed Nov 6, 2015
2 parents 5868925 + c3ef27c commit 19e9a0e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions app/scripts/order/controller/list.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ function ($rootScope, $scope, $location, $routeParams, $q, DashboardListService,
var getOrdersList, serviceList, getOrderCount, getAttributeList, showColumns;
serviceList = new DashboardListService();
showColumns = {
'_id' : {'type' : 'select-link', 'label' : 'Order ID'},
'status' : {},
'customer_email' : {},
'customer_name' : {},
'grand_total' : {'label' : 'Total', 'filter' : 'range', 'type' : 'price'},
'created_at' : {'label' : 'Date', 'type' : 'date'}
_id : {type: 'select-link', label : 'Order ID', filter: 'text'},
status : {},
customer_email : {},
customer_name : {},
grand_total : {label : 'Total', filter : 'range', type : 'price'},
created_at : {label : 'Date', type : 'date'}
};

// REFACTOR: I only want to work with the selected ids
Expand Down

0 comments on commit 19e9a0e

Please sign in to comment.