Merge branch 'develop' of https://gitlab.eascs.com/tms-ui/tms-obc-web into develop
This commit is contained in:
@ -63,7 +63,6 @@ export class InvoiceDetailComponent implements OnInit {
|
||||
|
||||
loadInvoiceHeader(id: string) {
|
||||
this.service.request(this.service.$api_get_invoice_header_detail, { id }).subscribe(res => {
|
||||
console.log(res);
|
||||
if (res) {
|
||||
this.headerInfo = res;
|
||||
}
|
||||
@ -71,7 +70,6 @@ export class InvoiceDetailComponent implements OnInit {
|
||||
}
|
||||
loadRoutes(expressno: string) {
|
||||
this.service.request(this.service.$api_get_express_routes, expressno).subscribe(res => {
|
||||
console.log(res);
|
||||
if (res) {
|
||||
res.routes = res.routes.map((route: any) => ({ time: route.acceptTime, value: route.remark + route.acceptAddress, color: 'gray' }));
|
||||
this.routesInfo = res;
|
||||
@ -83,8 +81,6 @@ export class InvoiceDetailComponent implements OnInit {
|
||||
}
|
||||
|
||||
saveInvoices() {
|
||||
console.log(this.invoiceST._data);
|
||||
|
||||
this.isEdit = false;
|
||||
}
|
||||
|
||||
@ -215,7 +211,7 @@ export class InvoiceDetailComponent implements OnInit {
|
||||
{ title: '费用号', index: 'feeHId' },
|
||||
{ title: '订单号', index: 'billHId' },
|
||||
{ title: '订单日期', index: 'createTime', type: 'date' },
|
||||
{ title: '计费日期', index: 'callNo', type: 'date' },
|
||||
{ title: '计费日期', index: 'feeDate', type: 'date' },
|
||||
{ title: '税率', index: 'vatrate' },
|
||||
{
|
||||
title: '申请金额',
|
||||
|
||||
Reference in New Issue
Block a user