From 8a36bbee40f5e1069b15a98b1e64ac9719ee8a46 Mon Sep 17 00:00:00 2001
From: zrg <z18737863051@163.com>
Date: 星期二, 23 四月 2024 17:17:13 +0800
Subject: [PATCH] 1.销售出库单 增加 反写源单 销售订单和发货通知单 超出 关联数量 关闭源单 2.应收单 增加 反写源单 销售出库单 和 销售订单 超出关联数量 关闭源单 3.动态获取源单增加参数 Num 0蓝单 1红单 2全部 4.销售流程的测试并完善功能; 销售订单-》发货通知单-》销售出库单-》应收单 (注意: 源单类型的下拉框 需要 根据数据库 表动态加载, 关联数量 要准确 , 审核 且 未关闭 未行关闭的行 才能下推 ,关联数量超额后,要 反写 关闭 源单 )
---
WebTM/views/PublicPage/MouldMaintainRuleInterList.html | 11 +++++------
1 files changed, 5 insertions(+), 6 deletions(-)
diff --git a/WebTM/views/PublicPage/MouldMaintainRuleInterList.html b/WebTM/views/PublicPage/MouldMaintainRuleInterList.html
index b752646..5940cfb 100644
--- a/WebTM/views/PublicPage/MouldMaintainRuleInterList.html
+++ b/WebTM/views/PublicPage/MouldMaintainRuleInterList.html
@@ -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: 'hmainid', title: 'HInterID' }
, { field: '鍗曟嵁鍙�', title: '鍗曟嵁鍙�' }
- , { field: 'HCycleUnit', 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) {
--
Gitblit v1.9.1