From d711c899e42e8cacee3ed6408f4c57e91c962dc8 Mon Sep 17 00:00:00 2001
From: zhubaomin <zhubaomin>
Date: 星期四, 17 四月 2025 17:03:10 +0800
Subject: [PATCH] 改正发布判断bug

---
 pipIrr-platform/pipIrr-web/pipIrr-web-project/src/main/java/com/dy/pipIrrProject/intake/IntakeCtrl.java |   75 ++++++++++++++++++++++++++++---------
 1 files changed, 56 insertions(+), 19 deletions(-)

diff --git a/pipIrr-platform/pipIrr-web/pipIrr-web-project/src/main/java/com/dy/pipIrrProject/intake/IntakeCtrl.java b/pipIrr-platform/pipIrr-web/pipIrr-web-project/src/main/java/com/dy/pipIrrProject/intake/IntakeCtrl.java
index 57b5513..399d528 100644
--- a/pipIrr-platform/pipIrr-web/pipIrr-web-project/src/main/java/com/dy/pipIrrProject/intake/IntakeCtrl.java
+++ b/pipIrr-platform/pipIrr-web/pipIrr-web-project/src/main/java/com/dy/pipIrrProject/intake/IntakeCtrl.java
@@ -9,10 +9,9 @@
 import com.dy.pipIrrGlobal.excel.CellWriteHandler;
 import com.dy.pipIrrGlobal.excel.ExcelUtil;
 import com.dy.pipIrrGlobal.pojoPr.PrIntake;
-import com.dy.pipIrrGlobal.voPr.VoIntake;
-import com.dy.pipIrrGlobal.voPr.VoOnLineIntake;
+import com.dy.pipIrrGlobal.voPr.*;
 import com.dy.pipIrrGlobal.voSe.VoActiveCard;
-import com.dy.pipIrrProject.intake.qo.OnLineIntakesQO;
+import com.dy.pipIrrProject.intake.qo.QoIntake;
 import com.dy.pipIrrProject.result.ProjectResultCode;
 import com.taobao.api.ApiException;
 import io.swagger.v3.oas.annotations.Operation;
@@ -76,9 +75,9 @@
     })
     @GetMapping(path = "all")
     @SsoAop()
-    public BaseResponse<QueryResultVo<List<PrIntake>>> all() {
+    public BaseResponse<QueryResultVo<List<VoAllIntake>>> all() {
         try {
-            QueryResultVo<List<PrIntake>> res = this.intakeSv.selectAll();
+            QueryResultVo<List<VoAllIntake>> res = this.intakeSv.selectAll();
             if (res == null) {
                 return BaseResponseUtils.buildErrorMsg(ProjectResultCode.NO_INTAKES.getMessage());
             } else {
@@ -104,9 +103,9 @@
                             schema = @Schema(implementation = PrIntake.class))}
             )
     })
-    @GetMapping(path = "one/{id}")
+    @GetMapping(path = "one")
     @SsoAop()
