fanzherong_v 1 miesiąc temu
rodzic
commit
3408fd8836

+ 7 - 0
snowy-admin-web/src/views/biz/bizaccessrecord/detail.vue

@@ -56,6 +56,7 @@
 
 <script setup name="recordDoubleForm">
 	import { cloneDeep } from 'lodash-es'
+	import sysConfig from "@/config";
 	// 默认是关闭状态
 	const visible = ref(false)
 	const formData = ref({})
@@ -80,6 +81,12 @@
 		if(record){
 			let recordData = cloneDeep(record)
 			formData.value = Object.assign({}, recordData)
+			if(formData.value.cloudPlateName.includes("http://db.js-whzl.com:8065")){
+				formData.value.cloudPlateName = formData.value.cloudPlateName.replace("http://db.js-whzl.com:8065/preview/",sysConfig.PREVIEW_PATH)
+			}
+			if(formData.value.cloudLicenseName.includes("http://db.js-whzl.com:8065")){
+				formData.value.cloudLicenseName = formData.value.cloudLicenseName.replace("http://db.js-whzl.com:8065/preview/",sysConfig.PREVIEW_PATH)
+			}
 		}
 
 	}

+ 4 - 3
snowy-admin-web/src/views/biz/bizorder/flow.vue

@@ -135,7 +135,7 @@
 			width: '130px'
 		},
 		{
-			title: '重量(KG)',
+			title: '重量()',
 			dataIndex: 'weight',
 			align: 'center'
 		},
@@ -144,8 +144,9 @@
 			dataIndex: 'orderInfo'
 		},
 		{
-			title: '收发货单位',
-			dataIndex: 'company'
+			title: '客户名称',
+			dataIndex: 'customerName',
+			align:'center'
 		},
 		{
 			title: '货品',

+ 3 - 3
snowy-admin-web/src/views/biz/bizsendrecord/detail.vue

@@ -27,13 +27,13 @@
 		<a-divider></a-divider>
 		<a-descriptions>
 			<a-descriptions-item label="毛重"
-				><a-tag color="blue">{{ formData.grossWeight }} KG</a-tag></a-descriptions-item
+				><a-tag color="blue">{{ formData.grossWeight }} </a-tag></a-descriptions-item
 			>
 			<a-descriptions-item label="皮重"
-				><a-tag color="orange">{{ formData.tareWeight }} KG</a-tag></a-descriptions-item
+				><a-tag color="orange">{{ formData.tareWeight }} </a-tag></a-descriptions-item
 			>
 			<a-descriptions-item label="净重"
-				><a-tag color="green">{{ formData.netWeight }} KG</a-tag></a-descriptions-item
+				><a-tag color="green">{{ formData.netWeight }} </a-tag></a-descriptions-item
 			>
 		</a-descriptions>
 		<a-divider></a-divider>

+ 1 - 1
snowy-admin-web/src/views/biz/bizsendrecord/index.vue

@@ -233,7 +233,7 @@
 			width: '130px'
 		},
 		{
-			title: '重量(KG)',
+			title: '重量()',
 			dataIndex: 'weight',
 			align: 'center'
 		},

+ 1 - 0
snowy-plugin/snowy-plugin-biz/src/main/java/vip/xiaonuo/biz/modular/bizappointmentrecord/controller/BizAppointmentRecordController.java

@@ -145,6 +145,7 @@ public class BizAppointmentRecordController {
      * 导出预约报表
      */
     @Operation(summary = "导出预约报表")
+    @SaCheckPermission("/biz/bizappointmentrecord/exportRecord")
     @GetMapping(value = "/biz/bizappointmentrecord/exportRecord", produces = MediaType.APPLICATION_OCTET_STREAM_VALUE)
     public void exportRecord(BizAppointmentRecordPageParam bizAppointmentRecordPageParam, HttpServletResponse response) throws IOException {
         bizAppointmentRecordService.exportRecord(bizAppointmentRecordPageParam,response);

+ 1 - 0
snowy-plugin/snowy-plugin-biz/src/main/java/vip/xiaonuo/biz/modular/bizorder/controller/BizOrderController.java

@@ -154,6 +154,7 @@ public class BizOrderController {
      * 导出订单报表
      */
     @Operation(summary = "导出订单报表")
+    @SaCheckPermission("/biz/bizorder/exportRecord")
     @GetMapping(value = "/biz/bizorder/exportRecord", produces = MediaType.APPLICATION_OCTET_STREAM_VALUE)
     public void exportRecord(BizOrderPageParam bizOrderPageParam, HttpServletResponse response) throws IOException {
         bizOrderService.exportRecord(bizOrderPageParam,response);