This commit is contained in:
weiyu
2022-04-27 14:45:30 +08:00
parent bfa1eba6f5
commit ad5be2d844

View File

@ -209,12 +209,12 @@ export class TaxManagementInvoiceReportingComponent implements OnInit {
this.columns = [ this.columns = [
{ title: '', type: 'checkbox', className: 'text-center', width: '60px', }, { title: '', type: 'checkbox', className: 'text-center', width: '60px', },
{ title: '上传状态', render: 'uploadSts', className: 'text-center', width: '120px', }, { title: '上传状态', render: 'uploadSts', className: 'text-center', width: '120px', },
{ title: '发票类型', render: 'invoiceType', className: 'text-center', width: '120px', }, { title: '发票类型', render: 'invoiceType', className: 'text-center', width: '180px', },
{ {
title: '发票号码', title: '发票号码',
index: 'invoiceno', index: 'invoiceno',
className: 'text-center', className: 'text-center',
width: '150px', width: '120px',
type: 'link', type: 'link',
click: item => { click: item => {
window.open(`/#/ticket/invoice-list/detail/${item.vatinvHId}?type=${item.invoiceType}`, '_blank', 'noopener') window.open(`/#/ticket/invoice-list/detail/${item.vatinvHId}?type=${item.invoiceType}`, '_blank', 'noopener')
@ -235,17 +235,17 @@ export class TaxManagementInvoiceReportingComponent implements OnInit {
}, },
{ title: '购买方统一社会信用代码', index: 'artotaxno', className: 'text-center', width: '200px' }, { title: '购买方统一社会信用代码', index: 'artotaxno', className: 'text-center', width: '200px' },
{ {
title: '订单号', index: 'billHCode', className: 'text-center', width: '120px', type: 'link', title: '订单号', index: 'billHCode', className: 'text-center', width: '180px', type: 'link',
click: item => { click: item => {
window.open(`/#/order-management/vehicle/vehicle-detail/${item.ltdId}`, '_blank', 'noopener') window.open(`/#/order-management/vehicle/vehicle-detail/${item.ltdId}`, '_blank', 'noopener')
} }
}, },
{ title: '货物名称', index: 'goodsinfo', className: 'text-center', width: '180px' }, { title: '货物名称', index: 'goodsinfo', className: 'text-center', width: '120px' },
{ title: '价税合计', index: 'vatmoney', className: 'text-center', width: '180px' }, { title: '价税合计', index: 'vatmoney', className: 'text-center', width: '120px' },
{ title: '开票日期', index: 'invoicedate', className: 'text-center', width: '180px' }, { title: '开票日期', index: 'invoicedate', className: 'text-center', width: '180px' },
{ title: '发票所属月份', index: 'invoicemonth', className: 'text-center', width: '250px' }, { title: '发票所属月份', index: 'invoicemonth', className: 'text-center', width: '140px' },
{ title: '发票状态', index: 'sts', render: 'sts', className: 'text-center', width: '200px' }, { title: '发票状态', index: 'sts', render: 'sts', className: 'text-center', width: '120px' },
{ title: '上传日期', index: 'uoloadDate', className: 'text-center', width: '200px' }, { title: '上传日期', index: 'uoloadDate', className: 'text-center', width: '180px' },
]; ];
} }