From a35a3d9d6ce42cd3a483a2204bc52479520bbb72 Mon Sep 17 00:00:00 2001
From: 侯瑞军 <411269194@kidgrow.com>
Date: Sun, 26 Apr 2020 10:18:47 +0800
Subject: [PATCH] 1.增加试用套餐授权功能页面 2.增加诊断记录列表页面(接口待提供)

---
 kidgrow-business/kidgrow-opration-center/kidgrow-opration-center-biz/src/main/resources/mapper/ProductOrderDetailMapper.xml |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/kidgrow-business/kidgrow-opration-center/kidgrow-opration-center-biz/src/main/resources/mapper/ProductOrderDetailMapper.xml b/kidgrow-business/kidgrow-opration-center/kidgrow-opration-center-biz/src/main/resources/mapper/ProductOrderDetailMapper.xml
index 0ad53bf..e24fcd1 100644
--- a/kidgrow-business/kidgrow-opration-center/kidgrow-opration-center-biz/src/main/resources/mapper/ProductOrderDetailMapper.xml
+++ b/kidgrow-business/kidgrow-opration-center/kidgrow-opration-center-biz/src/main/resources/mapper/ProductOrderDetailMapper.xml
@@ -92,6 +92,9 @@
             <if test="p.id != null and p.id !=''">
                 and id = #{p.id}
             </if>
+            <if test="p.proType != null and p.proType !=''">
+                and pro_type = #{p.proType}
+            </if>
             <if test="p.hospitalName != null and p.hospitalName !=''">
                 and PRO.hospital_name like concat ('%',#{p.hospitalName},'%')
             </if>
@@ -119,7 +122,8 @@
         DE.is_del,
         DE.enabled,
         PRO.hospital_name,
-        PRO.department_name
+        PRO.department_name,
+        DE.pro_type
         FROM
         product_order_detail DE
         LEFT JOIN product_order PRO ON DE.order_id = PRO.id

--
Gitblit v1.8.0