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