|
@@ -243,7 +243,7 @@ export default {
|
|
|
}
|
|
|
if (this.$hasPermissions('M_shortageStatisticsCList_salesPrice')) { // 售价权限
|
|
|
const ind = this.$hasPermissions('M_shortageStatisticsCList_costPrice') ? 16 : 15
|
|
|
- arr.splice(ind, 0, { title: '缺货实售金额', dataIndex: 'totalSalesAmount', width: 90, align: 'right', customRender: text => ((text || text == 0) ? this.toThousands(text) : '--') })
|
|
|
+ arr.splice(ind, 0, { title: '缺货实售金额', dataIndex: 'totalRealSaleAmount', width: 90, align: 'right', customRender: text => ((text || text == 0) ? this.toThousands(text) : '--') })
|
|
|
arr.splice(ind + 1, 0, { title: '缺货开单金额', dataIndex: 'totalAmount', width: 90, align: 'right', customRender: text => ((text || text == 0) ? this.toThousands(text) : '--') })
|
|
|
}
|
|
|
return arr
|