-    public BaseResponse<PrIntake> one(@PathVariable("id") Long id) {
+    public BaseResponse<VoAllIntake> one(@RequestParam("id") Long id) {
         if (this.intakeSv.selectById(id) == null) {
             return BaseResponseUtils.buildErrorMsg(ProjectResultCode.NO_INTAKES.getMessage());
         } else {
@@ -127,11 +126,7 @@
     @SsoAop()
     public BaseResponse<QueryResultVo<List<VoIntake>>> getIntakes(QueryVo vo) {
         try {
-            QueryResultVo<List<VoIntake>> res = intakeSv.getIntakes(vo);
-            if (res == null) {
-                return BaseResponseUtils.buildErrorMsg(ProjectResultCode.NO_INTAKES.getMessage());
-            }
-            return BaseResponseUtils.buildSuccess(res);
+            return BaseResponseUtils.buildSuccess(intakeSv.getIntakes(vo));
         } catch (Exception e) {
             log.error("鑾峰彇鍙栨按鍙h褰曞紓甯�", e);
             return BaseResponseUtils.buildException(e.getMessage());
@@ -199,6 +194,33 @@
             count = this.intakeSv.update(po);
         } catch (Exception e) {
             log.error("淇濆瓨鍙栨按鍙e紓甯�", e);
+            return BaseResponseUtils.buildException(e.getMessage());
+        }
+        if (count <= 0) {
+            return BaseResponseUtils.buildErrorMsg(ProjectResultCode.UPDATE_INTAKE.getMessage());
+        } else {
+            return BaseResponseUtils.buildSuccess(true);
+        }
+    }
+
+    /**
+     * app淇敼鍙栨按鍙g粡绾害
+     * @param po
+     * @param bindingResult
+     * @return
+     */
+    @PostMapping(path = "updateIntakeLngLat", consumes = MediaType.APPLICATION_JSON_VALUE)
+    @SsoAop()
+    public BaseResponse<Boolean> updateIntakeLngLat(@RequestBody @Parameter(description = "form琛ㄥ崟json鏁版嵁", required = true) @Valid IntakeUpdateLngLat po, @Parameter(hidden = true) BindingResult bindingResult) {
+        if (bindingResult != null && bindingResult.hasErrors()) {
+            return BaseResponseUtils.buildErrorMsg(Objects.requireNonNull(bindingResult.getFieldError()).getDefaultMessage());
+        }
+        int count;
+        po.setOperateDt(new Date());
+        try {
+            count = this.intakeSv.updateIntakeLngLat(po);
+        } catch (Exception e) {
+            log.error("淇濆瓨鍙栨按鍙g粡绾害寮傚父", e);
             return BaseResponseUtils.buildException(e.getMessage());
         }
         if (count <= 0) {
@@ -290,14 +312,13 @@
     }
 
     /**
+     * 姝ゅ姛鑳藉凡缍撶Щ妞嶅埌remote妯″鐨凪onitroCtrl涓�
      * 鑾峰彇鍙栨按鍙e垪琛紙鍦ㄧ嚎鍜屼笉鍦ㄧ嚎锛�
-     *
      * @param qo
      * @return
-     */
-    @GetMapping(path = "all_intakes")
-    @SsoAop()
-    public BaseResponse<QueryResultVo<List<VoOnLineIntake>>> getAllIntakes(OnLineIntakesQO qo) {
+     @GetMapping(path = "all_intakes")
+     @SsoAop()
+     public BaseResponse<QueryResultVo<List<VoOnLineIntake>>> getAllIntakes(OnLineIntakesQO qo) {
         try {
             QueryResultVo<List<VoOnLineIntake>> res = intakeSv.selectOnLineIntakes(qo);
             return BaseResponseUtils.buildSuccess(res);
@@ -305,8 +326,8 @@
             log.error("鏌ヨ鍙栨按鍙e紓甯�", e);
             return BaseResponseUtils.buildException(e.getMessage());
         }
-    }
-
+     }
+     */
     /**
      * 鏍规嵁鎿嶄綔鍛樿幏鍙栧父鐢ㄥ彇姘村彛锛堝湪绾垮拰涓嶅湪绾匡級
      *
@@ -324,4 +345,20 @@
             return BaseResponseUtils.buildException(e.getMessage());
         }
     }
+
+    /**
+     * 鑾峰彇鏈粦瀹氬埌杞亴缁勭殑鍙栨按鍙e垪琛�
+     * @return
+     */
+    @GetMapping(path = "getFreeIntakes")
+    @SsoAop()
+    public BaseResponse<List<VoIntakeSimple>> getFreeIntakes(QoIntake qo) {
+        try {
+            List<VoIntakeSimple> res = intakeSv.getFreeIntakes(qo);
+            return BaseResponseUtils.buildSuccess(res);
+        } catch (Exception e) {
+            log.error("鏌ヨ鍙栨按鍙e紓甯�", e);
+            return BaseResponseUtils.buildException(e.getMessage());
+        }
+    }
 }

--
Gitblit v1.8.0