|
@@ -222,12 +222,19 @@ export const ORDER_COLUMNS: DescriptionColumns = [
|
|
|
if(!context || !context.orderTax) return ''
|
|
|
if(context.orderTax.length === 0) return ''
|
|
|
const {cat_code, cat_name, tax, short_name } = context.orderTax || {}
|
|
|
- return cat_code + '-' + cat_name + '-' +short_name + '-' + tax + '%'
|
|
|
+ return cat_code + '-' + cat_name + '-' + short_name + '-' + tax + '%'
|
|
|
}
|
|
|
},
|
|
|
+ {
|
|
|
+ label: '订单商品名称',
|
|
|
+ span: 9,
|
|
|
+ render(_, context) {
|
|
|
+ return context.goodName
|
|
|
+ }
|
|
|
+ },
|
|
|
{
|
|
|
label: '开票商品名称',
|
|
|
- span: 18,
|
|
|
+ span: 9,
|
|
|
render(_, context){
|
|
|
if(!context || !context.orderTax) return ''
|
|
|
const { inv_good_name } = context.orderTax || {}
|