edit
This commit is contained in:
@ -237,7 +237,7 @@ export class ETCBlacklistComponent implements OnInit {
|
||||
}
|
||||
},
|
||||
params5: {
|
||||
title: '司机姓名',
|
||||
title: '车辆所有人',
|
||||
type: 'string',
|
||||
ui: {
|
||||
placeholder: '请输入',
|
||||
|
||||
@ -20,7 +20,7 @@
|
||||
<div nz-col [nzXl]="_$expand ? 24 : 6" [nzLg]="24" [nzSm]="24" [nzXs]="24" class="text-right">
|
||||
<button nz-button nzType="primary" [nzLoading]="service.http.loading" (click)="st?.load(1)">查询</button>
|
||||
<button nz-button (click)="resetSF()">重置</button>
|
||||
<!-- <button nz-button> 导出</button> -->
|
||||
<button nz-button (click)="exprot()"> 导出</button>
|
||||
<button nz-button nzType="link" (click)="expandToggle()">
|
||||
{{ !_$expand ? '展开' : '收起' }}
|
||||
<i nz-icon [nzType]="!_$expand ? 'down' : 'up'"></i>
|
||||
|
||||
@ -302,6 +302,11 @@ export class InvoiceRequestedComponent {
|
||||
this.sf?.setValue('/expand', this._$expand);
|
||||
}
|
||||
|
||||
// 导出
|
||||
exprot() {
|
||||
this.service.exportStart({ ...this.sf.value, pageSize: -1 }, this.service.$api_export_invoice_requested_page);
|
||||
}
|
||||
|
||||
private initSF(): SFSchema {
|
||||
return {
|
||||
properties: {
|
||||
|
||||
@ -17,6 +17,8 @@ export class TicketService extends ShipperBaseService {
|
||||
|
||||
// 运营端查询发票申请记录
|
||||
$api_get_invoice_requested_page = '/api/fcc/ficoVatappH/queryOperateVatappHList';
|
||||
// 导出发票申请记录
|
||||
$api_export_invoice_requested_page = '/api/fcc/ficoVatappH/reportOperateVatappHList';
|
||||
// 获取开票申请订单明细头部信息
|
||||
$api_get_invoice_requested_header_detail = '/api/fcc/ficoVatappBill/getDetailHeadByVatappHId';
|
||||
// 货主/运营端获取开票申请订单明细
|
||||
@ -74,7 +76,7 @@ export class TicketService extends ShipperBaseService {
|
||||
// 获取分票发票抬头开票申请订单明细
|
||||
$api_get_invoice_order_detail = '/api/fcc/ficoVatappBill/getDetailByVatinvHId';
|
||||
// 货主/运营端获取开票申请订单明细导出
|
||||
$api_export_invoice_order_detail = '/api/fcc/ficoVatappBill/reportDetailByVatapp';
|
||||
$api_export_invoice_order_detail = '/api/fcc/ficoVatappBill/reportDetailByVatinvHId';
|
||||
// 获取分票发票抬头开票申请费用明细
|
||||
$api_get_invoice_cost_detail = '/api/fcc/ficoVatappFee/getDetailByVatinvHId';
|
||||
// 获取分票发票明细
|
||||
|
||||
Reference in New Issue
Block a user