From bf23d66c841f7bc7de098a93b9a61fffe04d9cfb Mon Sep 17 00:00:00 2001
From: guoyuji <guoyujie@ng.com>
Date: 星期三, 28 二月 2024 18:41:13 +0800
Subject: [PATCH] 提交右键菜单以及拖拉选中功能

---
 north-glass-erp/src/main/resources/mapper/sd/BasicData.xml |   12 ++++++++++--
 1 files changed, 10 insertions(+), 2 deletions(-)

diff --git a/north-glass-erp/src/main/resources/mapper/sd/BasicData.xml b/north-glass-erp/src/main/resources/mapper/sd/BasicData.xml
index 78f29a0..1ff0a96 100644
--- a/north-glass-erp/src/main/resources/mapper/sd/BasicData.xml
+++ b/north-glass-erp/src/main/resources/mapper/sd/BasicData.xml
@@ -8,14 +8,22 @@
             *
         from
             basic_data as a
-        where a.basic_type='order'
+        where a.basic_type=#{type}
     </select>
+    <select id="getOrderBasicDataByTypeAndChildType">
+        select
+            *
+        from
+            basic_data as a
+        where a.basic_type=#{type} and a.basic_category = #{childType}
+    </select>
+
     <select id="getOrderBasicDataType">
         select
             a.basic_category
         from
             basic_data as a
-        where a.basic_type='order'
+        where a.basic_type=#{type}
         group by  a.basic_category
 
     </select>

--
Gitblit v1.8.0