Commit 8369a598 authored by rainbowmorel@163.com's avatar rainbowmorel@163.com

补充字段

parent daeb04ee
......@@ -46,7 +46,7 @@ const srmPurchaserHomeRoute = {
// isDev ? [ homeRoute, OrderRoute ] :
// const routes = asyncRoutes;
const routes = isDev ? [ homeRoute, ProcurementRoute ] : asyncRoutes;
const routes = !isDev ? [ homeRoute, OrderRoute ] : asyncRoutes;
const memberCenterRoute = {
path: '/memberCenter',
......
......@@ -58,7 +58,8 @@ export const DeliveryNoticeTableColumnSRM: any = [
UntilColumn,
OrderNoColumn,
OrderCreatedAtColumn,
OrderNumColumn
OrderNumColumn,
DeliveryNumColumn
];
// 计划送货物料表格
......
......@@ -17,113 +17,114 @@ export const CommodityNoColumn: any = {
}
export const TradeNameColumn: any = {
export const TradeNameColumn: any = {
title: '商品名称',
dataIndex: 'productName',
key: 'productName',
align: 'center',
}
export const MaterialNoColumn: any = {
export const MaterialNoColumn: any = {
title: '物料编号',
dataIndex: 'skuId',
key: 'skuId',
// align: 'center',
}
export const MaterialNameColumn: any = {
export const MaterialNameColumn: any = {
title: '物料名称',
dataIndex: 'productName',
key: 'productName',
align: 'center',
}
export const MaterialModelColumn: any = {
export const MaterialModelColumn: any = {
title: '规格型号',
dataIndex: 'spec',
key: 'spec',
// align: 'center',
}
export const ClassColumn: any = {
export const ClassColumn: any = {
title: '品类',
dataIndex: 'category',
key: 'category',
align: 'center',
}
export const BrandColumn: any = {
export const BrandColumn: any = {
title: '品牌',
dataIndex: 'brand',
key: 'brand',
align: 'center',
}
export const UntilColumn: any = {
export const UntilColumn: any = {
title: '单位',
dataIndex: 'unit',
key: 'unit',
align: 'center',
}
export const OrderNoColumn: any = {
export const OrderNoColumn: any = {
title: '订单号',
dataIndex: 'orderNo',
key: 'orderNo',
// align: 'center',
}
export const OrderSummaryColumn: any = {
export const OrderSummaryColumn: any = {
title: '订单摘要',
// align: 'center',
}
export const OrderCreatedAtColumn: any = {
export const OrderCreatedAtColumn: any = {
title: '下单时间',
// align: 'center',
render: (txt, rcoed) => dayjs(rcoed.createTime).format('YYYY-MM-DD HH:mm:ss')
}
export const OrderNumColumn: any = {
export const OrderNumColumn: any = {
title: '订单数量',
dataIndex: 'purchaseCount',
key: 'purchaseCount',
// align: 'center',
}
export const DeliveryNumColumn: any = {
export const DeliveryNumColumn: any = {
title: '送货数量',
width: 100,
// align: 'center',
datdataIndexaIn: 'deliveryCount',
key: 'deliveryCount'
}
export const ConsigneeNumColumn: any = {
export const ConsigneeNumColumn: any = {
title: '收货数量',
// align: 'center',
}
export const TransitNumColumn: any = {
export const TransitNumColumn: any = {
title: '在途数量',
// align: 'center',
render: (txt, rcoed) => txt
}
export const DeliveredNumColumn: any = {
export const DeliveredNumColumn: any = {
title: '待送货数量',
// align: 'center',
}
export const PlannedDeliveryNumColumn: any = {
export const PlannedDeliveryNumColumn: any = {
title: '计划送货数量',
// align: 'center',
}
export const FlowOnColumn: any = {
export const FlowOnColumn: any = {
title: '序号',
// align: 'center',
}
export const FlowRoleColumn: any = {
export const FlowRoleColumn: any = {
title: '操作角色',
// align: 'center',
}
......@@ -133,17 +134,17 @@ export const FlowStatusColumn = {
// align: 'center',
}
export const FlowOptionsColumn: any = {
export const FlowOptionsColumn: any = {
title: '操作',
// align: 'center',
}
export const FlowOptionsTimeColumn: any = {
export const FlowOptionsTimeColumn: any = {
title: '操作时间',
// align: 'center',
}
export const FlowNoteColumn: any = {
export const FlowNoteColumn: any = {
title: '审核意见',
// align: 'center',
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment