This commit is contained in:
wangshiming
2022-04-08 16:34:32 +08:00
parent cda4ce1765
commit a92677a5b9
4 changed files with 31 additions and 11 deletions

View File

@ -4,7 +4,7 @@
* @Author : Shiming * @Author : Shiming
* @Date : 2022-01-12 10:52:50 * @Date : 2022-01-12 10:52:50
* @LastEditors : Shiming * @LastEditors : Shiming
* @LastEditTime : 2022-04-07 10:11:15 * @LastEditTime : 2022-04-08 16:34:26
* @FilePath : \\tms-obc-web\\src\\app\\routes\\order-management\\components\\abnormal-warning\\abnormal-warning.component.html * @FilePath : \\tms-obc-web\\src\\app\\routes\\order-management\\components\\abnormal-warning\\abnormal-warning.component.html
* Copyright (C) 2022 huzhenhong. All rights reserved. * Copyright (C) 2022 huzhenhong. All rights reserved.
--> -->
@ -70,7 +70,7 @@
<ng-template st-row="driverName" let-item let-index="index"> <ng-template st-row="driverName" let-item let-index="index">
<div> {{ item?.driverName }}{{ item?.driverPhone ? "/" + item?.driverPhone : '' }}{{ item?.carNo ? "/" + item?.carNo : '' }} </div> <div> {{ item?.driverName }}{{ item?.driverPhone ? "/" + item?.driverPhone : '' }} </div>
</ng-template> </ng-template>
<ng-template st-row="longitude" let-item let-index="index"> <ng-template st-row="longitude" let-item let-index="index">
<div> {{ item?.longitude }} <div> {{ item?.longitude }}

View File

@ -227,7 +227,9 @@ export class OrderManagementAbnormalWarningComponent implements OnInit {
className: 'text-left', className: 'text-left',
index: 'billCode' index: 'billCode'
}, },
{ title: '服务类型', index: 'serviceTypeLabel', width: '220px', className: 'text-left' }, { title: '服务类型', index: 'serviceTypeLabel', width: '220px', className: 'text-left',format: (item) => {
return item?.resourceTypeLabel + item?.serviceTypeLabel
} },
{ title: '货主', index: 'shipperName', width: '220px', className: 'text-left' }, { title: '货主', index: 'shipperName', width: '220px', className: 'text-left' },
{ title: '装货地', index: 'loadingAddressArr', width: '220px', className: 'text-left' }, { title: '装货地', index: 'loadingAddressArr', width: '220px', className: 'text-left' },
{ title: '卸货地', index: 'unloadingAddressArr', width: '220px', className: 'text-left' }, { title: '卸货地', index: 'unloadingAddressArr', width: '220px', className: 'text-left' },

View File

@ -177,7 +177,7 @@ export class TaxManagementOrderReportingComponent implements OnInit {
} }
}, },
checkStatus: { checkStatus: {
title: '精准', title: '本地校验',
type: 'string', type: 'string',
ui: { ui: {
placeholder: '请选择', placeholder: '请选择',
@ -241,7 +241,7 @@ export class TaxManagementOrderReportingComponent implements OnInit {
this.columns = [ this.columns = [
{ title: '', type: 'checkbox', className: 'text-center', width: '60px', }, { title: '', type: 'checkbox', className: 'text-center', width: '60px', },
{ title: '上传状态', render: 'putStatus', className: 'text-center', width: '120px', }, { title: '上传状态', render: 'putStatus', className: 'text-center', width: '120px', },
{ title: '精准', render: 'checkStatus', className: 'text-center', width: '120px', }, { title: '本地校验', render: 'checkStatus', className: 'text-center', width: '120px', },
{ {
title: '订单号', title: '订单号',
index: 'billCode', index: 'billCode',

View File

@ -4,7 +4,7 @@
* @Author : Shiming * @Author : Shiming
* @Date : 2022-03-30 14:26:01 * @Date : 2022-03-30 14:26:01
* @LastEditors : Shiming * @LastEditors : Shiming
* @LastEditTime : 2022-04-08 15:36:04 * @LastEditTime : 2022-04-08 15:48:58
* @FilePath : \\tms-obc-web\\src\\app\\routes\\tax-management\\components\\order-reporting\\verify-result\\verify-result.component.ts * @FilePath : \\tms-obc-web\\src\\app\\routes\\tax-management\\components\\order-reporting\\verify-result\\verify-result.component.ts
* Copyright (C) 2022 huzhenhong. All rights reserved. * Copyright (C) 2022 huzhenhong. All rights reserved.
*/ */
@ -63,11 +63,29 @@ export class TaxManagementOrderVerifyResultComponent implements OnInit {
initST() { initST() {
this.columns = [ this.columns = [
{ title: '序号', type: 'no', className: 'text-center', width: '60px', }, { title: '序号', type: 'no', className: 'text-center', width: '60px', },
{ title: '校验字段', index: 'orderStatus', className: 'text-center', width: '120px', }, { title: '校验字段', index: 'checkFieldName', className: 'text-center', width: '120px', },
{ title: '是否必填', index: 'orderStatus', className: 'text-center', width: '100px', }, {
{ title: '上传值', index: 'orderStatus', className: 'text-center', width: '120px', }, title: '是否必填',
{ title: '本地校验', index: 'orderStatus', className: 'text-center', width: '100px', }, index: 'requiredStatus',
{ title: '错误内容', index: 'orderStatus', className: 'text-center', width: '150px', }, 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', },
] ]
} }