This commit is contained in:
Taric Xin
2022-02-28 19:12:43 +08:00
parent 6e15440832
commit a0827b825a
7 changed files with 37 additions and 32 deletions

View File

@ -4,42 +4,42 @@
{{info?.artoName}}
</se>
<se label="纳税号">
{{info?.artotaxno}}
{{info?.taxNumber}}
</se>
<se label="地址">
{{info?.artoadd}}
{{info?.registerAddr}}
</se>
<se label="电话">
{{info?.artotel}}
{{info?.registerPhone}}
</se>
<se label="开户行">
{{info?.artobank}}
{{info?.bankName}}
</se>
<se label="银行账户">
{{info?.artoacc}}
{{info?.bankAccount}}
</se>
<se label="票面备注">
{{info?.remarks}}
{{info?.vatremarks}}
</se>
</div>
<div nz-col nzSpan="12" se-container [labelWidth]="100" col="1">
<se label="销售方">
{{info?.shipperId}}
{{info?.ltdidName}}
</se>
<se label="申请编号">
{{info?.vatinvcode}}
{{info?.vatappcode}}
</se>
<se label="订单数">
{{info?.ordlines}}笔
{{info?.vatinvBillNum}}笔
</se>
<se label="价税合计">
{{info?.vatmoney}}元
{{info?.vatinvHNumAmount | currency}}元
</se>
<se label="服务名称">
{{info?.vatname}}
{{info?.vatnameLabel}}
</se>
<se label="销货清单">
{{info?.isdetail}}
{{info?.isdetail?'是':'否'}}
</se>
<se label="其他要求">
{{info?.otherremarks}}

View File

@ -13,7 +13,7 @@ import { TicketService } from '../../../services/ticket.service';
export class PushInvoiceComponent implements OnInit {
@ViewChild('st', { static: false })
st!: STComponent;
columns: STColumn[] = this.initST();
columns!: STColumn[];
info: any = {};
id!: number;
@ -22,6 +22,9 @@ export class PushInvoiceComponent implements OnInit {
ngOnInit(): void {
this.loadHeader(this.id);
setTimeout(() => {
this.columns = this.initST();
}, 100);
}
beforeReq = (requestOptions: STRequestOptions) => {