diff options
-rw-r--r-- | www/js/rdxport.js | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/www/js/rdxport.js b/www/js/rdxport.js index 73e4a7d..ff54f51 100644 --- a/www/js/rdxport.js +++ b/www/js/rdxport.js @@ -401,7 +401,12 @@ Rdxport.Group.prototype.removeCart = function(cart) { Rdxport.Group.prototype.fetchCarts = function() { var self = this; - rdxport.listCarts(this.groupName, 1, function(cartsXml, status, req) { + + var listCartOptions = { + GROUP_NAME: this.groupName, + INCLUDE_CUTS: 1 + }; + rdxport.listCarts(listCartOptions, function(cartsXml, status, req) { self.carts = []; self.cartsByNumber = {}; |