merge partner
This commit is contained in:
@ -30,9 +30,9 @@ export class CancellationInvoiceComponent implements OnInit {
|
||||
totalCallNo = 0;
|
||||
|
||||
openInfo: any = { invoicedate: null, invoiceno: null };
|
||||
constructor(public service: TicketService, private nzModalService: NzModalService, private router: Router) {}
|
||||
constructor(public service: TicketService, private nzModalService: NzModalService, private router: Router) { }
|
||||
|
||||
ngOnInit(): void {}
|
||||
ngOnInit(): void { }
|
||||
|
||||
beforeReq = (requestOptions: STRequestOptions) => {
|
||||
if (this.sf) {
|
||||
@ -154,7 +154,7 @@ export class CancellationInvoiceComponent implements OnInit {
|
||||
this.nzModalService.warning({
|
||||
nzTitle: '确定将所选待确认开票申请撤回?',
|
||||
nzContent: '提交税控后发票信息不可修改,待税控开票完成后返回开票结果',
|
||||
nzOnOk: () => {}
|
||||
nzOnOk: () => { }
|
||||
});
|
||||
}
|
||||
|
||||
@ -170,7 +170,7 @@ export class CancellationInvoiceComponent implements OnInit {
|
||||
this.nzModalService.warning({
|
||||
nzTitle: '确定将所选待确认开票申请撤回?',
|
||||
nzContent: '提交税控后发票信息不可修改,待税控开票完成后返回开票结果',
|
||||
nzOnOk: () => {}
|
||||
nzOnOk: () => { }
|
||||
});
|
||||
}
|
||||
|
||||
@ -277,7 +277,7 @@ export class CancellationInvoiceComponent implements OnInit {
|
||||
type: 'string',
|
||||
ui: {
|
||||
widget: 'dict-select',
|
||||
containsAllLable: true,
|
||||
containsAllLabel: true,
|
||||
params: { dictKey: 'vatinv:status' },
|
||||
containAllLable: true,
|
||||
visibleIf: {
|
||||
|
||||
@ -107,12 +107,11 @@ export class TicketService extends ShipperBaseService {
|
||||
|
||||
// 查询快递轨迹
|
||||
$api_get_express_routes = '/api/fcc/ficoExpressH/searchRoutes';
|
||||
|
||||
// 下载对账单文件
|
||||
$api_downloadPdf = '/api/fcc/ficoVatappBill/downloadPdf';
|
||||
|
||||
constructor(public injector: Injector, public eaCacheSrv: EACacheService) {
|
||||
super(injector, eaCacheSrv);
|
||||
|
||||
constructor(public injector: Injector) {
|
||||
super(injector);
|
||||
}
|
||||
|
||||
reviewPDF(url: string) {
|
||||
|
||||
Reference in New Issue
Block a user