Authored by OF1706

mod

... ... @@ -35,16 +35,21 @@ export default function() {
},
},
{
title: '仓库可售库存',
title: '可售库存',
key: 'total',
align: 'center'
},
{
title: 'JIT可调拨库存(可售)',
title: 'jit库存',
key: 'jitVirtual',
align: 'center'
},
{
title: '可卖货位',
key: 'shiftLogs',
align: 'center'
},
{
title: '订单占用',
key: 'orderBuy',
align: 'center'
... ... @@ -63,19 +68,6 @@ export default function() {
title: '仓库不可售(其他)',
key: 'otherStorage',
align: 'center'
},
{
title: '库存总计',
key: 'total',
align: 'center',
render: (h, params) => {
return (
<span>{params.row.total + params.row.jitVirtual +
params.row.orderBuy + params.row.returnSupplier +
params.row.defective + params.row.otherStorage}
(可售:{params.row.total + params.row.jitVirtual})</span>
);
},
}],
tableData: [],
pageData: {
... ...