From 10d2fc015016903b7ec32fbdbe5f01fa0bcc8d6a Mon Sep 17 00:00:00 2001 From: wangshiming Date: Thu, 20 Jan 2022 10:44:35 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E8=BD=A6=E8=BE=86=E6=8E=A5=E5=8F=A3?= =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/bulk/bulk.component.ts | 10 +++++----- .../components/vehicle/vehicle.component.ts | 11 ++++++----- 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/src/app/routes/order-management/components/bulk/bulk.component.ts b/src/app/routes/order-management/components/bulk/bulk.component.ts index 62c9c0d0..6921d239 100644 --- a/src/app/routes/order-management/components/bulk/bulk.component.ts +++ b/src/app/routes/order-management/components/bulk/bulk.component.ts @@ -457,17 +457,17 @@ export class OrderManagementBulkComponent implements OnInit { width: '120px', className: 'text-left', buttons: [ - { - text: '查看评价 ', - click: _record => this.viewEvaluate(_record), - iif: item => item.billStatus == '5' - }, { text: '运费变更记录', click: _record => this.OpenPrice(_record), iif: item => item.billStatus == '4' || item.billStatus == '5' || item.billStatus == '2' || item.billStatus == '3' || item.billStatus == '6' }, + { + text: '查看评价 ', + click: _record => this.viewEvaluate(_record), + iif: item => item.billStatus == '5' + }, { text: '变更运费 ', click: _record => this.updateFreight(_record), diff --git a/src/app/routes/order-management/components/vehicle/vehicle.component.ts b/src/app/routes/order-management/components/vehicle/vehicle.component.ts index 3f39db6c..6552d953 100644 --- a/src/app/routes/order-management/components/vehicle/vehicle.component.ts +++ b/src/app/routes/order-management/components/vehicle/vehicle.component.ts @@ -413,16 +413,17 @@ resourceStatus: any; width: '120px', className: 'text-left', buttons: [ - { - text: '查看评价 ', - click: (_record) => this.viewEvaluate(_record), - iif: item => item.billStatus == '5', - }, + { text: '运费变更记录', click: (_record) => this.OpenPrice(_record), iif: item => item.billStatus == '4' || item.billStatus == '5' || item.billStatus == '2' || item.billStatus == '3' || item.billStatus == '6', }, + { + text: '查看评价 ', + click: (_record) => this.viewEvaluate(_record), + iif: item => item.billStatus == '5', + }, { text: '变更运费 ', click: (_record) => this.updateFreight(_record), From 2d3d12bdacfa3f44de266d0d4b8d5fef31d85c24 Mon Sep 17 00:00:00 2001 From: wangshiming Date: Thu, 20 Jan 2022 10:56:05 +0800 Subject: [PATCH 2/3] =?UTF-8?q?=E8=BD=A6=E8=BE=86=E6=8E=A5=E5=8F=A3?= =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/assets/mocks/menu-data.json | 36 ++++++++++++++++----------------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/src/assets/mocks/menu-data.json b/src/assets/mocks/menu-data.json index 50ee786e..e8c10f01 100644 --- a/src/assets/mocks/menu-data.json +++ b/src/assets/mocks/menu-data.json @@ -263,6 +263,24 @@ "text": "收款单", "link": "/financial-management/receipt-order" }, + { + "text": "应收核销", + "link": "/financial-management/receivable-order" + }, + { + "text": "应收核销详情", + "hide": true, + "link": "/financial-management/receivable-order/detail/:id" + }, + { + "text": "应付核销", + "link": "/financial-management/payable-order" + }, + { + "text": "应收核销详情", + "hide": true, + "link": "/financial-management/payable-order/detail/:id" + }, { "text": "货主账户", "link": "/financial-management/freight-account" @@ -305,24 +323,6 @@ { "text": "交易流水", "link": "/financial-management/transaction-flow" - }, - { - "text": "应收核销", - "link": "/financial-management/receivable-order" - }, - { - "text": "应收核销详情", - "hide": true, - "link": "/financial-management/receivable-order/detail/:id" - }, - { - "text": "应付核销", - "link": "/financial-management/payable-order" - }, - { - "text": "应收核销详情", - "hide": true, - "link": "/financial-management/payable-order/detail/:id" } ] }, From 6bfc7192451dcf1f4d96bea08cc3ae58e52bda28 Mon Sep 17 00:00:00 2001 From: wangshiming Date: Thu, 20 Jan 2022 13:34:31 +0800 Subject: [PATCH 3/3] =?UTF-8?q?=E8=BD=A6=E8=BE=86=E6=8E=A5=E5=8F=A3?= =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- proxy.conf.js | 4 +- .../receipt-order/receipt-order.component.ts | 2 +- .../bulk-detail/bulk-detail.component.html | 107 ++++++++++-------- .../bulk-detail/bulk-detail.component.ts | 15 ++- .../components/bulk/bulk.component.ts | 13 --- .../services/supply-management.service.ts | 6 +- 6 files changed, 76 insertions(+), 71 deletions(-) diff --git a/proxy.conf.js b/proxy.conf.js index eeaa5ac8..60203285 100644 --- a/proxy.conf.js +++ b/proxy.conf.js @@ -4,7 +4,7 @@ * @Author : Shiming * @Date : 2022-01-18 09:51:21 * @LastEditors : Shiming - * @LastEditTime : 2022-01-19 20:50:35 + * @LastEditTime : 2022-01-20 11:12:31 * @FilePath : \\tms-obc-web\\proxy.conf.js * Copyright (C) 2022 huzhenhong. All rights reserved. */ @@ -20,7 +20,7 @@ module.exports = { // } '//api': { target: { - host: 'tms-api-test.eascs.com', + host: 'tms-api-dev.eascs.com', protocol: 'https:', port: 443 }, diff --git a/src/app/routes/financial-management/components/receipt-order/receipt-order.component.ts b/src/app/routes/financial-management/components/receipt-order/receipt-order.component.ts index 7c3a1882..e0eac603 100644 --- a/src/app/routes/financial-management/components/receipt-order/receipt-order.component.ts +++ b/src/app/routes/financial-management/components/receipt-order/receipt-order.component.ts @@ -257,7 +257,7 @@ export class ReceiptOrderComponent implements OnInit { { title: '银行水单', index: 'bankreceipt', width: 200, className: 'text-left' }, { title: '创建时间', index: 'createTime', type: 'date', width: 200, className: 'text-left' }, { title: '创建人', index: 'createUserId', width: 150, className: 'text-left' }, - { title: '收款状态', index: 'sts', width: 200, className: 'text-left' }, + { title: '收款状态', index: 'stsLabel', width: 200, className: 'text-left' }, { title: '收款备注', index: 'remarks', width: 200, className: 'text-left' }, { title: '操作', diff --git a/src/app/routes/supply-management/components/bulk-detail/bulk-detail.component.html b/src/app/routes/supply-management/components/bulk-detail/bulk-detail.component.html index 55d8005d..7189e67c 100644 --- a/src/app/routes/supply-management/components/bulk-detail/bulk-detail.component.html +++ b/src/app/routes/supply-management/components/bulk-detail/bulk-detail.component.html @@ -7,31 +7,32 @@
- +

货源编码 : {{ i?.resourceCode }}

-
网络货运人:{{i?.shipperAppUserName}}
+
网络货运人:{{ i?.shipperAppUserName }}
- - + +
- 总费用:{{i?.totalAmount | currency: '¥'}} + 总费用:{{ i?.totalAmount | currency: '¥' }}
- {{i?.enterpriseProjectId}} - {{i?.deadlineTime}} - {{i?.createUserName}}/{{i?.createUserPhone}} - {{i?.dispatchName}}/{{i?.dispatchPhone}} - {{i?.serviceTypeLabel}} + {{ i?.enterpriseProjectId }} + {{ i?.deadlineTime }} + {{ i?.createUserName }}/{{ i?.createUserPhone }} + {{ i?.dispatchName }}/{{ i?.dispatchPhone }} + {{ i?.serviceTypeLabel }}
@@ -39,13 +40,19 @@
- - + + -
@@ -56,20 +63,14 @@ 货物信息 - {{item?.goodsName}} - - - {{item?.weight}}顿 | {{item?.volume}}方 - - - {{10}}顿 | {{10}}方 - - - {{item?.maxWeight}} | {{item?.maxCube}}米 + {{ item?.goodsName }} + {{ item?.weight }}顿 | {{ item?.volume }}方 + {{ 10 }}顿 | {{ 10 }}方 + {{ item?.maxWeight }} | {{ item?.maxCube }}米 - {{i?.carrierInformationVO?.driverName}} / {{i?.carrierInformationVO?.driverTelephone}} / - {{i?.carrierInformationVO?.driverLicensePlate}} + {{ i?.carrierInformationVO?.driverName }} / {{ i?.carrierInformationVO?.driverTelephone }} / + {{ i?.carrierInformationVO?.driverLicensePlate }}