|
@@ -64,6 +64,7 @@ export const Columns = [
|
|
|
},
|
|
|
queryParams: () => ({}),
|
|
|
isShow:true,
|
|
|
+ require: true,
|
|
|
},
|
|
|
{
|
|
|
key: "finalTypeName",
|
|
@@ -82,10 +83,10 @@ export const Columns = [
|
|
|
key: "buyerName",
|
|
|
title: "采购员",
|
|
|
inputType: "PopoverSelect",
|
|
|
- valueKey: "id",
|
|
|
+ valueKey: "code",
|
|
|
referName: "CONTACTS_PARAM",
|
|
|
dataMapping: {
|
|
|
- buyer: 'id',
|
|
|
+ buyer: 'code',
|
|
|
buyerName: 'name'
|
|
|
},
|
|
|
queryParams: () => ({}),
|
|
@@ -163,6 +164,7 @@ export const Columns = [
|
|
|
pkOrg: params.puOrg,
|
|
|
}),
|
|
|
isShow:true,
|
|
|
+ require: true,
|
|
|
},
|
|
|
{
|
|
|
key: "goodsAllocationName",
|
|
@@ -175,6 +177,7 @@ export const Columns = [
|
|
|
goodsAllocationName: 'name'
|
|
|
},
|
|
|
isShow:true,
|
|
|
+ require: true,
|
|
|
queryParams: (params) => ({
|
|
|
stordocId: params.warehouse,
|
|
|
}),
|
|
@@ -188,14 +191,12 @@ export const Columns = [
|
|
|
title: "订单使用返利金额",
|
|
|
inputType: "Input",
|
|
|
isShow:true,
|
|
|
- require: true,
|
|
|
},
|
|
|
{
|
|
|
key: "deductionMoney",
|
|
|
title: "订单抵扣余款金额",
|
|
|
inputType: "Input",
|
|
|
isShow:true,
|
|
|
- require: true,
|
|
|
},
|
|
|
{
|
|
|
key: "goodsWarehouseName",
|
|
@@ -203,6 +204,7 @@ export const Columns = [
|
|
|
inputType: "Input",
|
|
|
isShow:true,
|
|
|
disabled:true,
|
|
|
+ require: true,
|
|
|
},
|
|
|
{
|
|
|
key: "address",
|
|
@@ -275,10 +277,10 @@ export const Columns = [
|
|
|
key: "agentName",
|
|
|
title: "代理人",
|
|
|
inputType: "PopoverSelect",
|
|
|
- valueKey: "id",
|
|
|
+ valueKey: "code",
|
|
|
referName: "CONTACTS_PARAM",
|
|
|
dataMapping: {
|
|
|
- agent: 'id',
|
|
|
+ agent: 'code',
|
|
|
agentName: 'name'
|
|
|
},
|
|
|
isShow:true,
|
|
@@ -777,14 +779,54 @@ export const TabColumns = [
|
|
|
width: 120,
|
|
|
require: true,
|
|
|
},
|
|
|
- { key: "stroageQty", title: "累计到货主数量", inputType: "Input", width: 120 },
|
|
|
- { key: "stockQty", title: "累计入库主数量", inputType: "Input", width: 120 },
|
|
|
- { key: "invoiceQty", title: "累计开票主数量", inputType: "Input", width: 120 },
|
|
|
- { key: "rollbackQty", title: "累计退货主数量", inputType: "Input", width: 120 },
|
|
|
- { key: "backStockQty", title: "累计退库主数量", inputType: "Input", width: 120 },
|
|
|
- { key: "floatQty", title: "未到货数量", inputType: "Input", width: 120 },
|
|
|
- { key: "createByName", title: "创建人名称", inputType: "Input", width: 120 },
|
|
|
- { key: "updateByName", title: "更新人名称", inputType: "Input", width: 120 },
|
|
|
+ {
|
|
|
+ key: "stroageQty",
|
|
|
+ title: "累计到货主数量",
|
|
|
+ inputType: "Input",
|
|
|
+ width: 120
|
|
|
+ },
|
|
|
+ {
|
|
|
+ key: "stockQty",
|
|
|
+ title: "累计入库主数量",
|
|
|
+ inputType: "Input",
|
|
|
+ width: 120
|
|
|
+ },
|
|
|
+ {
|
|
|
+ key: "invoiceQty",
|
|
|
+ title: "累计开票主数量",
|
|
|
+ inputType: "Input",
|
|
|
+ width: 120
|
|
|
+ },
|
|
|
+ {
|
|
|
+ key: "rollbackQty",
|
|
|
+ title: "累计退货主数量",
|
|
|
+ inputType: "Input",
|
|
|
+ width: 120
|
|
|
+ },
|
|
|
+ {
|
|
|
+ key: "backStockQty",
|
|
|
+ title: "累计退库主数量",
|
|
|
+ inputType: "Input",
|
|
|
+ width: 120
|
|
|
+ },
|
|
|
+ {
|
|
|
+ key: "floatQty",
|
|
|
+ title: "未到货数量",
|
|
|
+ inputType: "Input",
|
|
|
+ width: 120
|
|
|
+ },
|
|
|
+ {
|
|
|
+ key: "createByName",
|
|
|
+ title: "创建人名称",
|
|
|
+ inputType: "Input",
|
|
|
+ width: 120
|
|
|
+ },
|
|
|
+ {
|
|
|
+ key: "updateByName",
|
|
|
+ title: "更新人名称",
|
|
|
+ inputType: "Input",
|
|
|
+ width: 120
|
|
|
+ },
|
|
|
]
|
|
|
},
|
|
|
];
|