fix bug
This commit is contained in:
@ -4,8 +4,8 @@
|
|||||||
* @Author : Shiming
|
* @Author : Shiming
|
||||||
* @Date : 2022-01-05 20:15:41
|
* @Date : 2022-01-05 20:15:41
|
||||||
* @LastEditors : Shiming
|
* @LastEditors : Shiming
|
||||||
* @LastEditTime : 2022-01-18 17:17:19
|
* @LastEditTime : 2022-05-11 15:06:17
|
||||||
* @FilePath : \\tms-obc-web\\src\\app\\routes\\financial-management\\components\\withdrawals-record\\withdrawals-detail\\withdrawals-detail.component.html
|
* @FilePath : \\tms-obc-web\\src\\app\\routes\\partner\\recorded\\components\\detail\\detail.component.html
|
||||||
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
||||||
-->
|
-->
|
||||||
<page-header-wrapper [title]="'入账详情'" [logo]="logo" [action]="action">
|
<page-header-wrapper [title]="'入账详情'" [logo]="logo" [action]="action">
|
||||||
@ -40,7 +40,7 @@
|
|||||||
{{formData?.entryNumber}}
|
{{formData?.entryNumber}}
|
||||||
</se>
|
</se>
|
||||||
<se label="银行类型">
|
<se label="银行类型">
|
||||||
{{formData?.bankName}}
|
{{formData?.bankType}}
|
||||||
</se>
|
</se>
|
||||||
<se label="虚拟账户">
|
<se label="虚拟账户">
|
||||||
{{formData?.fictitiousAccount}}
|
{{formData?.fictitiousAccount}}
|
||||||
@ -58,7 +58,10 @@
|
|||||||
{{formData?.recordedAmount | currency}}
|
{{formData?.recordedAmount | currency}}
|
||||||
</se>
|
</se>
|
||||||
<se label="入账状态">
|
<se label="入账状态">
|
||||||
{{formData?.stsLabel}}
|
<span *ngIf="formData?.sts == '1'">待审核</span>
|
||||||
|
<span *ngIf="formData?.sts == '2'">待复核</span>
|
||||||
|
<span *ngIf="formData?.sts == '3'">已入账</span>
|
||||||
|
<span *ngIf="formData?.sts == '4'">已驳回</span>
|
||||||
</se>
|
</se>
|
||||||
<se label="发票图片">
|
<se label="发票图片">
|
||||||
<img *ngIf="formData?.invoiceUrl" nz-image width="100px" height="100px" [nzSrc]="formData?.invoiceUrl" alt="" />
|
<img *ngIf="formData?.invoiceUrl" nz-image width="100px" height="100px" [nzSrc]="formData?.invoiceUrl" alt="" />
|
||||||
|
|||||||
@ -29,44 +29,44 @@ export class PartnerRecordedDetailComponent implements OnInit {
|
|||||||
this.formData = res;
|
this.formData = res;
|
||||||
// 处理流程节点数据
|
// 处理流程节点数据
|
||||||
// 流程是否结束
|
// 流程是否结束
|
||||||
// let isEnd = false;
|
let isEnd = false;
|
||||||
// if (res.successTime) {
|
if (res.successTime) {
|
||||||
// isEnd = true;
|
isEnd = true;
|
||||||
// if (res.refundStatus === '3') {
|
if (res.refundStatus === '3') {
|
||||||
// this.timeLineData.push({ time: res.successTime, value: `到账成功`, color: 'green' });
|
this.timeLineData.push({ time: res.successTime, value: `到账成功`, color: 'green' });
|
||||||
// } else {
|
} else {
|
||||||
// this.timeLineData.push({ time: res.successTime, value: `提现失败`, color: 'red' });
|
this.timeLineData.push({ time: res.successTime, value: `提现失败`, color: 'red' });
|
||||||
// }
|
}
|
||||||
// }
|
}
|
||||||
// if (res.agreeTime && res.refundStatus !== '4') {
|
if (res.agreeTime && res.refundStatus !== '4') {
|
||||||
// this.timeLineData.push({ time: res.agreeTime, value: `银行处理中`, color: 'gray' });
|
this.timeLineData.push({ time: res.agreeTime, value: `银行处理中`, color: 'gray' });
|
||||||
// }
|
}
|
||||||
// if (res.agreeTime) {
|
if (res.agreeTime) {
|
||||||
// if (res.refundStatus === '4') {
|
if (res.refundStatus === '4') {
|
||||||
// isEnd = true;
|
isEnd = true;
|
||||||
// this.timeLineData.push({
|
this.timeLineData.push({
|
||||||
// time: res.agreeTime,
|
time: res.agreeTime,
|
||||||
// value: `拒绝提现<br/>操作人员:${res.handlerUserIdLabel}`,
|
value: `拒绝提现<br/>操作人员:${res.handlerUserIdLabel}`,
|
||||||
// color: 'red'
|
color: 'red'
|
||||||
// });
|
});
|
||||||
// } else {
|
} else {
|
||||||
// this.timeLineData.push({
|
this.timeLineData.push({
|
||||||
// time: res.agreeTime,
|
time: res.agreeTime,
|
||||||
// value: `审核通过<br/>操作人员:${res.handlerUserIdLabel}`,
|
value: `审核通过<br/>操作人员:${res.handlerUserIdLabel}`,
|
||||||
// color: 'gray'
|
color: 'gray'
|
||||||
// });
|
});
|
||||||
// }
|
}
|
||||||
// }
|
}
|
||||||
// if (res.createTime) {
|
if (res.createTime) {
|
||||||
// this.timeLineData.push({
|
this.timeLineData.push({
|
||||||
// time: res.createTime,
|
time: res.createTime,
|
||||||
// value: `提交提现申请<br/>提现${res.amount}元至${res.bankName}(${res.bankCardNumber})<br/>操作人员:${res.userIdLabel}`,
|
value: `提交提现申请<br/>提现${res.amount}元至${res.bankName}(${res.bankCardNumber})<br/>操作人员:${res.userIdLabel}`,
|
||||||
// color: 'gray'
|
color: 'gray'
|
||||||
// });
|
});
|
||||||
// }
|
}
|
||||||
// if (this.timeLineData?.length > 0 && !isEnd) {
|
if (this.timeLineData?.length > 0 && !isEnd) {
|
||||||
// this.timeLineData[0].color = 'green';
|
this.timeLineData[0].color = 'green';
|
||||||
// }
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@ -226,7 +226,7 @@ export class TaxManagementOrderReportingComponent extends BasicTableComponent im
|
|||||||
{ title: '卸货地详细地址', index: 'unloadDetailedAddress', className: 'text-center', width: '180px' },
|
{ title: '卸货地详细地址', index: 'unloadDetailedAddress', className: 'text-center', width: '180px' },
|
||||||
{ title: '货主名称', index: 'shipperName', className: 'text-center', width: '180px' },
|
{ title: '货主名称', index: 'shipperName', className: 'text-center', width: '180px' },
|
||||||
{ title: '货主纳税人识别号', index: 'shipperProvinceCode', className: 'text-center', width: '180px' },
|
{ title: '货主纳税人识别号', index: 'shipperProvinceCode', className: 'text-center', width: '180px' },
|
||||||
{ title: '录单时间', index: 'recordTime', className: 'text-center', width: '250px' },
|
{ title: '录单时间', index: 'billCreateTime', className: 'text-center', width: '250px' },
|
||||||
{ title: '接单时间', index: 'wayBillCreateTime', className: 'text-center', width: '200px' },
|
{ title: '接单时间', index: 'wayBillCreateTime', className: 'text-center', width: '200px' },
|
||||||
{ title: '发车时间', index: 'loadTime', className: 'text-center', width: '200px' },
|
{ title: '发车时间', index: 'loadTime', className: 'text-center', width: '200px' },
|
||||||
{ title: '到车时间', index: 'unloadTime', className: 'text-center', width: '150px' },
|
{ title: '到车时间', index: 'unloadTime', className: 'text-center', width: '150px' },
|
||||||
|
|||||||
Reference in New Issue
Block a user