diff --git a/src/app/routes/order-management/components/receipts-audit/receipts-audit.component.html b/src/app/routes/order-management/components/receipts-audit/receipts-audit.component.html
index cb49f728..cabacf83 100644
--- a/src/app/routes/order-management/components/receipts-audit/receipts-audit.component.html
+++ b/src/app/routes/order-management/components/receipts-audit/receipts-audit.component.html
@@ -1,4 +1,4 @@
-
@@ -64,7 +64,7 @@
[page]="{ show: true, showSize: true, pageSizes: [10, 20, 30, 50, 100, 200, 300, 500, 1000] }"
[loading]="false"
>
-
+
+
+
+ {{ item.billCode }}
+ {{ item.billCode }}
+ {{ item.billCode }}
+
+ {{ item?.representationsStatusLabel }}
+
+
+ {{item?.billTypeLabel}}{{item?.billTypeLabel === item?.serviceTypeLabel ? '' : item?.serviceTypeLabel}}
+
创建时间:{{ item?.createTime }}
diff --git a/src/app/routes/tax-management/components/order-reporting/order-reporting.component.ts b/src/app/routes/tax-management/components/order-reporting/order-reporting.component.ts
index 0b7f33a6..4477e8e8 100644
--- a/src/app/routes/tax-management/components/order-reporting/order-reporting.component.ts
+++ b/src/app/routes/tax-management/components/order-reporting/order-reporting.component.ts
@@ -109,7 +109,7 @@ export class TaxManagementOrderReportingComponent implements OnInit {
placeholder: '请输入',
},
},
- shipperAppUserId: {
+ shipperId: {
type: 'string',
title: '货主',
ui: {
@@ -163,27 +163,33 @@ export class TaxManagementOrderReportingComponent implements OnInit {
},
}
},
- putStatus: {
- title: '上传状态',
- type: 'string',
- ui: {
- placeholder: '请选择',
- widget: 'dict-select',
- params: { dictKey: 'service:type' },
- containsAllLabel: true,
- visibleIf: {
- _$expand: (value: boolean) => value,
- },
- }
- },
+ // putStatus: {
+ // title: '上传状态',
+ // type: 'string',
+ // enum: [
+ // {label: '待上传',value: 0},
+ // {label: '已上传',value: 1},
+ // {label: '上传异常',value: 2},
+ // ],
+ // ui: {
+ // widget:'select',
+ // placeholder: '请选择',
+ // visibleIf: {
+ // _$expand: (value: boolean) => value,
+ // },
+ // }
+ // },
checkStatus: {
title: '本地校验',
type: 'string',
+ enum: [
+ {label: '校验中',value: 0},
+ {label: '通过',value: 1},
+ {label: '不通过',value: 2},
+ ],
ui: {
+ widget:'select',
placeholder: '请选择',
- widget: 'dict-select',
- params: { dictKey: 'service:type' },
- containsAllLabel: true,
visibleIf: {
_$expand: (value: boolean) => value,
},
@@ -255,6 +261,18 @@ export class TaxManagementOrderReportingComponent implements OnInit {
className: 'text-center',
width: '180px',
},
+ {
+ title: '档案编号',
+ index: 'archivesNo',
+ className: 'text-center',
+ width: '180px',
+ },
+ {
+ title: '品牌型号',
+ index: 'carBrand',
+ 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' },