From aec4636e4fb430055feb66751da0e6c05bb864df Mon Sep 17 00:00:00 2001 From: zuoxiao <470321431@qq.com> Date: 星期三, 30 四月 2025 16:25:30 +0800 Subject: [PATCH] fix(irrigatePlan): 修复终止灌溉计划时长设置错误- 将终止计划的默认时长从 9999 修改为 0 - 此修改确保在终止灌溉计划时,不会出现时长设置过长的问题 --- pipIrr-platform/pipIrr-global/src/main/resources/mapper/SeRefundMapper.xml | 14 ++++++++++++++ 1 files changed, 14 insertions(+), 0 deletions(-) diff --git a/pipIrr-platform/pipIrr-global/src/main/resources/mapper/SeRefundMapper.xml b/pipIrr-platform/pipIrr-global/src/main/resources/mapper/SeRefundMapper.xml index 5fc7a50..e928160 100644 --- a/pipIrr-platform/pipIrr-global/src/main/resources/mapper/SeRefundMapper.xml +++ b/pipIrr-platform/pipIrr-global/src/main/resources/mapper/SeRefundMapper.xml @@ -229,4 +229,18 @@ </if> </trim> </select> + + <!--鑾峰彇鎸囧畾鏃ユ湡寰俊閫�娆撅紙鍙绠楀凡閫�鐨勶級鎬婚锛岃储鍔″璐﹀鏍搁〉浣跨敤--> + <select id="getRefundSum" resultType="java.lang.Double"> + SELECT + SUM(refund_amount) AS tradeAmount + FROM se_refund + <where> + AND refund_status = 2 + <if test = "tradeDate != null and tradeDate !=''"> + AND Date(audit_time) = #{tradeDate} + </if> + </where> + GROUP BY Date(audit_time) + </select> </mapper> \ No newline at end of file -- Gitblit v1.8.0