From 0b9605b411d7aa07c704153d8c3ff4baa0dc1a66 Mon Sep 17 00:00:00 2001
From: 18756 <1875631620@qq.com>
Date: 星期四, 22 八月 2024 10:06:12 +0800
Subject: [PATCH] 会议室功能签到信息8.22

---
 src/main/java/com/product/administration/controller/ConferenceManagerController.java |  103 ++++++++++++++++++++++++++++++++++++++++++++++++---
 1 files changed, 97 insertions(+), 6 deletions(-)

diff --git a/src/main/java/com/product/administration/controller/ConferenceManagerController.java b/src/main/java/com/product/administration/controller/ConferenceManagerController.java
index cb73c82..4be1f50 100644
--- a/src/main/java/com/product/administration/controller/ConferenceManagerController.java
+++ b/src/main/java/com/product/administration/controller/ConferenceManagerController.java
@@ -19,7 +19,9 @@
 import com.product.module.sys.config.SystemErrorCode;
 import com.product.module.sys.version.ApiVersion;
 import com.product.util.BaseUtil;
+import org.omg.CORBA.DATA_CONVERSION;
 import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.GetMapping;
 import org.springframework.web.bind.annotation.PostMapping;
 import org.springframework.web.bind.annotation.RequestMapping;
 import org.springframework.web.bind.annotation.RestController;
@@ -28,6 +30,9 @@
 import javax.servlet.http.HttpServletResponse;
 import java.io.IOException;
 import java.io.OutputStream;
+import java.text.DateFormat;
+import java.text.ParseException;
+import java.text.SimpleDateFormat;
 import java.util.Date;
 import java.util.HashMap;
 import java.util.List;
@@ -429,6 +434,11 @@
         }
     }
 
+    /**
+     * 浼氳棰勭害鐪嬫澘鍔熻兘
+     * @param request
+     * @return
+     */
     @PostMapping("/get_kb_Data/{version}")
     @ApiVersion(1)
    public String getkbData(HttpServletRequest request){
@@ -450,6 +460,11 @@
 
     }
 
+    /**
+     * 鑾峰彇浼氳棰勭害璇︽儏
+     * @param request
+     * @return
+     */
     @PostMapping("/get_Meeting_Details/{version}")
     @ApiVersion(1)
     public String getMeetingDetails(HttpServletRequest request){
@@ -469,6 +484,11 @@
 
     }
 
+    /**
+     * 浼氳瀹ら绾︿繚瀛樻洿鏂板姛鑳�
+     * @param request
+     * @return
+     */
 
     @PostMapping("/save_or_update_meeting_info/{version}")
     @ApiVersion(1)
@@ -518,25 +538,96 @@
                 response.setDateHeader("Expires", 0);
 
                 OutputStream stream = response.getOutputStream();
-                //鍚庣璺宠浆鍦板潃
-               // String content = ("http://www.baidu.com");
+
                 JSONObject jsonData = new JSONObject();
                 jsonData.put("uuid",uuid);
-                jsonData.put("date",new Date());
-                //jsonData.put("url",content);
+                Date date = new Date();
+                SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
+                String formatDate = dateFormat.format(date);
+                jsonData.put("date",formatDate);
                 //鑾峰彇涓�涓簩缁寸爜鍥剧墖
                 BitMatrix bitMatrix = conferenceManagerService.getQrCode(jsonData.toString());
                 //浠ユ祦鐨勫舰寮忚緭鍑哄埌鍓嶇
                 MatrixToImageWriter.writeToStream(bitMatrix , "jpg" , stream);
-
-            }
+           }
         }
 
 
     }
 
+    /**
+     * 棰勭害浼氳鍙栨秷寮�鍚姛鑳�
+     * @param request
+     * @return
+     */
+    @PostMapping("/cancel_and_start/{version}")
+    @ApiVersion(1)
+    public  String CancelAndStart(HttpServletRequest request){
+        //鑾峰彇鍙傛暟
+        FieldSetEntity fse = null;
+        Object bean = request.getAttribute(CoreConst.API_POST_REQUEST_DATA);
+        if (bean != null) {
+            RequestParameterEntity reqp = (RequestParameterEntity) bean;
+            fse = reqp.getFormData();
+        }
+        //鍒ゆ柇鍙傛暟鏄惁涓虹┖
+        if (bean == null || fse == null) {
+            return this.error(com.product.admin.config.SystemCode.SYSTEM_FORM_NODATA.getValue(), com.product.admin.config.SystemCode.SYSTEM_FORM_NODATA.getText());
+        }
+        conferenceManagerService.CancelAndStart(fse);
+        return OK();
+    }
 
 
+    /**
+     * 浼氳绛惧埌鍔熻兘
+     * @param request
+     * @return
+     * @throws ParseException
+     */
+    @PostMapping("/conference_sign/{version}")
+    @ApiVersion(1)
+    public  String ConferenceSign(HttpServletRequest request) throws ParseException {
+        //鑾峰彇鍙傛暟
+        FieldSetEntity fse = null;
+        Object bean = request.getAttribute(CoreConst.API_POST_REQUEST_DATA);
+        if (bean != null) {
+            RequestParameterEntity reqp = (RequestParameterEntity) bean;
+            fse = reqp.getFormData();
+        }
+        //鍒ゆ柇鍙傛暟鏄惁涓虹┖
+        if (bean == null || fse == null) {
+            return this.error(com.product.admin.config.SystemCode.SYSTEM_FORM_NODATA.getValue(), com.product.admin.config.SystemCode.SYSTEM_FORM_NODATA.getText());
+        }
+        String s = conferenceManagerService.ConferenceSign(fse);
+        return OK(s);
+    }
+
+
+    /**
+     * 鑾峰彇绛惧埌淇℃伅
+     * @param request
+     * @return
+     */
+    @PostMapping("/get_sign_info/{version}")
+    @ApiVersion(1)
+    public String getSignInfo(HttpServletRequest request){
+
+        FieldSetEntity fse = null;
+        Object bean = request.getAttribute(CoreConst.API_POST_REQUEST_DATA);
+        if (bean != null) {
+            RequestParameterEntity reqp = (RequestParameterEntity) bean;
+            fse = reqp.getFormData();
+        }
+        //鍒ゆ柇鍙傛暟鏄惁涓虹┖
+        if (bean == null || fse == null) {
+            return this.error(com.product.admin.config.SystemCode.SYSTEM_FORM_NODATA.getValue(), com.product.admin.config.SystemCode.SYSTEM_FORM_NODATA.getText());
+        }
+        HashMap signInfo = conferenceManagerService.getSignInfo(fse);
+        return OK(signInfo);
+
+    }
+
 
 
 }

--
Gitblit v1.9.2