Pman.Dialog.XtupleTransfer.bjs
authorEdward <edward@roojs.com>
Mon, 20 Jan 2014 11:31:05 +0000 (19:31 +0800)
committerEdward <edward@roojs.com>
Mon, 20 Jan 2014 11:31:05 +0000 (19:31 +0800)
Pman.Dialog.XtupleTransfer.js

Pman.Dialog.XtupleTransfer.bjs
Pman.Dialog.XtupleTransfer.js

index b26a262..c19b038 100644 (file)
                                     "items": [
                                         {
                                             "listeners": {
-                                                "|click": "function()\n{\n    var id = _this.form.findField('invhist_transfer_id').getValue();\n    \n    if(id * 1 < 1){\n        return;\n    }\n    \n    new Pman.Request({\n        url : baseURL + '/Roo/invhist_transfer',\n        method : 'POST',\n        mask: 'Fixing',\n        timeout : 1200000, //20 minutes...! - big xfer should be 10mins.\n        params : {\n            invhist_transfer_id : id,\n            _fix : 1\n        },\n        success : function () \n        {\n            _this.tgrid.footer.onClick('refresh');\n        }\n    });\n    \n    \n    \n}\n"
+                                                "|click": "function()\n{\n    var id = _this.form.findField('invhist_transfer_id').getValue();\n    \n    if(id * 1 < 1){\n        return;\n    }\n    \n    var ar = [];\n    \n    _this.grid.ds.each(function (r) {\n        if(r.data.transfered_qty * 1 - r.data.expected_qty == 0){\n            return;\n        }\n        \n        ar.push({\n            itemsite_id : r.data.invhist_transfer_item_itemsite_id * 1,\n            qty : r.data.transfered_qty * 1 - r.data.expected_qty\n        })\n   });\n   \n    new Pman.Request({\n        url : baseURL + '/Roo/invhist_transfer',\n        method : 'POST',\n        mask: 'Fixing',\n        timeout : 1200000, //20 minutes...! - big xfer should be 10mins.\n        params : {\n            invhist_transfer_id : id,\n            _fix : 1\n        },\n        success : function () \n        {\n            _this.tgrid.footer.onClick('refresh');\n        }\n    });\n    \n    \n    \n}\n"
                                             },
                                             "cls": "x-btn-text-icon",
                                             "text": "Fix Transfer",
index c96c841..3f81db1 100644 (file)
@@ -1593,6 +1593,19 @@ Pman.Dialog.XtupleTransfer = {
                                                 return;
                                             }
                                             
+                                            var ar = [];
+                                            
+                                            _this.grid.ds.each(function (r) {
+                                                if(r.data.transfered_qty * 1 - r.data.expected_qty == 0){
+                                                    return;
+                                                }
+                                                
+                                                ar.push({
+                                                    itemsite_id : r.data.invhist_transfer_item_itemsite_id * 1,
+                                                    qty : r.data.transfered_qty * 1 - r.data.expected_qty
+                                                })
+                                           });
+                                           
                                             new Pman.Request({
                                                 url : baseURL + '/Roo/invhist_transfer',
                                                 method : 'POST',