|
|
@ -36,6 +36,98 @@ const businessType = { |
|
|
|
{ value: 8, label: "印度件" }, |
|
|
|
], |
|
|
|
}; |
|
|
|
export default businessType; |
|
|
|
|
|
|
|
export { version, state, state2, state3 }; |
|
|
|
const transType = { |
|
|
|
title: "事务类型", |
|
|
|
type: "string", |
|
|
|
input: "select", |
|
|
|
options: [ |
|
|
|
{ value: -1, label: "退货" }, |
|
|
|
{ value: 1, label: "发货" }, |
|
|
|
], |
|
|
|
}; |
|
|
|
|
|
|
|
const deliverBillType = { |
|
|
|
title: "发运主类型", |
|
|
|
type: "string", |
|
|
|
input: "select", |
|
|
|
options: [ |
|
|
|
{ value: 0, label: "无" }, |
|
|
|
{ value: 1, label: "JIS件" }, |
|
|
|
{ value: 2, label: "JIT直供件" }, |
|
|
|
{ value: 3, label: "印度件" }, |
|
|
|
{ value: 4, label: "北汽4S备件" }, |
|
|
|
], |
|
|
|
}; |
|
|
|
|
|
|
|
const deliverSubBillType = { |
|
|
|
title: "发运子类型", |
|
|
|
type: "string", |
|
|
|
input: "select", |
|
|
|
options: [ |
|
|
|
{ value: 0, label: "无" }, |
|
|
|
{ value: 1, label: "保险杠BBAC" }, |
|
|
|
{ value: 2, label: "保险杠HBPO" }, |
|
|
|
{ value: 3, label: "买单件保险杠BBAC" }, |
|
|
|
{ value: 4, label: "买单件保险杠HBPO" }, |
|
|
|
{ value: 5, label: "买单件小件BBAC" }, |
|
|
|
{ value: 6, label: "买单件小件HBPO" }, |
|
|
|
{ value: 7, label: "小件BBAC" }, |
|
|
|
{ value: 8, label: "小件HBPO" }, |
|
|
|
{ value: 9, label: "JIT直供件BBAC" }, |
|
|
|
{ value: 10, label: "JIT直供件HBPO" }, |
|
|
|
{ value: 11, label: "印度件BBAC" }, |
|
|
|
{ value: 12, label: "北汽4S备件BBAC" }, |
|
|
|
], |
|
|
|
}; |
|
|
|
|
|
|
|
const proType = { |
|
|
|
title: "业务类型", |
|
|
|
type: "string", |
|
|
|
input: "select", |
|
|
|
options: [ |
|
|
|
{ value: 0, label: "无" }, |
|
|
|
{ value: 1, label: "Jit发货" }, |
|
|
|
{ value: 2, label: "Jit补发订单" }, |
|
|
|
{ value: 3, label: "Jit备件" }, |
|
|
|
{ value: 4, label: "Jit买单件" }, |
|
|
|
{ value: 5, label: "Jit匹配件" }, |
|
|
|
{ value: 6, label: "Jis发货" }, |
|
|
|
{ value: 7, label: "Jis备件" }, |
|
|
|
{ value: 8, label: "Jis买单件" }, |
|
|
|
{ value: 9, label: "Jis匹配件" }, |
|
|
|
{ value: 10, label: "Jis补发订单" }, |
|
|
|
{ value: 11, label: "Jis退货" }, |
|
|
|
{ value: 12, label: "Jis备件退货" }, |
|
|
|
{ value: 13, label: "Jis买单件退货" }, |
|
|
|
{ value: 14, label: "Jis匹配件退货" }, |
|
|
|
{ value: 15, label: "Jis补发订单退货" }, |
|
|
|
{ value: 16, label: "Jit退货" }, |
|
|
|
{ value: 17, label: "Jit备件退货" }, |
|
|
|
{ value: 18, label: "Jit买单件退货" }, |
|
|
|
{ value: 19, label: "Jit匹配件退货" }, |
|
|
|
{ value: 20, label: "Jit补发订单退货" }, |
|
|
|
{ value: 21, label: "北汽4S发货" }, |
|
|
|
{ value: 22, label: "HBPO发货" }, |
|
|
|
{ value: 23, label: "直供件发货" }, |
|
|
|
{ value: 24, label: "印度件发货" }, |
|
|
|
{ value: 25, label: "北汽4S退货" }, |
|
|
|
{ value: 26, label: "HBPO退货" }, |
|
|
|
{ value: 27, label: "直供件退货" }, |
|
|
|
{ value: 28, label: "印度件退货" }, |
|
|
|
], |
|
|
|
}; |
|
|
|
|
|
|
|
const billState = { |
|
|
|
title: "状态", |
|
|
|
type: "string", |
|
|
|
input: "select", |
|
|
|
options: [ |
|
|
|
{ value: 0, label: "新建" }, |
|
|
|
{ value: 1, label: "部分执行" }, |
|
|
|
{ value: 2, label: "完成" }, |
|
|
|
], |
|
|
|
}; |
|
|
|
|
|
|
|
export default businessType; |
|
|
|
export { version, state, state2, state3, transType, deliverBillType, deliverSubBillType, proType, billState }; |
|
|
|