From 824c29bc60bb0b33e8930319878fbf2e5d7562ca Mon Sep 17 00:00:00 2001
From: zjj <3272660260@qq.com>
Date: 星期三, 04 十二月 2024 16:40:36 +0800
Subject: [PATCH] #盘点

---
 src/main/webapp/static/js/inventoryCheckOrder/inventoryCheckOrder.js |   29 ++++++++++++++++++++++++++---
 1 files changed, 26 insertions(+), 3 deletions(-)

diff --git a/src/main/webapp/static/js/inventoryCheckOrder/inventoryCheckOrder.js b/src/main/webapp/static/js/inventoryCheckOrder/inventoryCheckOrder.js
index 74b1125..a4bfba5 100644
--- a/src/main/webapp/static/js/inventoryCheckOrder/inventoryCheckOrder.js
+++ b/src/main/webapp/static/js/inventoryCheckOrder/inventoryCheckOrder.js
@@ -30,8 +30,7 @@
         where: {order_id: 9999999999},
         cols: [[
             {type: 'checkbox'}
-            ,{type: 'numbers', title: '#'}
-            ,{field: 'orderNo', align: 'center',title: '鍗曟嵁缂栧彿', templet: '#orderNoTpl', width: 160}
+            ,{field: 'orderNo', align: 'center',title: '鍗曟嵁缂栧彿', templet: '#orderNoTpl'}
             ,{field: 'locNo', align: 'center',title: '搴撲綅'}
             ,{field: 'matnr', align: 'center',title: '鍟嗗搧缂栫爜', width: 160}
             ,{field: 'maktx', align: 'center',title: '鍟嗗搧鍚嶇О', width: 200}
@@ -49,6 +48,7 @@
             // ,{field: 'itemNum', align: 'center',title: '鍝侀」鏁�'}
             // ,{field: 'count', align: 'center',title: '鏁伴噺'}
             // ,{field: 'weight', align: 'center',title: '閲嶉噺'}
+            ,{field: 'profit$', align: 'center',title: '鐩堜簭',templet: '#profitTpl'}
             ,{field: 'status$', align: 'center',title: '鐘舵��'}
             // ,{field: 'createBy$', align: 'center',title: '娣诲姞浜哄憳'}
             // ,{field: 'createTime$', align: 'center',title: '娣诲姞鏃堕棿'}
@@ -169,7 +169,7 @@
 
     /* 琛ㄦ牸2澶村伐鍏锋爮鐐瑰嚮浜嬩欢 */
     table.on('toolbar(orderDetlTable)', function (obj) {
-
+        // console.log(obj.config.where.order_id);
         var checkStatus = table.checkStatus(obj.config.id).data;
         if (obj.event === 'pakoutPreview') { // 娣诲姞
             if (checkStatus.length === 0) {
@@ -189,6 +189,29 @@
                 return d.id;
             });
             doDelSensor({ids: ids});
+        } else if (obj.event === 'submitERP') { // 鎻愪氦erp
+            $.ajax({
+                url: baseUrl + "/mobile/checkOut/submit/auth",
+                headers: {'token': localStorage.getItem('token')},
+                // contentType: 'application/json;charset=UTF-8',
+                data: {
+                    orderId: obj.config.where.order_id
+                },
+                method: 'GET',
+                success: function (res) {
+                    notice.destroy();
+                    if (res.code === 200) {
+                        layer.msg(res.msg, {icon: 1});
+                        insTb.reload({where: null});
+                        insTb2.reload({where: null, page: {curr: 1}});
+                    } else if (res.code === 403) {
+                        top.location.href = baseUrl + "/";
+                    } else {
+                        layer.msg(res.msg, {icon: 2})
+                    }
+                }
+            });
+
         }
     });
 

--
Gitblit v1.9.1