|
@@ -3,6 +3,7 @@ package com.gree.mall.miniapp.logic.policy;
|
|
|
import cn.hutool.core.bean.BeanUtil;
|
|
|
import cn.hutool.core.collection.CollectionUtil;
|
|
|
import cn.hutool.core.date.DateUtil;
|
|
|
+import cn.hutool.core.util.StrUtil;
|
|
|
import com.baomidou.mybatisplus.core.toolkit.IdWorker;
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
import com.gree.mall.miniapp.bean.PayDetail;
|
|
@@ -11,9 +12,9 @@ import com.gree.mall.miniapp.bean.policy.PolicyOrderDetail;
|
|
|
import com.gree.mall.miniapp.bean.policy.WorkerRemind;
|
|
|
import com.gree.mall.miniapp.bean.user.CurrentCompanyWechat;
|
|
|
import com.gree.mall.miniapp.enums.ExamineWorkerStatusEnum;
|
|
|
-import com.gree.mall.miniapp.enums.IsEnum;
|
|
|
import com.gree.mall.miniapp.enums.IsYesNoEnum;
|
|
|
import com.gree.mall.miniapp.enums.PolicyOrderStutasEnum;
|
|
|
+import com.gree.mall.miniapp.enums.UserTypeEnum;
|
|
|
import com.gree.mall.miniapp.exception.RemoteServiceException;
|
|
|
import com.gree.mall.miniapp.logic.common.CommonLogic;
|
|
|
import com.gree.mall.miniapp.logic.common.outside.WechatLogic;
|
|
@@ -21,11 +22,16 @@ import com.gree.mall.miniapp.plus.entity.*;
|
|
|
import com.gree.mall.miniapp.plus.service.*;
|
|
|
import com.gree.mall.miniapp.utils.IpUtil;
|
|
|
import com.gree.mall.miniapp.utils.StringUtil;
|
|
|
+import com.gree.mall.miniapp.utils.ocr.OCRUtil;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
import org.springframework.util.CollectionUtils;
|
|
|
+import org.springframework.web.multipart.MultipartFile;
|
|
|
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
+import java.io.ByteArrayInputStream;
|
|
|
+import java.io.ByteArrayOutputStream;
|
|
|
+import java.io.InputStream;
|
|
|
import java.math.BigDecimal;
|
|
|
import java.util.ArrayList;
|
|
|
import java.util.Date;
|
|
@@ -75,6 +81,9 @@ public class WorkerLogic {
|
|
|
@Autowired
|
|
|
MailboxService mailboxService;
|
|
|
|
|
|
+ @Autowired
|
|
|
+ OCRUtil ocrUtil;
|
|
|
+
|
|
|
|
|
|
|
|
|
public List<WorkerRemind> remind() {
|
|
@@ -604,4 +613,34 @@ public class WorkerLogic {
|
|
|
}
|
|
|
return new ArrayList<>();
|
|
|
}
|
|
|
+
|
|
|
+ public Boolean ocrHandwriting(MultipartFile joinFile, MultipartFile signFile, String type) throws Exception {
|
|
|
+ CurrentCompanyWechat currentCompanyWechat = commonLogic.getCurrentCompanyWechat();
|
|
|
+ final User user = currentCompanyWechat.getUser();
|
|
|
+ if (!user.getType().equals(UserTypeEnum.WORKER.getKey())) {
|
|
|
+ throw new RemoteServiceException("非“师傅”类型账号, 操作失败");
|
|
|
+ }
|
|
|
+ final InputStream inputStream = signFile.getInputStream();
|
|
|
+ ByteArrayOutputStream baos = new ByteArrayOutputStream();
|
|
|
+ byte[] buffer = new byte[1024];
|
|
|
+ int length = 0;
|
|
|
+ while ((length = inputStream.read(buffer)) != -1) {
|
|
|
+ baos.write(buffer, 0, length);
|
|
|
+ }
|
|
|
+ inputStream.close();
|
|
|
+ baos.close();
|
|
|
+ final String name = ocrUtil.handwritingORC(new ByteArrayInputStream(baos.toByteArray()));
|
|
|
+ if (!StrUtil.equals(name, user.getNickName().replace(" ", ""))) {
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ final CommonFile commonFile = commonLogic.uploadFile(joinFile);
|
|
|
+
|
|
|
+ userService.lambdaUpdate()
|
|
|
+ .set(type.equals("gz"), User::getWorkerSignGz, commonFile.getUrl())
|
|
|
+ .set(type.equals("fs"), User::getWorkerSignFs, commonFile.getUrl())
|
|
|
+ .eq(User::getUserId, user.getUserId())
|
|
|
+ .update();
|
|
|
+
|
|
|
+ return true;
|
|
|
+ }
|
|
|
}
|