From e8875960ed817dfc7c8fca2189830965dbe2e49b Mon Sep 17 00:00:00 2001 From: yusijie <ysj@hz-kingdee.com> Date: 星期四, 10 十月 2024 13:41:11 +0800 Subject: [PATCH] 到货确认审核模块,审核方法传参修改;工序出站汇报单加大字体;出站汇报维护导出替换换行符;工艺路线列表添加合计行;条码档案列表添加按钮回显 --- WebTM/views/车间管理/报表分析/Mes_OrderProcFlowAllReport.html | 86 +------------------------------------------ WebTM/views/车间管理/工序流转/MES_StationOutBill_PDA.html | 1 WebTM/views/领料发货/收料入库/Kf_ReciveBill_Fast_TK.html | 2 WebTM/views/模治具管理/模治具管理/Gy_BarCodeBillList.html | 5 ++ WebTM/views/计划管理/工艺路线/Gy_RoutingBillList.html | 16 ++++++- WebTM/views/车间管理/工序出站汇报单/Cj_StationOutBillList.html | 3 + 6 files changed, 25 insertions(+), 88 deletions(-) diff --git "a/WebTM/views/\346\250\241\346\262\273\345\205\267\347\256\241\347\220\206/\346\250\241\346\262\273\345\205\267\347\256\241\347\220\206/Gy_BarCodeBillList.html" "b/WebTM/views/\346\250\241\346\262\273\345\205\267\347\256\241\347\220\206/\346\250\241\346\262\273\345\205\267\347\256\241\347\220\206/Gy_BarCodeBillList.html" index ed21005..7ecf284 100644 --- "a/WebTM/views/\346\250\241\346\262\273\345\205\267\347\256\241\347\220\206/\346\250\241\346\262\273\345\205\267\347\256\241\347\220\206/Gy_BarCodeBillList.html" +++ "b/WebTM/views/\346\250\241\346\262\273\345\205\267\347\256\241\347\220\206/\346\250\241\346\262\273\345\205\267\347\256\241\347\220\206/Gy_BarCodeBillList.html" @@ -839,6 +839,11 @@ if ($("#ColName option").length < 1) { ColFilter(); } + + //鍒锋柊鎸夐挳鏄剧ず + var btns = document.getElementsByTagName("button"); //鑾峰彇鏈〉鎵�鏈夋寜閽璞� + var HBillType = "鏉$爜涓绘。"; + Display_HideButton(btns, HBillType, HModName, sessionStorage["HUserName"]); //layer.alert("鏌ヨ鎴愬姛", { icon: 1 }); } else { option.data = [[]] diff --git "a/WebTM/views/\350\256\241\345\210\222\347\256\241\347\220\206/\345\267\245\350\211\272\350\267\257\347\272\277/Gy_RoutingBillList.html" "b/WebTM/views/\350\256\241\345\210\222\347\256\241\347\220\206/\345\267\245\350\211\272\350\267\257\347\272\277/Gy_RoutingBillList.html" index 37bf655..6ffc928 100644 --- "a/WebTM/views/\350\256\241\345\210\222\347\256\241\347\220\206/\345\267\245\350\211\272\350\267\257\347\272\277/Gy_RoutingBillList.html" +++ "b/WebTM/views/\350\256\241\345\210\222\347\256\241\347\220\206/\345\267\245\350\211\272\350\267\257\347\272\277/Gy_RoutingBillList.html" @@ -917,7 +917,7 @@ data.push({ "id": data1.list[key].ColmCols, "name": data1.list[key].ColmCols, "Type": data1.list[key].ColmType }); } //鍦ㄥ垪琛ㄥ乏杈规坊鍔犲嬀閫夋 - col.push({ type: 'checkbox', fixed: 'left' }); + col.push({ type: 'checkbox', fixed: 'left', totalRowText: '鍚堣' }); for (var i = 0; i < data.length; i++) { // if (data[i].name == 'HInterID' || data[i].name == 'HBillType' || data[i].name == 'hmainid') { if ($.inArray(data[i].name, titleData) > -1) { @@ -926,11 +926,18 @@ else { switch (data[i].Type) { //int + case 'long': + case 'Int32': + case 'Int64': + case 'double': + case 'Decimal': + col.push({ field: data[i].id, title: data[i].name, align: 'center', sort: true, width: 120, totalRow: true }); + break; case 'DateTime': col.push({ field: data[i].id, title: data[i].name, align: 'center', sort: true, templet: "<div>{{d." + data[i].name + " ==null ?'':layui.util.toDateString(d." + data[i].name + ", 'yyyy-MM-dd')}}</div>", width: 120 }); break; default: - col.push({ field: data[i].id, title: data[i].name, align: 'center', sort: true, width: 120 }); + col.push({ field: data[i].id, title: data[i].name, align: 'center', sort: true, width: 120 }); } } } @@ -1451,7 +1458,10 @@ dataCol = data1.data[0].HGridString.split(','); for (var i = 0; i < option.cols[0].length - 2; i++) { - var dataCols = dataCol[i].split('|'); + if (dataCol[i]) { + var dataCols = dataCol[i].split('|'); + } + //闅愯棌鍒� if (dataCols[1] == 1) { option.cols[0][i + 1]["hide"] = true; diff --git "a/WebTM/views/\350\275\246\351\227\264\347\256\241\347\220\206/\345\267\245\345\272\217\345\207\272\347\253\231\346\261\207\346\212\245\345\215\225/Cj_StationOutBillList.html" "b/WebTM/views/\350\275\246\351\227\264\347\256\241\347\220\206/\345\267\245\345\272\217\345\207\272\347\253\231\346\261\207\346\212\245\345\215\225/Cj_StationOutBillList.html" index 6508b7a..ad9785a 100644 --- "a/WebTM/views/\350\275\246\351\227\264\347\256\241\347\220\206/\345\267\245\345\272\217\345\207\272\347\253\231\346\261\207\346\212\245\345\215\225/Cj_StationOutBillList.html" +++ "b/WebTM/views/\350\275\246\351\227\264\347\256\241\347\220\206/\345\267\245\345\272\217\345\207\272\347\253\231\346\261\207\346\212\245\345\215\225/Cj_StationOutBillList.html" @@ -2132,6 +2132,9 @@ if (item.瑙勬牸鍨嬪彿.length > 0) { // 鍋囪瀛楁鍚嶄负field item.瑙勬牸鍨嬪彿 = item.瑙勬牸鍨嬪彿.replace(/[\r\n]+/g, ''); // 灏嗘崲琛岀鏇挎崲涓虹┖瀛楃涓� } + if (item.浜у搧鍚嶇О.length > 0) { // 鍋囪瀛楁鍚嶄负field + item.浜у搧鍚嶇О = item.浜у搧鍚嶇О.replace(/[\r\n]+/g, ''); // 灏嗘崲琛岀鏇挎崲涓虹┖瀛楃涓� + } }); table.exportFile(ins.config.id, option.data, "xls"); diff --git "a/WebTM/views/\350\275\246\351\227\264\347\256\241\347\220\206/\345\267\245\345\272\217\346\265\201\350\275\254/MES_StationOutBill_PDA.html" "b/WebTM/views/\350\275\246\351\227\264\347\256\241\347\220\206/\345\267\245\345\272\217\346\265\201\350\275\254/MES_StationOutBill_PDA.html" index 0512c19..252b3ee 100644 --- "a/WebTM/views/\350\275\246\351\227\264\347\256\241\347\220\206/\345\267\245\345\272\217\346\265\201\350\275\254/MES_StationOutBill_PDA.html" +++ "b/WebTM/views/\350\275\246\351\227\264\347\256\241\347\220\206/\345\267\245\345\272\217\346\265\201\350\275\254/MES_StationOutBill_PDA.html" @@ -102,6 +102,7 @@ th { width: 70px; text-align: left; + font-size: 17px; } </style> </head> diff --git "a/WebTM/views/\350\275\246\351\227\264\347\256\241\347\220\206/\346\212\245\350\241\250\345\210\206\346\236\220/Mes_OrderProcFlowAllReport.html" "b/WebTM/views/\350\275\246\351\227\264\347\256\241\347\220\206/\346\212\245\350\241\250\345\210\206\346\236\220/Mes_OrderProcFlowAllReport.html" index 06dec3a..729eed8 100644 --- "a/WebTM/views/\350\275\246\351\227\264\347\256\241\347\220\206/\346\212\245\350\241\250\345\210\206\346\236\220/Mes_OrderProcFlowAllReport.html" +++ "b/WebTM/views/\350\275\246\351\227\264\347\256\241\347\220\206/\346\212\245\350\241\250\345\210\206\346\236\220/Mes_OrderProcFlowAllReport.html" @@ -58,89 +58,7 @@ </button> <button class="layui-btn layuiadmin-btn-order" type="button" lay-submit="" lay-filter="btnReSearch" id="btnReSearch" style="padding:0 5px">閲嶇疆</button> <div class="layui-colla-content" style="padding: 0px; margin-left: 6%;"> - <div class="layui-row" style=" margin-top: 10px; margin-left: 70px;"> - <div class="layui-inline"> - <label class="layui-form-label">杩囨护</label> - <div class="layui-input-block"> - <select name="ColName" id="ColName" class="ForFilteringSchemes" lay-filter="ColName" style="width:190px;"> - </select> - </div> - </div> - <div class="layui-inline"> - <select name="Comparator" id="Comparator" class="ForFilteringSchemes" lay-filter="Comparator" style="width:190px;"> - <option value="0" selected="selected"></option> - <option value="=">=</option> - <option value=">=">>=</option> - <option value=">">></option> - <option value="<="><=</option> - <option value="<"><</option> - <option value="<>"><></option> - <option value="7">鍖呭惈</option> - <option value="8">宸﹀寘鍚�</option> - <option value="9">鍙冲寘鍚�</option> - <option value="10">涓嶅寘鍚�</option> - </select> - </div> - <div class="layui-inline"> - <input type="text" class="layui-input ForFilteringSchemes" value="" name="ColContent" id="ColContent"> - </div> - </div> - - <div class="layui-row" style=" margin-top: 10px; margin-left: 70px;"> - <div class="layui-inline"> - <label class="layui-form-label">杩囨护</label> - <div class="layui-input-block"> - <select name="ColName1" id="ColName1" class="ForFilteringSchemes" lay-filter="ColName1" style="width:190px;"> - </select> - </div> - </div> - <div class="layui-inline"> - <select name="Comparator1" id="Comparator1" class="ForFilteringSchemes" lay-filter="Comparator1" style="width:190px;"> - <option value="0" selected="selected"></option> - <option value="=">=</option> - <option value=">=">>=</option> - <option value=">">></option> - <option value="<="><=</option> - <option value="<"><</option> - <option value="<>"><></option> - <option value="7">鍖呭惈</option> - <option value="8">宸﹀寘鍚�</option> - <option value="9">鍙冲寘鍚�</option> - <option value="10">涓嶅寘鍚�</option> - </select> - </div> - <div class="layui-inline"> - <input type="text" class="layui-input ForFilteringSchemes" value="" name="ColContent1" id="ColContent1"> - </div> - </div> - - <div class="layui-row" style=" margin-top: 10px; margin-left: 70px;"> - <div class="layui-inline"> - <label class="layui-form-label">杩囨护</label> - <div class="layui-input-block"> - <select name="ColName2" id="ColName2" class="ForFilteringSchemes" lay-filter="ColName2" style="width:190px;"> - </select> - </div> - </div> - <div class="layui-inline"> - <select name="Comparator2" id="Comparator2" class="ForFilteringSchemes" lay-filter="Comparator2" style="width:190px;"> - <option value="0" selected="selected"></option> - <option value="=">=</option> - <option value=">=">>=</option> - <option value=">">></option> - <option value="<="><=</option> - <option value="<"><</option> - <option value="<>"><></option> - <option value="7">鍖呭惈</option> - <option value="8">宸﹀寘鍚�</option> - <option value="9">鍙冲寘鍚�</option> - <option value="10">涓嶅寘鍚�</option> - </select> - </div> - <div class="layui-inline"> - <input type="text" class="layui-input ForFilteringSchemes" value="" name="ColContent2" id="ColContent2"> - </div> - </div> + </div> </div> </div> @@ -227,7 +145,7 @@ get_FastQuery(); //DisPlay_HideColumn(); - ColFilter(); + //ColFilter(); } //鍒濆鍖栬〃鏍� diff --git "a/WebTM/views/\351\242\206\346\226\231\345\217\221\350\264\247/\346\224\266\346\226\231\345\205\245\345\272\223/Kf_ReciveBill_Fast_TK.html" "b/WebTM/views/\351\242\206\346\226\231\345\217\221\350\264\247/\346\224\266\346\226\231\345\205\245\345\272\223/Kf_ReciveBill_Fast_TK.html" index 72daa2a..15d73ed 100644 --- "a/WebTM/views/\351\242\206\346\226\231\345\217\221\350\264\247/\346\224\266\346\226\231\345\205\245\345\272\223/Kf_ReciveBill_Fast_TK.html" +++ "b/WebTM/views/\351\242\206\346\226\231\345\217\221\350\264\247/\346\224\266\346\226\231\345\205\245\345\272\223/Kf_ReciveBill_Fast_TK.html" @@ -244,7 +244,7 @@ $.ajax({ url: GetWEBURL() + "/POStockInBillList/AuditPOInStockBillPost_TianKang", type: "Post", - data: { "msg": JSON.stringify(sSubStr) }, + data: { "HInterID": HInterID, "FID": option.data[0].FID }, success: function (result) { if (result.code == "1") { layer.msg("瀹℃牳鎴愬姛", { -- Gitblit v1.9.1