From 19ef4fd79adabb041e8861af4a3afca133460447 Mon Sep 17 00:00:00 2001 From: zhouhongjun <565221961@qq.com> Date: Fri, 10 Nov 2023 09:19:13 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BA=93=E5=AD=98=E4=BD=99=E9=A2=9D=E7=95=8C?= =?UTF-8?q?=E9=9D=A2=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../wwwroot/models/vmi/balance.js | 37 ------------- .../wwwroot/models/vmi/vmi.js | 55 +------------------ 2 files changed, 1 insertion(+), 91 deletions(-) diff --git a/code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/models/vmi/balance.js b/code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/models/vmi/balance.js index b3459aa7..0ab80b7b 100644 --- a/code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/models/vmi/balance.js +++ b/code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/models/vmi/balance.js @@ -50,22 +50,6 @@ export default function () { }, }, default: [ - { - logic: "and", - column: "billTime", - action: "biggerThanOrEqual", - value: null, - readOnly: true, - title: "发运开始", - }, - { - logic: "and", - column: "billTime", - action: "smallThan", - value: null, - readOnly: true, - title: "发运结束", - }, { logic: "and", column: "erpToLoc", @@ -80,13 +64,6 @@ export default function () { value: null, readOnly: true, }, - { - logic: "and", - column: "custPartCode", - action: "like", - value: null, - readOnly: true, - }, { logic: "and", column: "vinCode", @@ -94,20 +71,6 @@ export default function () { value: null, readOnly: true, }, - { - logic: "and", - column: "codeType", - action: "equal", - value: null, - readOnly: true, - }, - { - logic: "and", - column: "deliverBillType", - action: "equal", - value: null, - readOnly: true, - }, ], }, skipCount: { diff --git a/code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/models/vmi/vmi.js b/code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/models/vmi/vmi.js index a6eb138c..2e10f143 100644 --- a/code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/models/vmi/vmi.js +++ b/code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/models/vmi/vmi.js @@ -15,17 +15,6 @@ function useSchema() { }, ], }, - custPartCode: { - title: "客户零件号", - type: "string", - rules: [ - { - required: true, - }, - ], - }, - codeType, - deliverBillType: Object.assign({ rules: [{ required: true }] }, deliverBillType), qty: { title: "数量", type: "string", @@ -56,44 +45,6 @@ function useSchema() { }, ], }, - seq: { - title: "EDI顺序号", - type: "string", - }, - orderNum: { - title: "客户订单号", - type: "string", - rules: [ - { - required: true, - }, - ], - }, - uniqueCode: { - title: "塑件唯一码", - type: "string", - }, - matchNumber: { - title: "EDI总成号", - type: "string", - }, - pjsNum: { - title: "PJIS生产顺序号", - type: "string", - }, - realCode: { - title: "实际生产码", - type: "string", - }, - configcode: { - title: "配置码", - type: "string", - }, - factory: { - title: "工厂", - type: "string", - }, - deliverSubBillType: Object.assign({ rules: [{ required: true }] }, deliverSubBillType), vinCode: { title: "EDI订单生产码", type: "string", @@ -103,11 +54,7 @@ function useSchema() { }, ], }, - reMark: { - title: "备注", - type: "string", - input: "textarea", - }, + }, }; }