diff --git a/src/app/routes/datatable/reporting/components/order-reporting/order-reporting.component.ts b/src/app/routes/datatable/reporting/components/order-reporting/order-reporting.component.ts index 0f7a87d1..bd7bf8c1 100644 --- a/src/app/routes/datatable/reporting/components/order-reporting/order-reporting.component.ts +++ b/src/app/routes/datatable/reporting/components/order-reporting/order-reporting.component.ts @@ -281,12 +281,12 @@ export class DatatableOrderReportingComponent implements OnInit { initST() { this.columns = [ { title: '', type: 'checkbox', className: 'text-center', width: '60px', }, - { title: '订单状态', render: 'billPutStatus', className: 'text-center', width: '120px', }, - { title: '司机状态', render: 'driverPutStatus', className: 'text-center', width: '120px', }, + { title: '订单状态', index: 'billPutStatusLabel', className: 'text-center', width: '120px', }, + { title: '司机状态', index: 'driverPutStatusLabel', className: 'text-center', width: '120px', }, - { title: '车辆状态', render: 'carPutStatus', className: 'text-center', width: '120px', }, + { title: '车辆状态', index: 'carPutStatusLabel', className: 'text-center', width: '120px', }, - { title: '本地校验', render: 'checkStatus', className: 'text-center', width: '120px', }, + { title: '本地校验', index: 'checkStatusLabel', className: 'text-center', width: '120px', }, { title: '订单号', render: 'billCode', diff --git a/src/app/routes/ticket-management/components/cancellation-invoice/cancellation-invoice.component.html b/src/app/routes/ticket-management/components/cancellation-invoice/cancellation-invoice.component.html index 84bf6e93..bd28cc3d 100644 --- a/src/app/routes/ticket-management/components/cancellation-invoice/cancellation-invoice.component.html +++ b/src/app/routes/ticket-management/components/cancellation-invoice/cancellation-invoice.component.html @@ -56,37 +56,48 @@
-
- -

公司名: {{openInfo?.artoname}}

-

税号: {{openInfo?.artotaxno}}

-

注册地址: {{openInfo?.artoadd}}

-

注册电话: {{openInfo?.artotel}}

-

开户行: {{openInfo?.artobank}}

+
+ + {{openInfo?.artoname}} - + + {{openInfo?.artotaxno}} + + + {{openInfo?.artoadd}} + + + {{openInfo?.artotel}} + + + {{openInfo?.artobank}} + + + {{openInfo?.artoacc}} + + {{openInfo?.vatnameLabel}} - + {{openInfo?.vatremarks}} - + {{openInfo?.otherremarks}} - + {{openInfo?.isdetail?'需要':'不需要'}} - + {{openInfo?.vatmoney | currency}} - - + + - + - +
diff --git a/src/app/routes/ticket-management/components/cancellation-invoice/cancellation-invoice.component.ts b/src/app/routes/ticket-management/components/cancellation-invoice/cancellation-invoice.component.ts index a9d95464..f38bbe2b 100644 --- a/src/app/routes/ticket-management/components/cancellation-invoice/cancellation-invoice.component.ts +++ b/src/app/routes/ticket-management/components/cancellation-invoice/cancellation-invoice.component.ts @@ -89,7 +89,6 @@ export class CancellationInvoiceComponent implements OnInit { 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: '发票确认',