|
@@ -1,5 +1,6 @@
|
|
|
package com.usky.oa.service.impl;
|
|
|
|
|
|
+import com.alibaba.fastjson.JSONObject;
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
|
|
|
import com.usky.common.core.exception.BusinessException;
|
|
@@ -15,7 +16,6 @@ import com.usky.system.domain.SysUser;
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
-import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
|
import java.time.LocalDateTime;
|
|
|
import java.time.format.DateTimeFormatter;
|
|
@@ -63,86 +63,74 @@ public class OaFbdDocumentServiceImpl extends AbstractCrudService<OaFbdDocumentM
|
|
|
private OaApprovalService oaApprovalService;
|
|
|
|
|
|
@Override
|
|
|
- public void add(OaFbdDocument oaFbdDocument) {
|
|
|
+ public void addOrUpDate(OaFbdDocument oaFbdDocument, JSONObject node) {
|
|
|
// 校验表单数据
|
|
|
validateDocument(oaFbdDocument);
|
|
|
|
|
|
- Long userId = SecurityUtils.getUserId();
|
|
|
- String username = SecurityUtils.getUsername();
|
|
|
- Long deptId = SecurityUtils.getLoginUser().getSysUser().getDeptId();
|
|
|
- Integer tenantId = SecurityUtils.getTenantId();
|
|
|
-
|
|
|
- DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyMMddHHmmss");
|
|
|
- LocalDateTime now = LocalDateTime.now();
|
|
|
- String formattedDate = now.format(formatter);
|
|
|
-
|
|
|
- LambdaQueryWrapper<OaFormDefinition> queryWrapper = Wrappers.lambdaQuery();
|
|
|
- queryWrapper.select(OaFormDefinition::getFormSign).eq(OaFormDefinition::getId, oaFbdDocument.getFormId());
|
|
|
- OaFormDefinition oaFormDefinition = oaFormDefinitionMapper.selectOne(queryWrapper);
|
|
|
- String sign = oaFormDefinition.getFormSign();
|
|
|
- String docNo = sign + "-" + formattedDate;
|
|
|
-
|
|
|
- // 插入发布表数据
|
|
|
- oaFbdDocument.setDocNo(docNo);
|
|
|
- oaFbdDocument.setProposer(userId);
|
|
|
- oaFbdDocument.setCreateBy(username);
|
|
|
- oaFbdDocument.setCreateTime(now);
|
|
|
- oaFbdDocument.setDeptId(deptId);
|
|
|
- oaFbdDocument.setTenantId(tenantId);
|
|
|
- oaFbdDocumentMapper.insert(oaFbdDocument);
|
|
|
-
|
|
|
- // 插入单据表数据
|
|
|
- OaDocument oaDocument = new OaDocument();
|
|
|
- oaDocument.setFormId(oaFbdDocument.getFormId());
|
|
|
- oaDocument.setType(sign);
|
|
|
- oaDocument.setDocNo(docNo);
|
|
|
- oaDocument.setProposer(userId);
|
|
|
- oaDocument.setDocStatus(oaFbdDocument.getDocStatus());
|
|
|
- oaDocument.setCreateBy(username);
|
|
|
- oaDocument.setCreateTime(oaFbdDocument.getCreateTime());
|
|
|
- oaDocument.setDeptId(deptId);
|
|
|
- oaDocument.setTenantId(tenantId);
|
|
|
- oaDocumentMapper.insert(oaDocument);
|
|
|
-
|
|
|
- // 插入审批表数据,第一条审批记录
|
|
|
- if (oaFbdDocument.getDocStatus().equals(1)) {
|
|
|
- getOaApproval(oaFbdDocument);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- // 更新发布表数据
|
|
|
- //@Transactional(rollbackFor = Exception.class)
|
|
|
- @Transactional
|
|
|
- @Override
|
|
|
- public void update(OaFbdDocument oaFbdDocument) {
|
|
|
- // 验证文档
|
|
|
- validateDocument(oaFbdDocument);
|
|
|
-
|
|
|
- // 获取当前用户和时间
|
|
|
String username = SecurityUtils.getUsername();
|
|
|
LocalDateTime now = LocalDateTime.now();
|
|
|
Integer tenantId = SecurityUtils.getTenantId();
|
|
|
-
|
|
|
- // 设置更新信息
|
|
|
- oaFbdDocument.setUpdateBy(username);
|
|
|
- oaFbdDocument.setUpdateTime(now);
|
|
|
-
|
|
|
- // 更新发布表数据
|
|
|
- oaFbdDocumentMapper.updateById(oaFbdDocument);
|
|
|
-
|
|
|
- // 更新总单据状态
|
|
|
- oaDocumentMapper.update(null, Wrappers.lambdaUpdate(OaDocument.class)
|
|
|
- .eq(OaDocument::getDocNo, oaFbdDocument.getDocNo())
|
|
|
- .set(OaDocument::getDocStatus, oaFbdDocument.getDocStatus())
|
|
|
- .set(OaDocument::getUpdateBy, username)
|
|
|
- .set(OaDocument::getUpdateTime, now)
|
|
|
- );
|
|
|
-
|
|
|
- // 如果文档状态为1,创建并插入审批记录
|
|
|
- if (oaFbdDocument.getDocStatus() == 1) {
|
|
|
- OaFbdDocument updatedDocument = oaFbdDocumentMapper.selectById(oaFbdDocument.getId());
|
|
|
- getOaApproval(updatedDocument);
|
|
|
+ String sign = null;
|
|
|
+
|
|
|
+ if (oaFbdDocument.getId() == null) {
|
|
|
+ // 插入操作
|
|
|
+ Long userId = SecurityUtils.getUserId();
|
|
|
+ Long deptId = SecurityUtils.getLoginUser().getSysUser().getDeptId();
|
|
|
+
|
|
|
+ DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyMMddHHmmss");
|
|
|
+ String formattedDate = now.format(formatter);
|
|
|
+
|
|
|
+ LambdaQueryWrapper<OaFormDefinition> queryWrapper = Wrappers.lambdaQuery();
|
|
|
+ queryWrapper.select(OaFormDefinition::getFormSign).eq(OaFormDefinition::getId, oaFbdDocument.getFormId());
|
|
|
+ OaFormDefinition oaFormDefinition = oaFormDefinitionMapper.selectOne(queryWrapper);
|
|
|
+ sign = oaFormDefinition.getFormSign();
|
|
|
+ String docNo = sign + "-" + formattedDate;
|
|
|
+
|
|
|
+ oaFbdDocument.setDocNo(docNo);
|
|
|
+ oaFbdDocument.setProposer(userId);
|
|
|
+ oaFbdDocument.setCreateBy(username);
|
|
|
+ oaFbdDocument.setCreateTime(now);
|
|
|
+ oaFbdDocument.setDeptId(deptId);
|
|
|
+ oaFbdDocument.setTenantId(tenantId);
|
|
|
+ oaFbdDocumentMapper.insert(oaFbdDocument);
|
|
|
+
|
|
|
+ // 插入单据表数据
|
|
|
+ OaDocument oaDocument = new OaDocument();
|
|
|
+ oaDocument.setFormId(oaFbdDocument.getFormId());
|
|
|
+ oaDocument.setType(sign);
|
|
|
+ oaDocument.setDocNo(docNo);
|
|
|
+ oaDocument.setProposer(userId);
|
|
|
+ oaDocument.setDocStatus(oaFbdDocument.getDocStatus());
|
|
|
+ oaDocument.setCreateBy(username);
|
|
|
+ oaDocument.setCreateTime(now);
|
|
|
+ oaDocument.setDeptId(deptId);
|
|
|
+ oaDocument.setTenantId(tenantId);
|
|
|
+ oaDocumentMapper.insert(oaDocument);
|
|
|
+
|
|
|
+ if (oaFbdDocument.getDocStatus().equals(1)) {
|
|
|
+ getOaApproval(oaFbdDocument);
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ // 更新操作
|
|
|
+ oaFbdDocument.setUpdateBy(username);
|
|
|
+ oaFbdDocument.setUpdateTime(now);
|
|
|
+ oaFbdDocumentMapper.updateById(oaFbdDocument);
|
|
|
+
|
|
|
+ oaDocumentMapper.update(null, Wrappers.lambdaUpdate(OaDocument.class)
|
|
|
+ .eq(OaDocument::getDocNo, oaFbdDocument.getDocNo())
|
|
|
+ .set(OaDocument::getDocStatus, oaFbdDocument.getDocStatus())
|
|
|
+ .set(OaDocument::getUpdateBy, username)
|
|
|
+ .set(OaDocument::getUpdateTime, now)
|
|
|
+ );
|
|
|
+
|
|
|
+ if (oaFbdDocument.getDocStatus() == 1) {
|
|
|
+ OaFbdDocument updatedDocument = oaFbdDocumentMapper.selectById(oaFbdDocument.getId());
|
|
|
+ getOaApproval(updatedDocument);
|
|
|
+ }
|
|
|
+
|
|
|
+ sign = oaFbdDocumentMapper.selectById(oaFbdDocument.getId()).getDocNo().split("-")[0];
|
|
|
}
|
|
|
+ oaApprovalGeneration.nodeSave(node, sign);
|
|
|
}
|
|
|
|
|
|
// 获取审批表数据
|
|
@@ -157,8 +145,6 @@ public class OaFbdDocumentServiceImpl extends AbstractCrudService<OaFbdDocumentM
|
|
|
|
|
|
switch (oaNode.getNodeScope()) {
|
|
|
case 0:
|
|
|
- case 1:
|
|
|
- case 2:
|
|
|
userIds = Arrays.stream(oaNode.getProposer().split(",")).map(Long::parseLong).collect(Collectors.toList());
|
|
|
break;
|
|
|
case 3:
|