From 12d57e131f965d6f4f168d89c925bb7ec14a5bde Mon Sep 17 00:00:00 2001 From: weiyu Date: Wed, 20 Apr 2022 10:02:43 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8F=91=E7=A5=A8=E4=B8=8A=E4=BC=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../invoice-reporting.component.html | 96 ++++ .../invoice-reporting.component.less | 22 + .../invoice-reporting.component.ts | 459 ++++++++++++++++++ .../upload-setting.component.html | 8 + .../upload-setting.component.ts | 110 +++++ .../verify-result.component.html | 30 ++ .../verify-result/verify-result.component.ts | 139 ++++++ .../tax-management-routing.module.ts | 2 + .../tax-management/taxmanagement.module.ts | 10 +- src/assets/mocks/menu-data.json | 4 + 10 files changed, 878 insertions(+), 2 deletions(-) create mode 100644 src/app/routes/tax-management/components/invoice-reporting/invoice-reporting.component.html create mode 100644 src/app/routes/tax-management/components/invoice-reporting/invoice-reporting.component.less create mode 100644 src/app/routes/tax-management/components/invoice-reporting/invoice-reporting.component.ts create mode 100644 src/app/routes/tax-management/components/invoice-reporting/upload-setting/upload-setting.component.html create mode 100644 src/app/routes/tax-management/components/invoice-reporting/upload-setting/upload-setting.component.ts create mode 100644 src/app/routes/tax-management/components/invoice-reporting/verify-result/verify-result.component.html create mode 100644 src/app/routes/tax-management/components/invoice-reporting/verify-result/verify-result.component.ts diff --git a/src/app/routes/tax-management/components/invoice-reporting/invoice-reporting.component.html b/src/app/routes/tax-management/components/invoice-reporting/invoice-reporting.component.html new file mode 100644 index 00000000..e1635dc7 --- /dev/null +++ b/src/app/routes/tax-management/components/invoice-reporting/invoice-reporting.component.html @@ -0,0 +1,96 @@ + + + + +
+
+ +
+
+ + + + +
+
+
+ + + + + + + + + + + 待上传 + 已上传 + 上传中 + 上传异常 + + + + + 校验中 + 通过 + + 不通过 + + + +
{{ item?.driverName }}{{ item?.driverPhone ? "/" + item?.driverPhone : '' }}
+
+ + +
+
+ +
+
+
+ +
+
+ +
+
+
+ +
+
+ +
+
+
+ +
+
+ +
+
+
+ +
{{item?.orderAmount | currency }}
+
+
+
+ +
+
+ 已选择 + {{ selectedRows.length }} 条数据 +
+ + +
+
diff --git a/src/app/routes/tax-management/components/invoice-reporting/invoice-reporting.component.less b/src/app/routes/tax-management/components/invoice-reporting/invoice-reporting.component.less new file mode 100644 index 00000000..94ec07e0 --- /dev/null +++ b/src/app/routes/tax-management/components/invoice-reporting/invoice-reporting.component.less @@ -0,0 +1,22 @@ +:host { + .text-black { + color: #000; + } + .icon { + display: inline-block; + width: 1em; + height: 1em; + stroke-width: 0; + stroke: currentColor; + /* stylelint-disable-next-line order/properties-order */ + fill: currentColor; + } + ::ng-deep { + .imgBox { + display: flex; + img { + width: 60px !important; + } + } + } +} diff --git a/src/app/routes/tax-management/components/invoice-reporting/invoice-reporting.component.ts b/src/app/routes/tax-management/components/invoice-reporting/invoice-reporting.component.ts new file mode 100644 index 00000000..4eb8aaaf --- /dev/null +++ b/src/app/routes/tax-management/components/invoice-reporting/invoice-reporting.component.ts @@ -0,0 +1,459 @@ +import { Component, OnInit, ViewChild } from '@angular/core'; +import { ActivatedRoute, Router } from '@angular/router'; +import { STColumn, STComponent, STData } from '@delon/abc/st'; +import { SFComponent, SFDateWidgetSchema, SFSchema, SFSchemaEnum, SFSelectWidgetSchema, SFUISchema } from '@delon/form'; +import { ShipperBaseService } from '@shared'; +import { NzModalService } from 'ng-zorro-antd/modal'; +import { of } from 'rxjs'; +import { map } from 'rxjs/operators'; +import { TaxManagementService } from '../../services/tax-management.service'; +import { TaxManagementInvoiceUploadSettingComponent } from './upload-setting/upload-setting.component'; +import { TaxManagementInvoiceVerifyResultComponent } from './verify-result/verify-result.component'; +// import { DatatableReportingUploadSettingComponent } from '../upload-setting/upload-setting.component'; +// import { DatatableReportingVerifyResultComponent } from '../verify-result/verify-result.component'; + +@Component({ + selector: 'app-tax-management-invoice-reporting', + templateUrl: './invoice-reporting.component.html', + styleUrls: ['./invoice-reporting.component.less'] +}) +export class TaxManagementInvoiceReportingComponent implements OnInit { + _$expand = false; + ui!: SFUISchema; + schema!: SFSchema; + columns!: STColumn[]; + @ViewChild('st', { static: false }) st!: STComponent; + @ViewChild('sf', { static: false }) sf!: SFComponent; + tabType!: string; + isLoading: boolean = false; + tabs: any[] = [ + { name: '待上传', value: '0' }, + { name: '上传中', value: '3' }, + { name: '已上传', value: '1' }, + { name: '异常', value: '2' }, + { name: '全部', value: '' } + ]; + selectedIndex = '0'; //选择的项目 + serviceTel = ''; + constructor( + public service: TaxManagementService, + private router: Router, + private ar: ActivatedRoute, + public shipperservice: ShipperBaseService, + private modal: NzModalService, + public shipperSrv: ShipperBaseService + ) { + } + + /** + * 查询字段个数 + */ + get queryFieldCount(): number { + return Object.keys(this.schema?.properties || {}).length; + } + + /** + * 查询参数 + */ + get reqParams() { + const params = Object.assign({}, this.sf?.value || {}, { + putStatus: this.selectedIndex, + }); + delete params._$expand; + return { ...params }; + } + + /** + * 选中行 + */ + get selectedRows() { + return this.st?.list.filter((item: any) => item.checked) || []; + } + + /** + * 伸缩查询条件 + */ + expandToggle() { + this._$expand = !this._$expand; + this.sf?.setValue('/_$expand', this._$expand); + } + + /** + * 重置表单 + */ + resetSF() { + this.sf.reset(); + this._$expand = false; + this.isLoading = true + } + /** + * 程序初始化入口 + */ + ngOnInit() { + this.initSF(); + this.initST(); + } + + /** + * 初始化查询表单 + */ + initSF() { + this.schema = { + properties: { + _$expand: { type: 'boolean', ui: { hidden: true } }, + putStatus: { + title: '上传状态', + type: 'string', + default: 0, + enum: [ + { label: '全部', value: 0 }, + { label: '待上传', value: 1 }, + { label: '上传中', value: 2 }, + { label: '已上传', value: 3 }, + { label: '异常', value: 4 } + ], + + ui: { + placeholder: '请选择', + widget: 'select', + allowClear: true + } + }, + networkTransporter: { + type: 'string', + title: '网络货运人', + ui: { + widget: 'select', + placeholder: '请选择', + allowClear: true, + asyncData: () => this.shipperservice.getNetworkFreightForwarder() + } + }, + hrto: { + type: 'string', + title: '购买方', + ui: { + widget: 'select', + placeholder: '请选择', + allowClear: true, + asyncData: () => this.service.getCRMCustomerId() + } + }, + billCode: { + title: '订单号', type: 'string', ui: { + placeholder: '请输入', visibleIf: { + _$expand: (value: boolean) => value + } + } + }, + recentlyPutTime: { + title: '开票日期', + type: 'string', + ui: { + widget: 'sl-from-to', + type: 'date', + format: 'yyyy-MM-dd', + visibleIf: { + _$expand: (value: boolean) => value, + }, + } as SFDateWidgetSchema, + }, + orderPayTime: { + title: '上传日期', + type: 'string', + ui: { + widget: 'sl-from-to', + type: 'date', + format: 'yyyy-MM-dd', + visibleIf: { + _$expand: (value: boolean) => value, + }, + } as SFDateWidgetSchema, + }, + wayBillCode: { + type: 'string', + title: '发票号码', + ui: { + placeholder: '请输入', + visibleIf: { + _$expand: (value: boolean) => value + } + }, + }, + wayBillCode1: { + type: 'string', + title: '发票代码', + ui: { + placeholder: '请输入', + visibleIf: { + _$expand: (value: boolean) => value + } + }, + }, + sts: { + title: '发票状态', + type: 'string', + ui: { + widget: 'dict-select', + containsAllLabel: true, + params: { dictKey: 'vatinv:status' }, + containAllLable: true, + visibleIf: { + _$expand: (value: boolean) => value + } + } as SFSelectWidgetSchema + }, + }, + }; + this.ui = { + '*': { spanLabelFixed: 120, grid: { span: 8, gutter: 4 }, enter: () => this.search() }, + $time: { grid: { span: 24 } }, + }; + } + + /** + * 初始化数据列表 + */ + initST() { + this.columns = [ + { title: '', type: 'checkbox', className: 'text-center', width: '60px', }, + { title: '上传状态', render: 'putStatus', className: 'text-center', width: '120px', }, + { title: '发票类型', render: 'checkStatus', className: 'text-center', width: '120px', }, + { + title: '发票号码', + index: 'billCode', + className: 'text-center', + width: '150px', + }, + { title: '发票代码', index: 'wayBillCode', className: 'text-center', width: '150px', }, + { + title: '网络货运人', + index: 'networkTransporterName', + className: 'text-center', + width: '180px', + }, + { title: '购买方企业名称', index: 'loadingAddress', render: 'loadingPlace', className: 'text-center', width: '200px' }, + { title: '购买方统一社会信用代码', index: 'loadingDetailedAddress', render: 'loadingPlace', className: 'text-center', width: '200px' }, + { title: '订单号', index: 'unloadAddress', render: 'dischargePlace', className: 'text-center', width: '120px' }, + { title: '货物名称', index: 'unloadDetailedAddress', className: 'text-center', width: '180px' }, + { title: '价税合计', index: 'shipperName', className: 'text-center', width: '180px' }, + { title: '开票日期', index: 'shipperProvinceCode', className: 'text-center', width: '180px' }, + { title: '发票所属月份', index: 'recordTime', className: 'text-center', width: '250px' }, + { title: '发票状态', index: 'wayBillCreateTime', className: 'text-center', width: '200px' }, + { title: '上传日期', index: 'loadTime', className: 'text-center', width: '200px' }, + ]; + } + + + + /** + *撤回 + * @param record 记录实例 + */ + recall() { + if (this.selectedRows.length === 0) { + this.openWainingModal('请选择需要撤回的数据'); + return; + } + let params: any[] = []; + this.selectedRows.forEach(item => { + params.push(item.id); + }); + this.modal.confirm({ + nzTitle: '撤回提示', + nzContent: ' 撤回后可以重新上传,重新上传会覆盖已上传数据,确定要撤回?', + nzOkText: '确定', + nzCancelText: '取消', + nzOnOk: () => { + this.service.request(this.service.$api_get_recessionTaxOrder, params).subscribe((res: any) => { + if (res) { + this.service.msgSrv.success('撤销成功'); + this.search(); + } + }) + } + }); + + } + /** + *撤销 + * @param record 记录实例 + */ + resetData() { + if (this.selectedRows.length === 0) { + this.openWainingModal('请选择需要更新的数据!'); + return; + } + let params: any[] = []; + this.selectedRows.forEach(item => { + params.push(item.billId); + }); + this.service.request(this.service.$api_get_renewalOrderById, params).subscribe((res: any) => { + if (res) { + this.service.msgSrv.success('更新成功'); + this.st.load(1); + } + }) + } + /** + *撤销 + * @param record 记录实例 + */ + unnormal(value: any) { + // if (this.selectedRows.length === 0) { + // this.openWainingModal('请选择需要更新的数据!'); + // return; + // } + console.log(this.selectedRows); + let params: any[] = []; + this.selectedRows.forEach(item => { + params.push(item.id); + }); + this.modal.confirm({ + nzTitle: '税务审核结果', + nzContent: '订单结算时间所在月份与申报月份不一致', + nzOkText: '确定', + nzCancelText: '', + nzOnOk: () => { + this.service.request(this.service.$api_get_recessionTaxOrder, params).subscribe((res: any) => { + if (res) { + this.service.msgSrv.success('撤销成功'); + this.search(); + } + }) + } + }); + + } + + selectChange(item: any) { + console.log(item); + + this.selectedIndex = item?.value || ''; + setTimeout(() => { + this.st.load(); + }) + } + + /** + * 查看当行数据 + */ + view(record: STData) { + // this.router.navigate(['../view', record.uuid], { relativeTo: this.ar }); + this.router.navigate(['../detail'], { + queryParams: { + id: record.id, + }, + relativeTo: this.ar + }); + } + + // appeal(item: any) { + // const modalRef = this.modal.create({ + // nzTitle: '申诉', + // nzWidth: '40%', + // nzContent: CtcAppealComponent, + // nzComponentParams: { + // i: item, + // status: 'add' + // }, + // nzFooter: null + // }); + // modalRef.afterClose.subscribe(res => { + // if (res) { + // this.search({ representationsStatus: '' }); + // } + // }) + // } + + /** + * 上传 + */ + upload() { + if (this.selectedRows.length === 0) { + this.openWainingModal('请选择需要上传的数据'); + return; + } + let params: any[] = []; + this.selectedRows.forEach(item => { + params.push(item.id); + }); + this.service.request(this.service.$api_get_uploadingTaxOrder, params).subscribe((res: any) => { + if (res) { + this.service.msgSrv.success('上传成功'); + this.st.load(); + } + }) + } + + + /** + * + * @param params 上传设置 + */ + uploadSetting() { + const modalRef = this.modal.create({ + nzTitle: '税务上传设置', + nzWidth: 600, + nzContent: TaxManagementInvoiceUploadSettingComponent, + nzComponentParams: {}, + nzFooter: null + }); + modalRef.afterClose.subscribe(res => { + if (res) { + this.st.load(); + } + }) + } + + /** + * 查看校验结果 + */ + viewResult(item: any) { + const modalRef = this.modal.create({ + nzTitle: '本地校验结果', + nzWidth: 1200, + nzContent: TaxManagementInvoiceVerifyResultComponent, + nzComponentParams: { + record: item + }, + nzFooter: null + }); + modalRef.afterClose.subscribe(res => { + if (res) { + this.st.load(); + } + }) + } + + /** + * 查看监管审核结果 + */ + viewAuditResult(record: any) { + if (record?.billStatus !== '2') { + return; + } + this.openWainingModal('监管审核结果', record?.result) + } + + + search() { + this.st.load(1); + } + + /** + * 异步导出 + */ + export() { + this.service.exportStart(this.sf?.value, this.service.$api_async_export_order_reporting_list); + } + + openWainingModal(content: string, title = '提示') { + this.modal.warning({ + nzMask: false, + nzTitle: title, + nzContent: content, + }) + } + +} diff --git a/src/app/routes/tax-management/components/invoice-reporting/upload-setting/upload-setting.component.html b/src/app/routes/tax-management/components/invoice-reporting/upload-setting/upload-setting.component.html new file mode 100644 index 00000000..a4f5ae6e --- /dev/null +++ b/src/app/routes/tax-management/components/invoice-reporting/upload-setting/upload-setting.component.html @@ -0,0 +1,8 @@ + + + + diff --git a/src/app/routes/tax-management/components/invoice-reporting/upload-setting/upload-setting.component.ts b/src/app/routes/tax-management/components/invoice-reporting/upload-setting/upload-setting.component.ts new file mode 100644 index 00000000..c64f9110 --- /dev/null +++ b/src/app/routes/tax-management/components/invoice-reporting/upload-setting/upload-setting.component.ts @@ -0,0 +1,110 @@ +import { Component, OnInit } from '@angular/core'; +import { SFSchema, SFUISchema } from '@delon/form'; +import { NzModalRef } from 'ng-zorro-antd/modal'; +import { TaxManagementService } from '../../../services/tax-management.service'; + + +@Component({ + selector: 'app-datatable-invoice-upload-setting', + templateUrl: './upload-setting.component.html', +}) +export class TaxManagementInvoiceUploadSettingComponent implements OnInit { + record: any = {}; + i: any = {}; + schema!: SFSchema; + ui!: SFUISchema; + + constructor( + private modal: NzModalRef, + public service: TaxManagementService + ) { } + + ngOnInit(): void { + this.initSF(); + // this.loadData(); + } + + /** + * 初始化查询表单 + */ + initSF() { + this.schema = { + properties: { + no: { + type: 'string', + title: '订单数据', + enum: [ + { + label: '手动上传', + value: '1' + }, + { + label: '自动上传', + value: '2' + } + ], + description: '开启自动上传后,订单将在支付完成且风险单校验通过后自动上传', + ui: { + widget: 'radio', + + } + }, + owner: { + type: 'string', + title: '资金数据', + enum: [ + { + label: '手动上传', + value: '1' + }, + { + label: '自动上传', + value: '2' + } + ], + description: '开启自动上传后,订单将在支付完成且风险单校验通过后自动上传', + ui: { + widget: 'radio', + + } + }, + }, + required: ['owner', 'no'], + } + this.ui = { + '*': { + spanLabelFixed: 100, + grid: { span: 24 }, + }, + }; + } + + /** + * 获取设置数据 + */ + loadData() { + this.service.request(this.service.$api_get_upload_setting, {}).subscribe(res => { + if (res) { + this.i = res; + + } + }) + } + + /** + * 修改 + * @param value + */ + save(value: any): void { + this.service.request(this.service.$api_upload_setting_save, { ...value }).subscribe(res => { + if (res) { + this.service.msgSrv.success('保存成功'); + this.modal.close(true); + } + }) + } + + close(): void { + this.modal.destroy(); + } +} diff --git a/src/app/routes/tax-management/components/invoice-reporting/verify-result/verify-result.component.html b/src/app/routes/tax-management/components/invoice-reporting/verify-result/verify-result.component.html new file mode 100644 index 00000000..f84ade19 --- /dev/null +++ b/src/app/routes/tax-management/components/invoice-reporting/verify-result/verify-result.component.html @@ -0,0 +1,30 @@ +
+
+ + + +
+
+ + +
+
{{ item.expenseName }}:{{ item.price | currency }}
+
+
+
+
+
+ diff --git a/src/app/routes/tax-management/components/invoice-reporting/verify-result/verify-result.component.ts b/src/app/routes/tax-management/components/invoice-reporting/verify-result/verify-result.component.ts new file mode 100644 index 00000000..1442ddba --- /dev/null +++ b/src/app/routes/tax-management/components/invoice-reporting/verify-result/verify-result.component.ts @@ -0,0 +1,139 @@ +import { Component, OnInit, ViewChild } from '@angular/core'; +import { Router } from '@angular/router'; +import { STColumn, STComponent, STRequestOptions } from '@delon/abc/st'; +import { SFSchema } from '@delon/form'; +import { ModalHelper, _HttpClient } from '@delon/theme'; +import { NzModalRef } from 'ng-zorro-antd/modal'; +import { TaxManagementService } from '../../../services/tax-management.service'; + +@Component({ + selector: 'app-tax-management-Invoice-reporting-verify-result', + templateUrl: './verify-result.component.html', +}) +export class TaxManagementInvoiceVerifyResultComponent implements OnInit { + searchSchema: SFSchema = { + properties: { + no: { + type: 'string', + title: '编号' + } + } + }; + @ViewChild('st') private readonly st!: STComponent; + columns: STColumn[] = []; + record: any = {} + subjectType: string = '0'; + tabs: any[] = [ + { name: '平台信息', value: '0' }, + { name: '货主信息', value: '1' }, + { name: '司机信息', value: '2' }, + { name: '订单信息', value: '3' }, + ]; + + // get reqParams() { + // console.log(this.subjectType); + // const params ={ + // subjectId: this.record?.shipperId, + // subjectType: this.subjectType, + // } + // return params; + // } + beforeReq = (requestOptions: STRequestOptions) => {let a: string = ''; + switch (this.subjectType) { + case '0': + a = this.record?.networkTransporterId; + break + case '1': + a = this.record?.shipperId; + break + case '2': + a = this.record?.driverId; + break + case '3': + a = this.record?.wayBillId; + break + } + Object.assign(requestOptions.body, { + subjectId: a , + subjectType: this.subjectType, + }); + return requestOptions; + }; + afterRes = (data: any[], rawData?: any) => { + console.log(data) + return data.map(item => ({ + ...item, + })); + }; + constructor(public service: TaxManagementService, private modalRef: NzModalRef, public router: Router) { + } + + ngOnInit(): void { + console.log(this.record); + + this.initST(); + } + + /** + * 初始化数据列表 + */ + initST() { + this.columns = [ + { title: '序号', type: 'no', className: 'text-center', width: '60px', }, + { title: '校验字段', index: 'checkFieldName', className: 'text-center', width: '120px', }, + { + title: '是否必填', + index: 'requiredStatus', + className: 'text-center', + width: '100px', + type: 'enum', + enum: { + 0: '否', + 1: '是' + } + }, + { title: '上传值', index: 'fieldValue', className: 'text-center', width: '150px', }, + { + title: '本地校验', index: 'checkStatus', className: 'text-center', width: '100px', + type: 'enum', + enum: { + 0: '校验中', + 1: '通过', + 2: '不通过' + } + }, + { title: '错误内容', index: 'remark', className: 'text-center', width: '150px', }, + ] + } + + + add(): void { + // this.modal + // .createStatic(FormEditComponent, { i: { id: 0 } }) + // .subscribe(() => this.st.reload()); + } + + selectTab(e: any) { + setTimeout(() => { + console.log(e?.value); + + this.subjectType = e?.value; + console.log(this.subjectType); + this.st.load(1); + }) + } + + update() { + if (this.record?.billType === '1') { + window.open(location.origin + `/#/order-management/vehicle-detailChange/${this.record?.id}`) + + } else if (this.record.billType === '2') { + window.open(location.origin + `/#/order-management/bulk-detailChange/${this.record?.id}`); + } + } + close(): void { + this.modalRef.destroy(); + } + + +} diff --git a/src/app/routes/tax-management/tax-management-routing.module.ts b/src/app/routes/tax-management/tax-management-routing.module.ts index 84b09d08..ce7b3f5f 100644 --- a/src/app/routes/tax-management/tax-management-routing.module.ts +++ b/src/app/routes/tax-management/tax-management-routing.module.ts @@ -13,6 +13,7 @@ import { RouterModule, Routes } from '@angular/router'; import { TaxManagementIndividualCollectComponent } from './components/individual-collect/individual-collect.component'; import { TaxManagementIndividualDeclareComponent } from './components/individual-declare/individual-declare.component'; import { TaxManagementIndividualIncomeComponent } from './components/individual-income/individual-income.component'; +import { TaxManagementInvoiceReportingComponent } from './components/invoice-reporting/invoice-reporting.component'; import { TaxManagementOrderReportingComponent } from './components/order-reporting/order-reporting.component'; @@ -21,6 +22,7 @@ const routes: Routes = [ { path: 'income', component: TaxManagementIndividualIncomeComponent }, { path: 'collect', component: TaxManagementIndividualCollectComponent }, { path: 'declare', component: TaxManagementIndividualDeclareComponent }, + { path: 'invoiceReport', component: TaxManagementInvoiceReportingComponent }, ]; diff --git a/src/app/routes/tax-management/taxmanagement.module.ts b/src/app/routes/tax-management/taxmanagement.module.ts index 92dbda10..0c6eb02b 100644 --- a/src/app/routes/tax-management/taxmanagement.module.ts +++ b/src/app/routes/tax-management/taxmanagement.module.ts @@ -13,6 +13,9 @@ import { SharedModule, SHARED_G2_MODULES } from '@shared'; import { TaxManagementIndividualCollectComponent } from './components/individual-collect/individual-collect.component'; import { TaxManagementIndividualDeclareComponent } from './components/individual-declare/individual-declare.component'; import { TaxManagementIndividualIncomeComponent } from './components/individual-income/individual-income.component'; +import { TaxManagementInvoiceReportingComponent } from './components/invoice-reporting/invoice-reporting.component'; +import { TaxManagementInvoiceUploadSettingComponent } from './components/invoice-reporting/upload-setting/upload-setting.component'; +import { TaxManagementInvoiceVerifyResultComponent } from './components/invoice-reporting/verify-result/verify-result.component'; import { TaxManagementOrderReportingComponent } from './components/order-reporting/order-reporting.component'; import { TaxManagementUploadSettingComponent } from './components/order-reporting/upload-setting/upload-setting.component'; import { TaxManagementOrderVerifyResultComponent } from './components/order-reporting/verify-result/verify-result.component'; @@ -25,9 +28,12 @@ const COMPONENTS: Type[] = [ TaxManagementUploadSettingComponent, TaxManagementIndividualIncomeComponent, TaxManagementIndividualCollectComponent, - TaxManagementIndividualDeclareComponent + TaxManagementIndividualDeclareComponent, + TaxManagementInvoiceReportingComponent, + TaxManagementInvoiceUploadSettingComponent, + TaxManagementInvoiceVerifyResultComponent ] - + @NgModule({ imports: [ diff --git a/src/assets/mocks/menu-data.json b/src/assets/mocks/menu-data.json index 1aee4bad..c3b4f30f 100644 --- a/src/assets/mocks/menu-data.json +++ b/src/assets/mocks/menu-data.json @@ -693,6 +693,10 @@ { "text": "税务申报", "link": "/tax/declare" + }, + { + "text": "发票上传", + "link": "/tax/invoiceReport" } ] }