From b67dbc6737b5a8751bbc6932724c34ae4b19c34e Mon Sep 17 00:00:00 2001
From: maven <2163098428@qq.com>
Date: 星期二, 20 一月 2026 18:02:32 +0800
Subject: [PATCH] yys  优化影响的模块

---
 src/main/java/com/ruoyi/sales/controller/SalesQuotationController.java |   15 +++++++++++++++
 1 files changed, 15 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/ruoyi/sales/controller/SalesQuotationController.java b/src/main/java/com/ruoyi/sales/controller/SalesQuotationController.java
index f9ea1df..7ea82b7 100644
--- a/src/main/java/com/ruoyi/sales/controller/SalesQuotationController.java
+++ b/src/main/java/com/ruoyi/sales/controller/SalesQuotationController.java
@@ -51,6 +51,21 @@
     public AjaxResult update(@RequestBody SalesQuotationDto salesQuotationDto) {
         return AjaxResult.success(salesQuotationService.edit(salesQuotationDto));
     }
+
+    /**
+     * 璇︽儏
+     * @param type   瀹㈡埛绫诲瀷
+     * @param productName 浜у搧鍚嶇О
+     * @param specification  瑙勬牸
+     * @return
+     */
+    @ApiOperation("璇︽儏")
+    @GetMapping("/detail")
+    public AjaxResult detail(@RequestParam("type") String type,
+                             @RequestParam("productName")String productName,
+                             @RequestParam("specification")String specification) {
+        return AjaxResult.success(salesQuotationService.detail(type, productName, specification));
+    }
     @DeleteMapping("/delete")
     public AjaxResult delete(@RequestBody Long id) {
         return AjaxResult.success(salesQuotationService.delete(id));

--
Gitblit v1.9.3