From dbfd38c9f09c0d057c1f762e808a741081ff7dcf Mon Sep 17 00:00:00 2001 From: test <15284381150@163.com> Date: 星期一, 22 九月 2025 18:11:41 +0800 Subject: [PATCH] 托盘明细备注 --- HTML/views/StatisticalReport/BoxInfor.html | 63 ++++++++++++++++++++++++++++++- 1 files changed, 61 insertions(+), 2 deletions(-) diff --git a/HTML/views/StatisticalReport/BoxInfor.html b/HTML/views/StatisticalReport/BoxInfor.html index 3a9707f..fbac037 100644 --- a/HTML/views/StatisticalReport/BoxInfor.html +++ b/HTML/views/StatisticalReport/BoxInfor.html @@ -169,7 +169,14 @@ </select> </div> </div> - + <!-- 缁存姢澶囨敞寮规 --> + <div class="layui-inline" id="divEditDemo" style="display: none; padding-top: 10px;"> + <label class="layui-form-label">澶囨敞</label> + <div class="layui-input-inline" style="width: 300px;height: 100%;"> + <textarea placeholder="璇疯緭鍏ュ唴瀹�" id="NoticeDemo" name="NoticeDemo" + class="layui-textarea"></textarea> + </div> + </div> <div class="layui-inline sousuo"> <button class="layui-btn layui-btn-sm layuiadmin-btn-list" lay-submit @@ -318,6 +325,13 @@ <i class="layui-icon layui-icon-edit"></i>璇︽儏 </button> </script> + <!-- 娣诲姞澶囨敞鎸夐挳 --> + <script type="text/html" id="toolbarDemo1"> + + <a class="layui-btn layui-btn-normal layui-btn-xs editDemoClass" lay-event="editDemo"> + <i class="layui-icon layui-icon-edit"></i>澶囨敞 + </a> + </script> </div> </div> </div> @@ -407,11 +421,14 @@ { field: 'BitPalletMark', title: '闆舵墭鏍囪', align: 'center', templet: '#BitPalletMarkStatus', width: 100, }, { field: 'ProductionTime', title: '鐢熶骇鏃ユ湡', align: 'center', templet: '#templetProductionTime' }, + { field: 'ExpirationTime', title: '杩囨湡鏃ユ湡', align: 'center', templet: '#templetExpirationTime' }, { field: 'OwnerNo', title: '璐т富缂栫爜', align: 'center', width: 100, }, { field: 'OwnerName', title: '璐т富鍚嶇О', align: 'center', width: 100, }, { field: 'SupplierNo', title: '渚涘簲鍟嗙紪鐮�', align: 'center', width: 100, }, { field: 'SupplierName', title: '渚涘簲鍟嗗悕绉�', align: 'center', width: 100, }, - + { field: 'SupplierName', title: '渚涘簲鍟嗗悕绉�', align: 'center', width: 100, }, + { field: 'SupplierName', title: '澶囨敞', align: 'center', width: 100, }, + { field: 'caozuo', title: '鎿嶄綔', fixed: 'right', width: 280, align: 'center', toolbar: '#toolbarDemo1', "disabled": true } ]]; var TotalColsSysArr = encodeURIComponent(encodeURIComponent(JSON.stringify(TotalColsArr)))//灏嗚〃澶存暟鎹繘琛寀rl缂栫爜 @@ -591,7 +608,49 @@ } //var url = IP + "/Statistical/GetInventoryList1"; + table.on('tool(LAY-app-content-list)', function (obj) { + var data = obj.data; + switch (obj.event) { + case "editDemo": + $('#NoticeDemo').val(data.Demo); + layer.open({ + type: 1, + title: '缁存姢澶囨敞', + content: $('#divEditDemo'), + maxmin: false, + area: ['420px', '260px'], + btn: ['纭畾', '鍙栨秷'], + yes: function (index, layero) { + var demo = $('#NoticeDemo').val(); + var param = { + id: data.Id, + demo: demo, + }; + sendData(IP + "/Statistical/EditStockDetailDemo", param, 'get', function (res) { + if (res.code == 0) { //鎴愬姛 + refreshTable(); + layer.msg(res.msg, { + icon: 1, + time: 1500 //1绉掑叧闂紙濡傛灉涓嶉厤缃紝榛樿鏄�3绉掞級 + }, function () { + }); + } else { //涓嶆垚鍔� + layer.msg(res.msg, { + icon: 2, + time: 3000 //2绉掑叧闂紙濡傛灉涓嶉厤缃紝榛樿鏄�3绉掞級 + }, function () { + refreshTable(); + }); + } + layer.close(index); + }); + } + }); + break; + default: break; + } + }); //鎺ュ彈鍏ㄥ眬鍙橀噺 -- Gitblit v1.8.0