From af6159d4a54c3dccfe142bd8454a230e80987c65 Mon Sep 17 00:00:00 2001 From: zhouhongjun <565221961@qq.com> Date: Mon, 13 Nov 2023 15:08:29 +0800 Subject: [PATCH] =?UTF-8?q?=E6=81=A2=E5=A4=8D=E4=B8=8B=E6=8B=89=E6=A1=86?= =?UTF-8?q?=E9=80=89=E9=A1=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../wwwroot/models/vmi/vmi.js | 55 ++++++++++++++++++- 1 file changed, 54 insertions(+), 1 deletion(-) 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 2e10f143..a6eb138c 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,6 +15,17 @@ function useSchema() { }, ], }, + custPartCode: { + title: "客户零件号", + type: "string", + rules: [ + { + required: true, + }, + ], + }, + codeType, + deliverBillType: Object.assign({ rules: [{ required: true }] }, deliverBillType), qty: { title: "数量", type: "string", @@ -45,6 +56,44 @@ 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", @@ -54,7 +103,11 @@ function useSchema() { }, ], }, - + reMark: { + title: "备注", + type: "string", + input: "textarea", + }, }, }; }