Browse Source

库存余额界面修改

master
zhouhongjun 1 year ago
parent
commit
19ef4fd79a
  1. 37
      code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/models/vmi/balance.js
  2. 55
      code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/models/vmi/vmi.js

37
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: {

55
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",
},
},
};
}

Loading…
Cancel
Save