|
@@ -178,7 +178,7 @@ export const Columns = [
|
|
width: 200,
|
|
width: 200,
|
|
},
|
|
},
|
|
{ key: "isSendSrm", title: "是否同步SRM", type: "Checkbox", },
|
|
{ key: "isSendSrm", title: "是否同步SRM", type: "Checkbox", },
|
|
- { key: "isInvoice", title: "发票标识", type: "Input", },
|
|
|
|
|
|
+ { key: "isInvoice", title: "发票标识", type: "Checkbox", },
|
|
{ key: "supplierOrderNo", title: "供应商订单号", type: "Input", },
|
|
{ key: "supplierOrderNo", title: "供应商订单号", type: "Input", },
|
|
{ key: "rebateMoney", title: "订单使用返利金额", type: "Input", },
|
|
{ key: "rebateMoney", title: "订单使用返利金额", type: "Input", },
|
|
{ key: "deductionMoney", title: "订单抵扣余款金额", type: "Input", },
|
|
{ key: "deductionMoney", title: "订单抵扣余款金额", type: "Input", },
|
|
@@ -210,7 +210,7 @@ export const Columns = [
|
|
},
|
|
},
|
|
width: 200,
|
|
width: 200,
|
|
},
|
|
},
|
|
- { key: "isUrgency", title: "紧急程度", type: "Input", },
|
|
|
|
|
|
+ { key: "isUrgency", title: "紧急程度", type: "Checkbox", },
|
|
{ key: "isSendWms", title: "已同步WMS", type: "Checkbox", },
|
|
{ key: "isSendWms", title: "已同步WMS", type: "Checkbox", },
|
|
// { key: "agent", title: "代理人", type: "Input", }, // 建议删除
|
|
// { key: "agent", title: "代理人", type: "Input", }, // 建议删除
|
|
// { key: "agentName", title: "代理人名称", },
|
|
// { key: "agentName", title: "代理人名称", },
|
|
@@ -226,7 +226,7 @@ export const Columns = [
|
|
// // type: "InputDialog",
|
|
// // type: "InputDialog",
|
|
// },
|
|
// },
|
|
{ key: "supplierPersonalName", title: "供应商业务员名称", type: "Input", },
|
|
{ key: "supplierPersonalName", title: "供应商业务员名称", type: "Input", },
|
|
- { key: "isDeliver", title: "是否发货", type: "Input", },
|
|
|
|
|
|
+ { key: "isDeliver", title: "是否发货", type: "Checkbox", },
|
|
{
|
|
{
|
|
key: "retReason",
|
|
key: "retReason",
|
|
title: "退换原因",
|
|
title: "退换原因",
|
|
@@ -240,14 +240,14 @@ export const Columns = [
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
{
|
|
- key: "processType",
|
|
|
|
|
|
+ key: "processTypeName",
|
|
title: "处理方式",
|
|
title: "处理方式",
|
|
type: "InputDialog",
|
|
type: "InputDialog",
|
|
config: {
|
|
config: {
|
|
componentName: "PROCESSTYPE_PARAM",
|
|
componentName: "PROCESSTYPE_PARAM",
|
|
dataMapping: {
|
|
dataMapping: {
|
|
processType: "code",
|
|
processType: "code",
|
|
- // processTypeName: "name",
|
|
|
|
|
|
+ processTypeName: "name",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
@@ -279,7 +279,7 @@ export const Columns = [
|
|
{ key: "isArrivalReson", title: "到货超期原因", type: "Input", },
|
|
{ key: "isArrivalReson", title: "到货超期原因", type: "Input", },
|
|
{ key: "midOrderNo", title: "中台采购订单号", type: "Input", },
|
|
{ key: "midOrderNo", title: "中台采购订单号", type: "Input", },
|
|
{ key: "marketingCode", title: "销售订单号", type: "Input", },
|
|
{ key: "marketingCode", title: "销售订单号", type: "Input", },
|
|
- { key: "isArrival", title: "到货超期", type: "Input", },
|
|
|
|
|
|
+ { key: "isArrival", title: "到货超期", type: "Checkbox", },
|
|
{ key: "createByName", title: "创建人名称", type: "Input", },
|
|
{ key: "createByName", title: "创建人名称", type: "Input", },
|
|
{ key: "updateByName", title: "更新人名称", type: "Input", },
|
|
{ key: "updateByName", title: "更新人名称", type: "Input", },
|
|
{ key: "flowId", title: "OA流程ID", type: "Input", },
|
|
{ key: "flowId", title: "OA流程ID", type: "Input", },
|
|
@@ -290,7 +290,12 @@ export const Columns = [
|
|
type: "DatePicker",
|
|
type: "DatePicker",
|
|
config: { type: "date" },
|
|
config: { type: "date" },
|
|
},
|
|
},
|
|
- { key: "approveTime", title: "提交时间", },
|
|
|
|
|
|
+ {
|
|
|
|
+ key: "approveTime",
|
|
|
|
+ title: "提交时间",
|
|
|
|
+ type: "DatePicker",
|
|
|
|
+ config: { type: "date" },
|
|
|
|
+ },
|
|
|
|
|
|
];
|
|
];
|
|
|
|
|