edit
This commit is contained in:
@ -57,13 +57,28 @@
|
||||
<ng-template #requestedModal>
|
||||
<div nz-row nzGutter="8">
|
||||
<div nz-col nzSpan="24" se-container [labelWidth]="100">
|
||||
<!-- <se [col]="1" label="开票信息">
|
||||
<p style="margin: 0;">公司名:</p>
|
||||
<p style="margin: 0;">税号:</p>
|
||||
<p style="margin: 0;">注册地址:</p>
|
||||
<p style="margin: 0;">注册电话:</p>
|
||||
<p style="margin: 0;">开户行:</p>
|
||||
</se> -->
|
||||
<se [col]="1" label="开票信息" class="mb-sm">
|
||||
<p style="margin: 0;">公司名: {{openInfo?.artoname}}</p>
|
||||
<p style="margin: 0;">税号: {{openInfo?.artotaxno}}</p>
|
||||
<p style="margin: 0;">注册地址: {{openInfo?.artoadd}}</p>
|
||||
<p style="margin: 0;">注册电话: {{openInfo?.artotel}}</p>
|
||||
<p style="margin: 0;">开户行: {{openInfo?.artobank}}</p>
|
||||
</se>
|
||||
<se [col]="1" label="服务名称" class="mb-sm">
|
||||
{{openInfo?.vatname}}
|
||||
</se>
|
||||
<se [col]="1" label="发票备注栏" class="mb-sm">
|
||||
{{openInfo?.vatremarks}}
|
||||
</se>
|
||||
<se [col]="1" label="其它要求" class="mb-sm">
|
||||
{{openInfo?.otherremarks}}
|
||||
</se>
|
||||
<se [col]="1" label="销货清单" class="mb-sm">
|
||||
{{openInfo?.isdetail?'需要':'不需要'}}
|
||||
</se>
|
||||
<se [col]="1" label="开票金额" class="mb-sm">
|
||||
{{openInfo?.vatnotax | currency}}
|
||||
</se>
|
||||
<se [col]="1" label="开票日期" required>
|
||||
<nz-date-picker [(ngModel)]="openInfo.invoicedate" nzPlaceHolder="请选择" style=" width: 100%;">
|
||||
</nz-date-picker>
|
||||
|
||||
@ -79,6 +79,10 @@ export class CancellationInvoiceComponent implements OnInit {
|
||||
*/
|
||||
requestedAction(item: any) {
|
||||
this.openInfo = { invoicedate: null, invoiceno: null, invoiceno2: null };
|
||||
this.service.request(this.service.$api_get_apply_fico_info, { id: item.vatappHId }).subscribe(info => {
|
||||
if (info) {
|
||||
console.log(info);
|
||||
Object.assign(this.openInfo, { ...info });
|
||||
const modal = this.nzModalService.create({
|
||||
nzTitle: '发票确认',
|
||||
nzContent: this.requestedModal,
|
||||
@ -110,6 +114,8 @@ export class CancellationInvoiceComponent implements OnInit {
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* 批量推送发票
|
||||
|
||||
@ -32,5 +32,5 @@
|
||||
<div class="modal-footer text-center">
|
||||
<button nz-button type="button">移除</button>
|
||||
<button nz-button type="button" (click)="saveManage()">手工处理</button>
|
||||
<button nz-button type="submit" nzType="primary" [nzLoading]="false" (click)="saveManage()">自动开票</button>
|
||||
<!-- <button nz-button type="submit" nzType="primary" [nzLoading]="false" (click)="saveManage()">自动开票</button> -->
|
||||
</div>
|
||||
|
||||
@ -32,6 +32,8 @@ export class TicketService extends ShipperBaseService {
|
||||
$api_ficoVatinv_Detail = '/api/fcc/ficoVatinvL/getDetailByVatinvHId';
|
||||
// 运营端订单明细开票处理
|
||||
$api_apply_fico = '/api/fcc/ficoVatinvH/crmPushInvo';
|
||||
// 手工开票获取开票申请信息展示
|
||||
$api_get_apply_fico_info = '/api/fcc/ficoVatappH/get';
|
||||
// 运营端手工开票/确认/E税云开票成功后的回调
|
||||
$api_apply_fico_invoic = '/api/fcc/ficoVatinvH/operateAffirmVatinv';
|
||||
// 运营端推送开票-E税云开票
|
||||
|
||||
Reference in New Issue
Block a user