Browse Source

优化开单及时率报表字段顺序

dev
qb 2 weeks ago
parent
commit
7d76c0a58c
  1. 95
      src/option/reportforms/CreateOrderTimelinessRatioReport.js

95
src/option/reportforms/CreateOrderTimelinessRatioReport.js

@ -59,6 +59,30 @@ export const columnList = [
head: false, head: false,
isshowSummary: false, //开启统计 isshowSummary: false, //开启统计
}, },
{
prop: 'noOpenHasFreezeNum',
label: '未开单已冻结数',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
isshowSummary: true, //开启统计
},
{
prop: 'needOpenNum',
label: '应开单数',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
isshowSummary: true, //开启统计
},
{ {
prop: 'hasOpenNum', prop: 'hasOpenNum',
label: '已开单数', label: '已开单数',
@ -84,8 +108,20 @@ export const columnList = [
isshowSummary: false, //开启统计 isshowSummary: false, //开启统计
}, },
{ {
prop: 'noOpenRate', prop: 'onTimeNum',
label: '未开单占比', label: '准时开单数',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
isshowSummary: true, //开启统计
},
{
prop: 'onTimeRate',
label: '开单准时率',
type: 6, type: 6,
values: '', values: '',
width: '150', width: '150',
@ -93,18 +129,31 @@ export const columnList = [
fixed: false, fixed: false,
sortable: true, sortable: true,
head: false, head: false,
isshowSummary: true, //开启统计
}, },
{ {
prop: 'noOpenHasFreezeNum', prop: 'avgTime',
label: '未开单已冻结数', label: '平均开单时效(小时)',
type: 1, type: 1,
values: '', values: '',
width: '160',
checkarr: [],
fixed: false,
sortable: true,
head: false,
isshowSummary: false, //开启统计
},
{
prop: 'noOpenRate',
label: '未开单占比',
type: 6,
values: '',
width: '150', width: '150',
checkarr: [], checkarr: [],
fixed: false, fixed: false,
sortable: true, sortable: true,
head: false, head: false,
isshowSummary: true, //开启统计
}, },
{ {
prop: 'noOpenHasFreezeRate', prop: 'noOpenHasFreezeRate',
@ -166,18 +215,6 @@ export const columnList = [
head: false, head: false,
isshowSummary: false, //开启统计 isshowSummary: false, //开启统计
}, },
{
prop: 'onTimeNum',
label: '准时开单数',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
isshowSummary: true, //开启统计
},
{ {
prop: 'overTimeNum', prop: 'overTimeNum',
label: '超期开单数', label: '超期开单数',
@ -190,28 +227,4 @@ export const columnList = [
head: false, head: false,
isshowSummary: true, //开启统计 isshowSummary: true, //开启统计
}, },
{
prop: 'onTimeRate',
label: '开单准时率',
type: 6,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
isshowSummary: true, //开启统计
},
{
prop: 'avgTime',
label: '平均开单时效(小时)',
type: 1,
values: '',
width: '160',
checkarr: [],
fixed: false,
sortable: true,
head: false,
isshowSummary: false, //开启统计
},
]; ];

Loading…
Cancel
Save