赵新宇 1 year ago
parent
commit
676896e35b
  1. 32
      code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/models/inventory/vmi.js
  2. 4
      code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/models/vmi/balance.js
  3. 8
      code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/models/vmi/log.js
  4. 12
      code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/models/vmi/vmi.js

32
code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/models/inventory/vmi.js

@ -1,4 +1,4 @@
import { billType, codeType, subBillType } from "./inventory.js"; import { codeType, deliverBillType, deliverSubBillType } from "../_options.js";
export default function () { export default function () {
return { return {
@ -14,16 +14,16 @@ export default function () {
// title: "LU零件号", // title: "LU零件号",
// type: "string", // type: "string",
// }, // },
partCode: { realPartCode: {
title: "LU零件号", title: "LU零件号",
type: "string", type: "string",
}, },
customerPartCode: { custPartCode: {
title: "客户零件号", title: "客户零件号",
type: "string", type: "string",
}, },
codeType, codeType,
billType, deliverBillType,
qty: { qty: {
title: "数量", title: "数量",
type: "string", type: "string",
@ -33,7 +33,7 @@ export default function () {
type: "string", type: "string",
input: "datetime", input: "datetime",
}, },
deliverTime: { assembleData: {
title: "订单日期", title: "订单日期",
type: "string", type: "string",
input: "datetime", input: "datetime",
@ -62,29 +62,25 @@ export default function () {
title: "PJIS生产顺序号", title: "PJIS生产顺序号",
type: "string", type: "string",
}, },
reMark: { realCode: {
title: "备注", title: "实际生产码",
type: "string", type: "string",
}, },
configcode: { configcode: {
title: "配置码", title: "配置码",
type: "string", type: "string",
}, },
factory: { // factory: {
title: "工厂", // title: "工厂",
type: "string", // type: "string",
}, // },
subBillType, // deliverSubBillType,
realCode: {
title: "WMS实发生产码",
type: "string",
},
vinCode: { vinCode: {
title: "EDI订单生产码", title: "EDI订单生产码",
type: "string", type: "string",
}, },
settlementVinCode: { reMark: {
title: "结算生产码", title: "备注",
type: "string", type: "string",
}, },
}, },

4
code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/models/vmi/balance.js

@ -59,7 +59,7 @@ export default function () {
}, },
{ {
logic: "and", logic: "and",
column: "partCode", column: "realPartCode",
action: "like", action: "like",
value: null, value: null,
readOnly: true, readOnly: true,
@ -80,7 +80,7 @@ export default function () {
}, },
{ {
logic: "and", logic: "and",
column: "billType", column: "deliverBillType",
action: "equal", action: "equal",
value: null, value: null,
readOnly: true, readOnly: true,

8
code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/models/vmi/log.js

@ -60,8 +60,8 @@ export default function () {
}, },
{ {
logic: "and", logic: "and",
column: "billType", column: "realPartCode",
action: "equal", action: "like",
value: null, value: null,
readOnly: true, readOnly: true,
}, },
@ -81,8 +81,8 @@ export default function () {
}, },
{ {
logic: "and", logic: "and",
column: "partCode", column: "deliverBillType",
action: "like", action: "equal",
value: null, value: null,
readOnly: true, readOnly: true,
}, },

12
code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/models/vmi/vmi.js

@ -111,14 +111,22 @@ function useLogSchema() {
title: "变动人", title: "变动人",
type: "string", type: "string",
}, },
partCode2: { changedQty: {
title: "结算厂内零件号", title: "变动数量",
type: "string", type: "string",
}, },
isReplenished: {
type: "boolean",
title: "是否补货",
},
settlementVinCode: { settlementVinCode: {
title: "结算生产码", title: "结算生产码",
type: "string", type: "string",
}, },
settlementPartCode: {
title: "结算厂内零件号",
type: "string",
},
}, },
useSchema() useSchema()
); );

Loading…
Cancel
Save