From c16329fad94c7a783aae1fc204b9b9818dcf1d29 Mon Sep 17 00:00:00 2001
From: shiyunteng <shiyunteng@example.com>
Date: 星期一, 31 三月 2025 11:04:48 +0800
Subject: [PATCH] 合同新增添加中标单关联,根据选择的中标单赋值乙方  中标单中标厂家改成下拉  验收单来源类型根据合同类型,查询条件和结果新增合同名称

---
 platformx-device-biz/src/main/java/com/by4cloud/platformx/device/controller/ReceivingNoteItemController.java |   11 +++++++++++
 1 files changed, 11 insertions(+), 0 deletions(-)

diff --git a/platformx-device-biz/src/main/java/com/by4cloud/platformx/device/controller/ReceivingNoteItemController.java b/platformx-device-biz/src/main/java/com/by4cloud/platformx/device/controller/ReceivingNoteItemController.java
index 14d40f2..3d54e29 100644
--- a/platformx-device-biz/src/main/java/com/by4cloud/platformx/device/controller/ReceivingNoteItemController.java
+++ b/platformx-device-biz/src/main/java/com/by4cloud/platformx/device/controller/ReceivingNoteItemController.java
@@ -116,4 +116,15 @@
     public List<ReceivingNoteItem> export(ReceivingNoteItem receivingNoteItem,Long[] ids) {
         return receivingNoteItemService.list(Wrappers.lambdaQuery(receivingNoteItem).in(ArrayUtil.isNotEmpty(ids), ReceivingNoteItem::getId, ids));
     }
+
+	/**
+	 * 鏍规嵁鍚堝悓鏌ヨ鍚堝悓鍐呯殑璁惧
+	 * @param contractId
+	 * @return
+	 */
+	@Operation(summary = "鏍规嵁鍚堝悓鏌ヨ鍚堝悓鍐呯殑璁惧" , description = "鏍规嵁鍚堝悓鏌ヨ鍚堝悓鍐呯殑璁惧")
+			@GetMapping("/getDeviceListByContractId/{contractId}")
+	public R getDeviceListByContractId(@PathVariable("contractId")Long contractId) {
+		return receivingNoteItemService.getDeviceListByContractId(contractId);
+	}
 }

--
Gitblit v1.9.1