This commit is contained in:
Taric Xin
2022-02-23 19:23:57 +08:00
parent 91a547c570
commit a1b8ca48cc
2 changed files with 6 additions and 3 deletions

View File

@ -36,7 +36,9 @@
{{ item.orderRefundCode }} <br> {{ item.refundStatusLabel }}
</ng-template>
<ng-template st-row="refundAmount" let-item let-index="index" let-column="column">
{{ item.refundAmount |currency }}
<ng-container *ngFor="let cost of item.billRefundDetailVOS">
{{cost.costName}}{{ cost.refundAmount |currency }}<br>
</ng-container>
</ng-template>
<ng-template st-row="billRefundPaymentVOS" let-item let-index="index" let-column="column">
<ng-container *ngFor="let bill of item.billRefundPaymentVOS">

View File

@ -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)
}
// {