From 218122f83197ceb2287a30d324be2ed3c42cc282 Mon Sep 17 00:00:00 2001
From: 18756 <1875631620@qq.com>
Date: 星期三, 21 八月 2024 15:43:02 +0800
Subject: [PATCH] 会议室功能8.21

---
 src/main/java/com/product/administration/service/ide/IConferenceManagerService.java  |    5 ++
 src/main/java/com/product/administration/controller/ConferenceManagerController.java |   46 +++++++++++++++++-----
 src/main/java/com/product/administration/service/ConferenceManagerService.java       |   46 +++++++++++++++++++++++
 3 files changed, 86 insertions(+), 11 deletions(-)

diff --git a/src/main/java/com/product/administration/controller/ConferenceManagerController.java b/src/main/java/com/product/administration/controller/ConferenceManagerController.java
index ba7967e..d1c0944 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;
@@ -513,19 +518,19 @@
      * @throws IOException
      * @throws WriterException
      */
-    @PostMapping("/get_QrCode/{version}")
+    @GetMapping("/get_QrCode/{version}")
     @ApiVersion(1)
-    public void getQrCode(HttpServletRequest request, HttpServletResponse response) throws IOException, WriterException {
+    public void getQrCode(String uuid,HttpServletRequest request, HttpServletResponse response) throws IOException, WriterException {
 
         //鑾峰彇鍙傛暟
         FieldSetEntity fse = null;
-        Object bean = request.getAttribute(CoreConst.API_POST_REQUEST_DATA);
+      /*  Object bean = request.getAttribute(CoreConst.API_POST_REQUEST_DATA);
         if (bean != null) {
             RequestParameterEntity reqp = (RequestParameterEntity) bean;
             fse = reqp.getFormData();
 
-            if(fse!=null &&  !StringUtils.isEmpty(fse.getString("uuid"))){
-                String uuid = fse.getString("uuid");
+            if(fse!=null &&  !StringUtils.isEmpty(fse.getString("uuid"))){*/
+              //  String uuid = fse.getString("uuid");
                 // 璁剧疆鍝嶅簲娴佷俊鎭�
                 response.setContentType("image/jpg");
                 response.setHeader("Pragma", "no-cache");
@@ -533,19 +538,20 @@
                 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);
 
-            }
-        }
+           // }
+        //}
 
 
     }
@@ -574,6 +580,24 @@
     }
 
 
+    @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);
+    }
+
 
 
 }
diff --git a/src/main/java/com/product/administration/service/ConferenceManagerService.java b/src/main/java/com/product/administration/service/ConferenceManagerService.java
index 88184ca..e6eac8d 100644
--- a/src/main/java/com/product/administration/service/ConferenceManagerService.java
+++ b/src/main/java/com/product/administration/service/ConferenceManagerService.java
@@ -1,7 +1,10 @@
 package com.product.administration.service;
 
+import cn.hutool.core.date.DateUnit;
+import cn.hutool.core.date.DateUtil;
 import cn.hutool.core.util.ObjectUtil;
 import com.alibaba.fastjson.JSONObject;
+import com.google.errorprone.annotations.Var;
 import com.google.zxing.BarcodeFormat;
 import com.google.zxing.EncodeHintType;
 import com.google.zxing.MultiFormatWriter;
@@ -38,6 +41,7 @@
 import java.io.IOException;
 import java.text.DecimalFormat;
 import java.text.Format;
+import java.text.ParseException;
 import java.text.SimpleDateFormat;
 import java.util.*;
 
@@ -458,6 +462,48 @@
 
     }
 
+    @Override
+    public String ConferenceSign(FieldSetEntity fse) throws BaseException, ParseException {
+
+
+        JSONObject jsonObject = new JSONObject();
+       /* if(!StringUtils.isEmpty(fse.getString("uuid"))&&!StringUtils.isEmpty(fse.getString("date"))){*/
+            /*String uuid = fse.getString("uuid");
+            String date = fse.getString("date");
+            SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
+            Date parseDate = dateFormat.parse(date);
+            long between = DateUtil.between(parseDate, new Date(), DateUnit.SECOND);*/
+               String uuid="5591f2ea-b7bd-49c4-999a-9a1045edc717";
+           /* if(between>20){
+                jsonObject.put("code","200");
+                jsonObject.put("msg","浜岀淮鐮佸凡澶辨晥");
+                jsonObject.put("status","fail");
+
+            }else {*/
+
+                SystemUser currentUser = SpringMVCContextHolder.getCurrentUser();
+                FieldSetEntity fieldSetEntity = new FieldSetEntity();
+                fieldSetEntity.setTableName("product_oa_conference_sign");
+                fieldSetEntity.setValue("sign_user",currentUser.getUser_name());
+                fieldSetEntity.setValue("user_id",currentUser.getUser_id());
+                fieldSetEntity.setValue("org_level_uuid","00000000-0000-0000-0000-000000000000");
+                fieldSetEntity.setValue("organization",currentUser.getDept_uuid());
+                fieldSetEntity.setValue("organization_name",currentUser.getCurrentDept().getString("org_level_name"));
+                fieldSetEntity.setValue("sign_date",new Date());
+                fieldSetEntity.setValue("sign_status","宸茬鍒�");
+                fieldSetEntity.setValue("meeting_uuid",uuid);
+
+               // BaseUtil.createCreatorAndCreationTime(SpringMVCContextHolder.getCurrentUser(), fse);
+                baseDao.add(fieldSetEntity);
+                jsonObject.put("code","200");
+                jsonObject.put("msg","绛惧埌鎴愬姛");
+                jsonObject.put("status","sucess");
+           /* }*/
+      /*  }*/
+
+        return jsonObject.toString();
+    }
+
 
     /**
      * 浼氳瀹や娇鐢ㄦ儏鍐�
diff --git a/src/main/java/com/product/administration/service/ide/IConferenceManagerService.java b/src/main/java/com/product/administration/service/ide/IConferenceManagerService.java
index 0f785c7..389a4d8 100644
--- a/src/main/java/com/product/administration/service/ide/IConferenceManagerService.java
+++ b/src/main/java/com/product/administration/service/ide/IConferenceManagerService.java
@@ -7,6 +7,7 @@
 import com.product.core.exception.BaseException;
 
 import java.io.IOException;
+import java.text.ParseException;
 import java.util.HashMap;
 import java.util.List;
 
@@ -46,6 +47,10 @@
 
     void  CancelAndStart(FieldSetEntity fse)throws  BaseException;
 
+    String ConferenceSign(FieldSetEntity fse) throws BaseException, ParseException;
+
+
+
 
 
 

--
Gitblit v1.9.2