Merge branch 'develop' of https://gitlab.eascs.com/tms-ui/tms-obc-web into develop

This commit is contained in:
wangshiming
2022-02-28 20:57:26 +08:00
5 changed files with 7 additions and 5 deletions

View File

@ -250,9 +250,9 @@ export class RefundRecordComponent implements OnInit {
private initST(): STColumn[] {
return [
{ title: '退款单号', render: 'orderRefundCode', width: 190 },
{ title: '退款类型', index: 'refundTypeLabel', width: 130 },
{ title: '退款类型', index: 'refundTypeLabel', width: 140 },
{ title: '退款金额', render: 'refundAmount', className: 'text-right', width: 180 },
{ title: '退款时间', index: 'applyTime', width: 170 },
{ title: '退款时间', index: 'refundExecuteTime', width: 170 },
{ title: '货主', index: 'shipperId', width: 150 },
{ title: '所属项目', index: 'enterpriseProjectName', width: 140 },
{ title: '支付单', render: 'billRefundPaymentVOS', width: 150 },

View File

@ -115,7 +115,7 @@ export class CancellationInvoiceComponent implements OnInit {
*/
batchPush() {
if (this.selectedRows?.length <= 0) {
this.service.msgSrv.warning('请选择开票申请');
this.service.msgSrv.warning('请选择推送开票单');
return;
}
if (this.selectedRows.find(item => item.sts !== '1')) {

View File

@ -87,7 +87,7 @@
</nz-card>
<nz-card class="content-box" nzBordered>
<div class="d-flex align-items-center mb-md mt-sm">
<div class="d-flex align-items-center mb-md mt-sm" *ngIf="sts==='1'">
<button nz-button (click)="openRequestedModal('1')">全部开票</button>
<button nz-button (click)="openRequestedModal('2')">开票</button>
<button nz-button (click)="removeOrder()">移除</button>

View File

@ -26,6 +26,7 @@ export class InvoiceRequestedDetailComponent implements OnInit {
_$expand = false;
id = null;
sts = null;
headerInfo: any = {};
constructor(
public service: TicketService,
@ -34,6 +35,7 @@ export class InvoiceRequestedDetailComponent implements OnInit {
private router: Router
) {
this.id = route.snapshot.params.id;
this.sts = route.snapshot.queryParams.sts;
this.loadHeadInfo();
}

View File

@ -420,7 +420,7 @@ export class InvoiceRequestedComponent implements OnInit {
// },
{
text: '订单明细<br/>',
click: item => this.router.navigate(['/ticket/invoice-requested/detail/' + item?.id])
click: item => this.router.navigate(['/ticket/invoice-requested/detail/' + item?.id], { queryParams: { sts: item.sts } })
},
{
text: '查看原因<br/>',