|
@@ -335,6 +335,7 @@ export default {
|
|
|
{ title: '退货数量', scopedSlots: { customRender: 'returnQty' }, width: '10%', align: 'center' },
|
|
|
{ title: '操作', scopedSlots: { customRender: 'action' }, width: '10%', align: 'center' }
|
|
|
]
|
|
|
+ return arr
|
|
|
},
|
|
|
chooseColumns(){
|
|
|
const _this = this
|
|
@@ -350,6 +351,7 @@ export default {
|
|
|
if(this.$hasPermissions('B_transferReturnEdit_salesPrice')){
|
|
|
arr.splice(6,0,{ title: '退货金额', dataIndex: 'totalReturnPrice', width: '10%', align: 'right', customRender: function (text) { return ((text || text == 0) ? _this.toThousands(text) : '--') } })
|
|
|
}
|
|
|
+ return arr
|
|
|
}
|
|
|
},
|
|
|
methods: {
|