From 01d9fd0ffeff4163e9a9c31caeeb189f8ccb56f4 Mon Sep 17 00:00:00 2001
From: cwjbxqmz <1134865194@qq.com>
Date: 星期四, 12 十月 2023 09:45:45 +0800
Subject: [PATCH] 1.采购退料单维护:增加 审核,反审核,关闭,反关闭,作废,反作废、条码明细、列设置,按钮设置 等 按钮;其他入库单维护、生产入库单维护: 增加 作废,反作废、条码明细 等 按钮; 委外加工入库单维护: 增加 关闭,反关闭,作废,反作废 等 按钮; 生产退库单维护、分布式调入单维护: 增加 关闭,反关闭,作废,反作废、条码明细 等 按钮; 2.增加 领用申请单 单据新增编制 模块;增加 领用申请单列表 单据列表 模块;
---
WebTM/views/PublicPage/MouldMaintainRuleInterList.html | 29 ++++++++++++++---------------
1 files changed, 14 insertions(+), 15 deletions(-)
diff --git a/WebTM/views/PublicPage/MouldMaintainRuleInterList.html b/WebTM/views/PublicPage/MouldMaintainRuleInterList.html
index 7bd8096..5940cfb 100644
--- a/WebTM/views/PublicPage/MouldMaintainRuleInterList.html
+++ b/WebTM/views/PublicPage/MouldMaintainRuleInterList.html
@@ -36,15 +36,15 @@
<div class="layui-col-xs12 layui-inline">
<div class="layui-row">
<div class="layui-inline">
- <label class="layui-form-label">鍛ㄦ湡鍗曚綅</label>
+ <label class="layui-form-label">瑙勭▼鍗曞彿</label>
<div class="layui-input-block">
- <input type="text" class="layui-input" name="HCycleUnit" id="HCycleUnit">
+ <input type="text" class="layui-input" name="HBillNo" id="HBillNo">
</div>
</div>
<div class="layui-inline">
- <label class="layui-form-label">淇濆吇鍛ㄦ湡</label>
+ <label class="layui-form-label">鍛ㄦ湡鍗曚綅</label>
<div class="layui-input-block">
- <input type="text" class="layui-input" name="HCheckCycle" id="HCheckCycle">
+ <input type="text" class="layui-input" name="HCycleUnit" id="HCycleUnit">
</div>
</div>
<button class="layui-btn layuiadmin-btn-order" type="button" lay-submit="" lay-filter="btnSearch" id="btnSearch">
@@ -87,8 +87,8 @@
, laydate = layui.laydate
, util = layui.util
, tree = layui.tree
- var sWhere = " where HStopFlag=0 and HEndFlag<>'1' "; //鏍戝瀷100046 sessionStorage["OrganizationID"]
- var sWhere1 = " where HStopFlag=0 and HEndFlag=1 "; //鍒楄〃
+ var sWhere = " "; //鏍戝瀷100046 sessionStorage["OrganizationID"]
+ var sWhere1 = ""; //鍒楄〃
var option = {
elem: '#mainTable'
@@ -98,16 +98,15 @@
, cellMinWidth: 90
, cols: [[
{ type: 'radio', fixed: 'left' }
- , { field: 'hmainid', title: 'HInterID', sort: true, hide: true }
- , { field: 'HCheckCycle', title: '淇濆吇鍛ㄦ湡' }
- , { field: 'HCycleUnit', title: '鍛ㄦ湡鍗曚綅' }
+ , { field: 'hmainid', title: 'HInterID' }
+ , { field: '鍗曟嵁鍙�', title: '鍗曟嵁鍙�' }
]]
};
var index = layer.load(0, { shade: false });
//杩涘叆椤甸潰鏄剧ず鐨勭紦瀛樺垪琛�
$.ajax({
- url: GetWEBURL() + '/Sc_MouldMaintainPlanBill/GetMouldMaintainPlanBillList',
+ url: GetWEBURL() + '/Sc_MouldMaintainRuleBill/GetMouldMaintainRuleList',
type: "GET",
data: { "sWhere": SeachFilter(sWhere1) },
success: function (data1) {
@@ -130,7 +129,7 @@
form.on('submit(btnSearch)', function (data) {
$.ajax({
- url: GetWEBURL() + '/Sc_MouldMaintainPlanBill/GetMouldMaintainPlanBillList',
+ url: GetWEBURL() + '/Sc_MouldMaintainRuleBill/GetMouldMaintainRuleList',
type: "GET",
data: { "sWhere": SeachFilter(sWhere1) },
success: function (data1) {
@@ -190,13 +189,13 @@
}
function SeachFilter(sWhere1) {
- var HCheckCycle = $("#HCheckCycle").val();
+ var HBillNo = $("#HBillNo").val();
var HCycleUnit = $("#HCycleUnit").val();
- if (HCycleUnit) {
- sWhere1 += " and HCheckCycle like '%" + HCheckCycle + "%'";
+ if (HBillNo) {
+ sWhere1 += " and 鍗曟嵁鍙� like '%" + HBillNo + "%'";
}
if (HCycleUnit) {
- sWhere1 += " and HCycleUnit like '%" + HCycleUnit + "%'";
+ sWhere1 += " and 鍛ㄦ湡鍗曚綅 like '%" + HCycleUnit + "%'";
}
return sWhere1;
}
--
Gitblit v1.9.1