diff --git a/src/app/routes/financial-management/components/refund-record/refund-record.component.html b/src/app/routes/financial-management/components/refund-record/refund-record.component.html index c2786d86..f537adfb 100644 --- a/src/app/routes/financial-management/components/refund-record/refund-record.component.html +++ b/src/app/routes/financial-management/components/refund-record/refund-record.component.html @@ -36,7 +36,9 @@ {{ item.orderRefundCode }}
{{ item.refundStatusLabel }} - {{ item.refundAmount |currency }} + + {{cost.costName}}:{{ cost.refundAmount |currency }}
+
diff --git a/src/app/routes/financial-management/components/refund-record/refund-record.component.ts b/src/app/routes/financial-management/components/refund-record/refund-record.component.ts index 3fdd2634..68c1a15b 100644 --- a/src/app/routes/financial-management/components/refund-record/refund-record.component.ts +++ b/src/app/routes/financial-management/components/refund-record/refund-record.component.ts @@ -246,8 +246,8 @@ export class RefundRecordComponent implements OnInit { private initST(): STColumn[] { return [ { title: '退款单号', render: 'orderRefundCode', width: 180 }, - { title: '退款类型', index: 'refundType', width: 120 }, - { title: '退款金额', render: 'refundAmount', width: 120 }, + { title: '退款类型', index: 'refundTypeLabel', width: 120 }, + { title: '退款金额', render: 'refundAmount', className: 'text-right', width: 160 }, { title: '退款时间', index: 'applyTime', width: 160 }, { title: '货主', index: 'shipperId', width: 150 }, { title: '所属项目', index: 'enterpriseProjectName', width: 140 }, @@ -273,6 +273,7 @@ export class RefundRecordComponent implements OnInit { }, { text: '重新发起', + iif: item => item.refundStatus === '5', click: item => this.reApply(item) } // {