From b63eef2cfb054b1ead234ab93e05a2aa28775d91 Mon Sep 17 00:00:00 2001
From: zhubaomin <zhubaomin>
Date: 星期四, 17 四月 2025 14:54:26 +0800
Subject: [PATCH] 优化灌溉计划发布前判断条件

---
 pipIrr-platform/pipIrr-web/pipIrr-web-wechat/src/main/java/com/dy/pipIrrWechat/irrigatePlan/IrrigatePlanSv.java |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/pipIrr-platform/pipIrr-web/pipIrr-web-wechat/src/main/java/com/dy/pipIrrWechat/irrigatePlan/IrrigatePlanSv.java b/pipIrr-platform/pipIrr-web/pipIrr-web-wechat/src/main/java/com/dy/pipIrrWechat/irrigatePlan/IrrigatePlanSv.java
index 2c30753..4672f99 100644
--- a/pipIrr-platform/pipIrr-web/pipIrr-web-wechat/src/main/java/com/dy/pipIrrWechat/irrigatePlan/IrrigatePlanSv.java
+++ b/pipIrr-platform/pipIrr-web/pipIrr-web-wechat/src/main/java/com/dy/pipIrrWechat/irrigatePlan/IrrigatePlanSv.java
@@ -136,7 +136,7 @@
         Long operatorId = planSimple.getOperatorId();
         Byte operateType = 1;
 
-        if(irrigatePlanMapper.hasPlan_CurrentProject(planId) == 0) {
+        if(irrigatePlanMapper.hasPlan_CurrentProject(planId) > 0) {
             Map map = new HashMap<>();
             map.put("success", false);
             map.put("msg", "褰撳墠椤圭洰瀛樺湪鏈畬鎴愮殑鐏屾簤璁″垝");
@@ -144,7 +144,7 @@
             return map;
         }
 
-        if(irrigatePlanMapper.hasPlan_CurrentProject(planId) == 0) {
+        if(irrigatePlanMapper.hasPlan_CurrentProject(planId) > 0) {
             Map map = new HashMap<>();
             map.put("success", false);
             map.put("msg", "寰呭彂甯冭鍒掔殑杞亴缁勫湪鍏朵粬椤圭洰鐨勭亴婧夎鍒掍腑锛屼笖璇ヨ鍒掑皻鏈畬鎴�");

--
Gitblit v1.8.0