fix:报告细节调整
This commit is contained in:
@@ -36,9 +36,9 @@ public interface ReportDocumentMainMapper extends BaseMapperX<ReportDocumentMain
|
|||||||
wrapper.eqIfPresent(ReportDocumentMainDO::getFlowKey, reqVO.getFlowKey());
|
wrapper.eqIfPresent(ReportDocumentMainDO::getFlowKey, reqVO.getFlowKey());
|
||||||
wrapper.eqIfPresent(ReportDocumentMainDO::getFlowSerialNumber, reqVO.getFlowSerialNumber());
|
wrapper.eqIfPresent(ReportDocumentMainDO::getFlowSerialNumber, reqVO.getFlowSerialNumber());
|
||||||
wrapper.eqIfPresent(ReportDocumentMainDO::getCurrentNode, reqVO.getCurrentNode());
|
wrapper.eqIfPresent(ReportDocumentMainDO::getCurrentNode, reqVO.getCurrentNode());
|
||||||
wrapper.eqIfPresent(ReportDocumentMainDO::getDocumentCode, reqVO.getDocumentCode());
|
wrapper.likeIfPresent(ReportDocumentMainDO::getDocumentCode, reqVO.getDocumentCode());
|
||||||
wrapper.eqIfPresent(ReportDocumentMainDO::getDocumentType, reqVO.getDocumentType());
|
wrapper.eqIfPresent(ReportDocumentMainDO::getDocumentType, reqVO.getDocumentType());
|
||||||
wrapper.eqIfPresent(ReportDocumentMainDO::getDocumentTitle, reqVO.getDocumentTitle());
|
wrapper.likeIfPresent(ReportDocumentMainDO::getDocumentTitle, reqVO.getDocumentTitle());
|
||||||
wrapper.eqIfPresent(ReportDocumentMainDO::getDocumentConfig, reqVO.getDocumentConfig());
|
wrapper.eqIfPresent(ReportDocumentMainDO::getDocumentConfig, reqVO.getDocumentConfig());
|
||||||
wrapper.eqIfPresent(ReportDocumentMainDO::getDocumentSignature, reqVO.getDocumentSignature());
|
wrapper.eqIfPresent(ReportDocumentMainDO::getDocumentSignature, reqVO.getDocumentSignature());
|
||||||
wrapper.betweenIfPresent(ReportDocumentMainDO::getDocumentStartTime, reqVO.getDocumentStartTime());
|
wrapper.betweenIfPresent(ReportDocumentMainDO::getDocumentStartTime, reqVO.getDocumentStartTime());
|
||||||
|
|||||||
@@ -94,6 +94,9 @@ public class IWorkBizCallbackListener implements RocketMQListener<IWorkBizCallba
|
|||||||
|
|
||||||
LoginUser loginUser = new LoginUser();
|
LoginUser loginUser = new LoginUser();
|
||||||
loginUser.setId(jsonObject.getLong("qms_user_id"));
|
loginUser.setId(jsonObject.getLong("qms_user_id"));
|
||||||
|
loginUser.setVisitDeptId(jsonObject.getLong("qms_dept_id"));
|
||||||
|
loginUser.setVisitCompanyId(jsonObject.getLong("qms_company_id"));
|
||||||
|
loginUser.setId(jsonObject.getLong("qms_user_id"));
|
||||||
loginUser.setUserType(UserTypeEnum.ADMIN.getValue());
|
loginUser.setUserType(UserTypeEnum.ADMIN.getValue());
|
||||||
loginUser.setTenantId(jsonObject.getLong("qms_tenant_id"));
|
loginUser.setTenantId(jsonObject.getLong("qms_tenant_id"));
|
||||||
loginUser.setExpiresTime(LocalDateTime.now().plusHours(1));
|
loginUser.setExpiresTime(LocalDateTime.now().plusHours(1));
|
||||||
|
|||||||
@@ -64,7 +64,7 @@ import static com.zt.plat.module.qms.enums.QmsBpmConstant.BPM_CALLBACK_BEAN_NAME
|
|||||||
@Service("reportDocumentMainService")
|
@Service("reportDocumentMainService")
|
||||||
@Validated
|
@Validated
|
||||||
@Slf4j
|
@Slf4j
|
||||||
@DeptDataPermissionIgnore(enable = "true")
|
@DeptDataPermissionIgnore(enable = "false")
|
||||||
public class ReportDocumentMainServiceImpl implements ReportDocumentMainService, BMPCallbackInterface {
|
public class ReportDocumentMainServiceImpl implements ReportDocumentMainService, BMPCallbackInterface {
|
||||||
|
|
||||||
@Resource private ReportDocumentMainMapper reportDocumentMainMapper;
|
@Resource private ReportDocumentMainMapper reportDocumentMainMapper;
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ import com.zt.plat.framework.common.exception.ServiceException;
|
|||||||
import com.zt.plat.framework.common.pojo.CommonResult;
|
import com.zt.plat.framework.common.pojo.CommonResult;
|
||||||
import com.zt.plat.framework.common.pojo.PageResult;
|
import com.zt.plat.framework.common.pojo.PageResult;
|
||||||
import com.zt.plat.framework.common.util.object.BeanUtils;
|
import com.zt.plat.framework.common.util.object.BeanUtils;
|
||||||
|
import com.zt.plat.framework.datapermission.core.annotation.DeptDataPermissionIgnore;
|
||||||
import com.zt.plat.module.qms.common.dic.controller.vo.*;
|
import com.zt.plat.module.qms.common.dic.controller.vo.*;
|
||||||
import com.zt.plat.module.qms.common.dic.controller.vo.DictionaryBusinessPageReqVO;
|
import com.zt.plat.module.qms.common.dic.controller.vo.DictionaryBusinessPageReqVO;
|
||||||
import com.zt.plat.module.qms.common.dic.controller.vo.DictionaryBusinessRespVO;
|
import com.zt.plat.module.qms.common.dic.controller.vo.DictionaryBusinessRespVO;
|
||||||
@@ -42,6 +43,7 @@ import static com.zt.plat.module.qms.enums.ErrorCodeConstants.*;
|
|||||||
@Service
|
@Service
|
||||||
@Validated
|
@Validated
|
||||||
@Slf4j
|
@Slf4j
|
||||||
|
@DeptDataPermissionIgnore(enable = "false")
|
||||||
public class DictionaryBusinessServiceImpl implements DictionaryBusinessService {
|
public class DictionaryBusinessServiceImpl implements DictionaryBusinessService {
|
||||||
private int id_path_update_level_limit = 7;
|
private int id_path_update_level_limit = 7;
|
||||||
@Resource private DictionaryBusinessMapper dictionaryBusinessMapper;
|
@Resource private DictionaryBusinessMapper dictionaryBusinessMapper;
|
||||||
|
|||||||
Reference in New Issue
Block a user