feat: 项目导出 + 会议跳转 + 机构软删除 + 供应商账号同步

- 项目/项目评价/报名专家 3 类导出, 勾选透传 projectIds
- 项目列表 总场次/已执行/未执行 三列点击跳对应会议列表 (executor 复用后端 role 隔离)
- 机构软删除 + 级联软删机构下账号
- 供应商开放接口账号同步

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
郭庆泰
2026-08-30 10:42:35 +08:00
co-authored by Claude
parent 1876601ba7
commit f4d8bc1463
25 changed files with 880 additions and 171 deletions
@@ -14,9 +14,11 @@ import com.ruoyi.common.enums.BusinessType;
import com.ruoyi.common.utils.SecurityUtils;
import com.ruoyi.common.utils.poi.ExcelUtil;
import com.ruoyi.system.mapper.SysUserMapper;
import com.ruoyi.business.domain.BizExpert;
import com.ruoyi.business.domain.BizExecutionIntent;
import com.ruoyi.business.domain.BizProject;
import com.ruoyi.business.domain.vo.BizSignupExpertExportVo;
import com.ruoyi.business.service.IBizExpertService;
import com.ruoyi.business.service.IBizExecutionIntentService;
import com.ruoyi.business.service.IBizProjectService;
@@ -33,6 +35,8 @@ public class BizExecutionIntentController extends BaseController
private IBizExecutionIntentService bizExecutionIntentService;
@Autowired
private IBizProjectService bizProjectService;
@Autowired
private IBizExpertService bizExpertService;
/**
* 公开门户点击"立即报名" — 写入意向 (user_id = 当前登录用户)
@@ -140,12 +144,31 @@ public class BizExecutionIntentController extends BaseController
List<BizSignupExpertExportVo> exportList = new ArrayList<>(list.size());
for (BizExecutionIntent e : list) {
BizSignupExpertExportVo v = new BizSignupExpertExportVo();
v.setProjectNo(e.getProjectNo());
v.setProjectName(e.getProjectName());
v.setName(e.getName());
v.setDepartment(e.getDepartment());
v.setWorkUnit(e.getWorkUnit());
v.setPosition(e.getPosition());
v.setPhone(e.getPhone());
v.setCreateTime(e.getCreateTime());
// 医生档案: 报名专家 userId → biz_expert (科室/医院/职称 报名表常为空, 从档案兜底补全)
BizExpert expert = e.getUserId() != null ? bizExpertService.getByUserId(e.getUserId()) : null;
String department = e.getDepartment();
String workUnit = e.getWorkUnit();
String position = e.getPosition();
if (expert != null) {
if (department == null || department.isEmpty()) department = expert.getDepartment();
if (workUnit == null || workUnit.isEmpty()) workUnit = expert.getWorkUnit();
if (position == null || position.isEmpty()) position = expert.getTitle();
v.setRegion(expert.getRegion());
v.setIdCard(expert.getIdCard());
v.setBankCard(expert.getBankCard());
v.setBankName(expert.getBankName());
v.setBankBranch(expert.getBankBranch());
v.setBankRegion(expert.getBankRegion());
v.setBankAddress(expert.getBankAddress());
}
v.setDepartment(department);
v.setWorkUnit(workUnit);
v.setPosition(position);
exportList.add(v);
}
ExcelUtil<BizSignupExpertExportVo> util = new ExcelUtil<>(BizSignupExpertExportVo.class);
@@ -9,6 +9,7 @@ import com.ruoyi.common.annotation.Log;
import com.ruoyi.common.core.controller.BaseController;
import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.common.enums.BusinessType;
import com.ruoyi.common.exception.ServiceException;
import com.ruoyi.common.utils.SecurityUtils;
import com.ruoyi.common.utils.poi.ExcelUtil;
import com.ruoyi.business.domain.BizMeeting;
@@ -93,6 +94,8 @@ public class BizMeetingAttendeeController extends BaseController {
@Log(title = "参会人", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody BizMeetingAttendee body) {
// 参会人名单写操作拦截: executor 劳务提交后禁止 (新增)
checkAttendeeEditable(body.getMeetingId());
Long attendeeId = attendeeService.insertByPhoneWithProfile(body);
// 人员变化 → 立即重算劳务费 (不碰会务费/不置统计中)
bizMeetingService.recomputeLaborFee(body.getMeetingId());
@@ -111,6 +114,8 @@ public class BizMeetingAttendeeController extends BaseController {
return error("id 不能为空");
}
BizMeetingAttendee before = attendeeService.selectById(body.getId());
// 参会人名单写操作拦截: executor 劳务提交后禁止 (编辑)
checkAttendeeEditable(before != null ? before.getMeetingId() : null);
body.setUpdateBy(SecurityUtils.getUsername());
int rows = attendeeService.updateProfile(body);
// 人员变化 → 立即重算劳务费 (不碰会务费/不置统计中)
@@ -128,6 +133,8 @@ public class BizMeetingAttendeeController extends BaseController {
@DeleteMapping("/{id}")
public AjaxResult remove(@PathVariable("id") Long id) {
BizMeetingAttendee before = attendeeService.selectById(id);
// 参会人名单写操作拦截: executor 劳务提交后禁止 (删除)
checkAttendeeEditable(before != null ? before.getMeetingId() : null);
int rows = attendeeService.deleteByPrimaryKey(id);
// 人员变化 → 立即重算劳务费 (不碰会务费/不置统计中)
if (before != null) {
@@ -192,6 +199,8 @@ public class BizMeetingAttendeeController extends BaseController {
@PostMapping("/importData")
public AjaxResult importData(@RequestParam("file") MultipartFile file,
@RequestParam("meetingId") Long meetingId) throws Exception {
// 参会人名单写操作拦截: executor 劳务提交后禁止 (导入)
checkAttendeeEditable(meetingId);
// 解析 + 入库 (邀请参会已改为手动, 不再自动推"会议邀请", 由前端"邀请参会"按钮触发)
ImportResult result = attendeeService.importFromExcel(file, meetingId, SecurityUtils.getUsername());
// 人员变化 → 立即重算劳务费 (有成功导入才需重算)
@@ -299,4 +308,20 @@ public class BizMeetingAttendeeController extends BaseController {
return success(updated);
}
/**
* 参会人名单写操作拦截: executor 在劳务提交后 (labor_audit_stage 非 NOT_SUBMITTED/REJECTED) 禁止新增/导入/编辑/删除.
* 退回 (REJECTED) 视为可重新编辑, 与前端 laborEditable 口径一致; manager/admin 不受限.
*/
private void checkAttendeeEditable(Long meetingId) {
if (meetingId == null) return;
String roleType = SecurityUtils.getLoginUser().getUser().getRoleType();
if (!"executor".equals(roleType)) return;
BizMeeting m = bizMeetingService.getById(meetingId);
if (m == null) return;
String stage = m.getLaborAuditStage();
if (stage != null && !"NOT_SUBMITTED".equals(stage) && !"REJECTED".equals(stage)) {
throw new ServiceException("劳务已提交, 不能修改参会人");
}
}
}
@@ -1,5 +1,6 @@
package com.ruoyi.business.controller;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Date;
@@ -187,6 +188,8 @@ public class BizMeetingController extends BaseController {
bizMeeting.setTotalPeriods(proj.getTotalSessions());
}
bizMeeting.setProjectForm(proj.getProjectForm());
// 会议时间区间必须在项目起止时间区间内 (闭区间; 项目未设起止则跳过对应边界)
validateMeetingWithinProject(bizMeeting, proj);
}
}
int rows = bizMeetingService.insert(bizMeeting);
@@ -198,6 +201,19 @@ public class BizMeetingController extends BaseController {
return toAjax(rows);
}
/** 会议时间区间必须在项目起止时间区间内 (闭区间, 等于允许); 项目未设起止则跳过对应边界. */
private void validateMeetingWithinProject(BizMeeting meeting, BizProject proj) {
SimpleDateFormat fmt = new SimpleDateFormat("yyyy-MM-dd HH:mm");
if (meeting.getStartTime() != null && proj.getStartTime() != null
&& meeting.getStartTime().before(proj.getStartTime())) {
throw new ServiceException("会议开始时间不能早于项目开始时间 " + fmt.format(proj.getStartTime()));
}
if (meeting.getEndTime() != null && proj.getEndTime() != null
&& meeting.getEndTime().after(proj.getEndTime())) {
throw new ServiceException("会议结束时间不能晚于项目结束时间 " + fmt.format(proj.getEndTime()));
}
}
@Log(title = "会议", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody BizMeeting bizMeeting) {
@@ -234,6 +250,8 @@ public class BizMeetingController extends BaseController {
BizProject proj = bizProjectService.getById(bizMeeting.getProjectId());
if (proj != null) {
bizMeeting.setProjectForm(proj.getProjectForm());
// 会议时间区间必须在项目起止时间区间内 (闭区间; 项目未设起止则跳过对应边界)
validateMeetingWithinProject(bizMeeting, proj);
}
}
int rows = bizMeetingService.updateByPrimaryKey(bizMeeting);
@@ -576,8 +594,14 @@ public class BizMeetingController extends BaseController {
List<BizMeetingMaterial> existingMaterials = bizMeetingMaterialService.selectByMeetingId(meetingId);
boolean hasLv = existingMaterials != null && existingMaterials.stream().anyMatch(v -> "LV_PAYMENT".equals(v.getSubType()) && v.getOssUrl() != null && !v.getOssUrl().isEmpty());
boolean hasSv = existingMaterials != null && existingMaterials.stream().anyMatch(v -> "SV_PAYMENT".equals(v.getSubType()) && v.getOssUrl() != null && !v.getOssUrl().isEmpty());
if (!hasLv || !hasSv) {
throw new ServiceException("请先上传付款凭证");
if (!hasLv && !hasSv) {
throw new ServiceException("请先上传劳务凭证与会务凭证");
}
if (!hasLv) {
throw new ServiceException("请先上传劳务凭证");
}
if (!hasSv) {
throw new ServiceException("请先上传会务凭证");
}
m.setIsSettled(1);
@@ -9,6 +9,7 @@ import java.util.Map;
import java.util.Objects;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import jakarta.servlet.http.HttpServletResponse;
import com.ruoyi.common.annotation.Log;
import com.ruoyi.common.core.controller.BaseController;
import com.ruoyi.common.core.domain.AjaxResult;
@@ -16,11 +17,17 @@ import com.ruoyi.common.core.page.TableDataInfo;
import com.ruoyi.common.enums.BusinessType;
import com.ruoyi.common.exception.ServiceException;
import com.ruoyi.common.utils.SecurityUtils;
import com.ruoyi.common.utils.poi.ExcelUtil;
import com.ruoyi.business.domain.BizExpert;
import com.ruoyi.business.domain.BizExecutionIntent;
import com.ruoyi.business.domain.BizOrg;
import com.ruoyi.business.domain.BizProject;
import com.ruoyi.business.domain.BizProjectAssign;
import com.ruoyi.business.domain.BizProjectRating;
import com.ruoyi.business.domain.vo.BizProjectExportVo;
import com.ruoyi.business.domain.vo.BizProjectRatingExportVo;
import com.ruoyi.business.domain.vo.BizSignupExpertExportVo;
import com.ruoyi.business.service.IBizExpertService;
import com.ruoyi.business.service.IBizOrgService;
import com.ruoyi.business.service.IBizProjectService;
import com.ruoyi.business.service.IBizExecutionIntentService;
@@ -66,6 +73,8 @@ public class BizProjectController extends BaseController
private SysUserMapper sysUserMapper;
@Autowired
private IBizOrgService bizOrgService;
@Autowired
private IBizExpertService bizExpertService;
/**
* 我报名的项目 (当前用户在 biz_execution_intent 里有意向的项目)
@@ -616,4 +625,159 @@ public class BizProjectController extends BaseController
ajax.put("errors", errors);
return ajax;
}
// ============== 导出 (后端 ExcelUtil 写 .xlsx, 跟随当前筛选) ==============
/**
* 导出项目列表 (跟随当前筛选条件, 与 list() 同一口径, 无 startPage 全量导出)
* POST /business/project/export
* admin 导出全部; manager 只导出本人创建的 (与 list 一致)
*/
@Log(title = "导出项目", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, BizProject bizProject)
{
applyManagerScope(bizProject);
List<BizProject> list = bizProjectService.selectList(bizProject);
List<BizProjectExportVo> exportList = new ArrayList<>(list.size());
for (BizProject p : list) {
BizProjectExportVo v = new BizProjectExportVo();
v.setProjectNo(p.getProjectNo());
v.setProjectName(p.getProjectName());
v.setTotalSessions(p.getTotalSessions());
v.setDoneSessions(p.getDoneSessions());
v.setTodoSessions(p.getTodoSessions());
v.setTotalAmount(p.getTotalAmount());
v.setAvailableAmount(p.getAvailableAmount());
v.setPaidLaborAmount(p.getPaidLaborAmount());
v.setPaidMeetingAmount(p.getPaidMeetingAmount());
v.setManagerScore(p.getManagerScore());
v.setSponsorScore(p.getSponsorScore());
v.setSponsorOrgName(p.getSponsorOrgName());
v.setExecOrgNames(p.getExecOrgNames());
v.setProjectForm(p.getProjectForm());
v.setIsFinished("1".equals(p.getIsFinished()) ? "已结题" : "未结题");
v.setStartTime(p.getStartTime());
v.setEndTime(p.getEndTime());
exportList.add(v);
}
ExcelUtil<BizProjectExportVo> util = new ExcelUtil<>(BizProjectExportVo.class);
util.exportExcel(response, exportList, "项目列表");
}
/**
* 导出项目评价 (4 维度评分明细, 跟随当前筛选的项目范围)
* POST /business/project/ratingExport
* 先按筛选取项目 → 收集 projectId → 查 biz_project_rating 明细
*/
@Log(title = "导出项目评价", businessType = BusinessType.EXPORT)
@PostMapping("/ratingExport")
public void exportRating(HttpServletResponse response, BizProject bizProject)
{
applyManagerScope(bizProject);
List<BizProject> projects = bizProjectService.selectList(bizProject);
// projectId → project 反查表 (评分明细表 project_no/project_name 可能为空, 用主表补齐)
Map<Long, BizProject> projectById = new HashMap<>();
List<Long> projectIds = new ArrayList<>();
for (BizProject p : projects) {
if (p.getProjectId() != null) {
projectIds.add(p.getProjectId());
projectById.put(p.getProjectId(), p);
}
}
List<BizProjectRating> ratings = new ArrayList<>();
if (!projectIds.isEmpty()) {
BizProjectRating q = new BizProjectRating();
q.getParams().put("projectIds", projectIds);
ratings = bizProjectRatingService.selectList(q);
}
List<BizProjectRatingExportVo> exportList = new ArrayList<>(ratings.size());
for (BizProjectRating r : ratings) {
BizProject p = projectById.get(r.getProjectId());
BizProjectRatingExportVo v = new BizProjectRatingExportVo();
v.setProjectNo(p != null ? p.getProjectNo() : r.getProjectNo());
v.setProjectName(p != null ? p.getProjectName() : r.getProjectName());
v.setRaterRole("sponsor".equals(r.getRaterRole()) ? "支持方" : "合规管理员");
v.setQualityScore(r.getQualityScore());
v.setResponseScore(r.getResponseScore());
v.setCooperationScore(r.getCooperationScore());
v.setComplianceScore(r.getComplianceScore());
v.setCreateTime(r.getCreateTime());
exportList.add(v);
}
ExcelUtil<BizProjectRatingExportVo> util = new ExcelUtil<>(BizProjectRatingExportVo.class);
util.exportExcel(response, exportList, "项目评价");
}
/**
* 导出已报名专家 (跟随当前筛选的项目范围, 仅 manager)
* POST /business/project/signupExpertExport
* 先按筛选取项目 → 收集 projectNo → 查 biz_execution_intent 报名专家
*/
@Log(title = "导出报名专家", businessType = BusinessType.EXPORT)
@PostMapping("/signupExpertExport")
public void exportSignupExpert(HttpServletResponse response, BizProject bizProject)
{
String roleType = SecurityUtils.getLoginUser().getUser().getRoleType();
if (!"manager".equals(roleType)) {
throw new ServiceException("只有合规管理员可导出报名专家");
}
applyManagerScope(bizProject);
List<BizProject> projects = bizProjectService.selectList(bizProject);
List<String> projectNos = new ArrayList<>();
for (BizProject p : projects) {
if (p.getProjectNo() != null && !p.getProjectNo().isEmpty()) projectNos.add(p.getProjectNo());
}
List<BizExecutionIntent> intents = new ArrayList<>();
if (!projectNos.isEmpty()) {
BizExecutionIntent q = new BizExecutionIntent();
q.getParams().put("projectNos", projectNos);
intents = bizExecutionIntentService.selectList(q);
}
List<BizSignupExpertExportVo> exportList = new ArrayList<>(intents.size());
for (BizExecutionIntent e : intents) {
BizSignupExpertExportVo v = new BizSignupExpertExportVo();
v.setProjectNo(e.getProjectNo());
v.setProjectName(e.getProjectName());
v.setName(e.getName());
v.setPhone(e.getPhone());
v.setCreateTime(e.getCreateTime());
// 医生档案: 报名专家 userId → biz_expert (科室/医院/职称 报名表常为空, 从档案兜底补全)
BizExpert expert = e.getUserId() != null ? bizExpertService.getByUserId(e.getUserId()) : null;
String department = e.getDepartment();
String workUnit = e.getWorkUnit();
String position = e.getPosition();
if (expert != null) {
if (department == null || department.isEmpty()) department = expert.getDepartment();
if (workUnit == null || workUnit.isEmpty()) workUnit = expert.getWorkUnit();
if (position == null || position.isEmpty()) position = expert.getTitle();
v.setRegion(expert.getRegion());
v.setIdCard(expert.getIdCard());
v.setBankCard(expert.getBankCard());
v.setBankName(expert.getBankName());
v.setBankBranch(expert.getBankBranch());
v.setBankRegion(expert.getBankRegion());
v.setBankAddress(expert.getBankAddress());
}
v.setDepartment(department);
v.setWorkUnit(workUnit);
v.setPosition(position);
exportList.add(v);
}
ExcelUtil<BizSignupExpertExportVo> util = new ExcelUtil<>(BizSignupExpertExportVo.class);
util.exportExcel(response, exportList, "报名专家");
}
/** 与 list() 一致的导出数据范围: manager 只看本人创建的项目; 勾选时按 projectIds 过滤 */
private void applyManagerScope(BizProject bizProject)
{
String roleType = SecurityUtils.getLoginUser().getUser().getRoleType();
if ("manager".equals(roleType)) {
bizProject.getParams().put("createUserId", SecurityUtils.getUserId());
}
// 勾选的项目: 前端勾选时传 projectIds, 转 params.projectIds 做 IN 过滤
if (bizProject.getProjectIds() != null && !bizProject.getProjectIds().isEmpty()) {
bizProject.getParams().put("projectIds", bizProject.getProjectIds());
}
}
}
@@ -50,6 +50,10 @@ public class BizOrg extends BaseEntity {
/** update_time */
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date updateTime;
/** del_flag 删除标志 0正常 1删除 */
private String delFlag;
/** is_synced 同步来源标记 0注册 1供应商同步 */
private Integer isSynced;
public Long getOrgId() { return orgId; }
public void setOrgId(Long orgId) { this.orgId = orgId; }
@@ -77,4 +81,8 @@ public class BizOrg extends BaseEntity {
public void setCreateTime(Date createTime) { this.createTime = createTime; }
public Date getUpdateTime() { return updateTime; }
public void setUpdateTime(Date updateTime) { this.updateTime = updateTime; }
public String getDelFlag() { return delFlag; }
public void setDelFlag(String delFlag) { this.delFlag = delFlag; }
public Integer getIsSynced() { return isSynced; }
public void setIsSynced(Integer isSynced) { this.isSynced = isSynced; }
}
@@ -56,6 +56,8 @@ public class BizProject extends BaseEntity {
private String sponsorAdminUserName;
/** 支持单位名称 (列表展示列, JOIN biz_org 取 org_name, org_type='sponsor') */
private String sponsorOrgName;
/** 项目ID筛选 (导出时勾选项目透传, IN 查询) */
private List<Long> projectIds;
/** 支持单位筛选 (biz_org.org_id 列表, IN 查询, 多选 select 透传) */
private List<Long> sponsorOrgIds;
/** 服务机构名称列表, 多个用英文逗号连接 (GROUP_CONCAT 派生, 不入库, 仅展示) */
@@ -181,6 +183,8 @@ public class BizProject extends BaseEntity {
public void setSponsorAdminUserName(String sponsorAdminUserName) { this.sponsorAdminUserName = sponsorAdminUserName; }
public String getSponsorOrgName() { return sponsorOrgName; }
public void setSponsorOrgName(String sponsorOrgName) { this.sponsorOrgName = sponsorOrgName; }
public List<Long> getProjectIds() { return projectIds; }
public void setProjectIds(List<Long> projectIds) { this.projectIds = projectIds; }
public List<Long> getSponsorOrgIds() { return sponsorOrgIds; }
public void setSponsorOrgIds(List<Long> sponsorOrgIds) { this.sponsorOrgIds = sponsorOrgIds; }
public String getExecOrgNames() { return execOrgNames; }
@@ -0,0 +1,105 @@
package com.ruoyi.business.domain.vo;
import java.math.BigDecimal;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.common.annotation.Excel;
/**
* 项目列表导出 VO (中文列头, 与 manager/Projects.vue 列表列一致)
*
* <p>数据源: BizProject.selectList 派生字段 (含会议子查询聚合列).
* 仅用于 Excel 导出, 不参与业务逻辑.
*
* @author guoju
*/
public class BizProjectExportVo {
@Excel(name = "项目编号", sort = 1)
private String projectNo;
@Excel(name = "项目名称", sort = 2)
private String projectName;
@Excel(name = "总场次/总期数", sort = 3)
private Long totalSessions;
@Excel(name = "已执行", sort = 4)
private Long doneSessions;
@Excel(name = "未执行", sort = 5)
private Long todoSessions;
@Excel(name = "总金额", sort = 6)
private BigDecimal totalAmount;
@Excel(name = "可用金额", sort = 7)
private BigDecimal availableAmount;
@Excel(name = "已支付劳务费", sort = 8)
private BigDecimal paidLaborAmount;
@Excel(name = "已支付会务费", sort = 9)
private BigDecimal paidMeetingAmount;
@Excel(name = "执行单位评分(合规)", sort = 10)
private BigDecimal managerScore;
@Excel(name = "执行单位评分(支持)", sort = 11)
private BigDecimal sponsorScore;
@Excel(name = "支持单位", sort = 12)
private String sponsorOrgName;
@Excel(name = "服务机构", sort = 13)
private String execOrgNames;
@Excel(name = "项目形式", sort = 14)
private String projectForm;
@Excel(name = "是否结题", sort = 15)
private String isFinished;
@Excel(name = "项目开始时间", sort = 16, dateFormat = "yyyy-MM-dd HH:mm:ss")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date startTime;
@Excel(name = "项目结束时间", sort = 17, dateFormat = "yyyy-MM-dd HH:mm:ss")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date endTime;
public String getProjectNo() { return projectNo; }
public void setProjectNo(String projectNo) { this.projectNo = projectNo; }
public String getProjectName() { return projectName; }
public void setProjectName(String projectName) { this.projectName = projectName; }
public Long getTotalSessions() { return totalSessions; }
public void setTotalSessions(Long totalSessions) { this.totalSessions = totalSessions; }
public Long getDoneSessions() { return doneSessions; }
public void setDoneSessions(Long doneSessions) { this.doneSessions = doneSessions; }
public Long getTodoSessions() { return todoSessions; }
public void setTodoSessions(Long todoSessions) { this.todoSessions = todoSessions; }
public BigDecimal getTotalAmount() { return totalAmount; }
public void setTotalAmount(BigDecimal totalAmount) { this.totalAmount = totalAmount; }
public BigDecimal getAvailableAmount() { return availableAmount; }
public void setAvailableAmount(BigDecimal availableAmount) { this.availableAmount = availableAmount; }
public BigDecimal getPaidLaborAmount() { return paidLaborAmount; }
public void setPaidLaborAmount(BigDecimal paidLaborAmount) { this.paidLaborAmount = paidLaborAmount; }
public BigDecimal getPaidMeetingAmount() { return paidMeetingAmount; }
public void setPaidMeetingAmount(BigDecimal paidMeetingAmount) { this.paidMeetingAmount = paidMeetingAmount; }
public BigDecimal getManagerScore() { return managerScore; }
public void setManagerScore(BigDecimal managerScore) { this.managerScore = managerScore; }
public BigDecimal getSponsorScore() { return sponsorScore; }
public void setSponsorScore(BigDecimal sponsorScore) { this.sponsorScore = sponsorScore; }
public String getSponsorOrgName() { return sponsorOrgName; }
public void setSponsorOrgName(String sponsorOrgName) { this.sponsorOrgName = sponsorOrgName; }
public String getExecOrgNames() { return execOrgNames; }
public void setExecOrgNames(String execOrgNames) { this.execOrgNames = execOrgNames; }
public String getProjectForm() { return projectForm; }
public void setProjectForm(String projectForm) { this.projectForm = projectForm; }
public String getIsFinished() { return isFinished; }
public void setIsFinished(String isFinished) { this.isFinished = isFinished; }
public Date getStartTime() { return startTime; }
public void setStartTime(Date startTime) { this.startTime = startTime; }
public Date getEndTime() { return endTime; }
public void setEndTime(Date endTime) { this.endTime = endTime; }
}
@@ -0,0 +1,59 @@
package com.ruoyi.business.domain.vo;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.common.annotation.Excel;
/**
* 项目评价导出 VO (中文列头, 4 维度评分明细)
*
* <p>数据源: biz_project_rating (每个项目 × 每个评分角色 一条评分记录).
* 项目编号/项目名称由导出时用 project_id 反查 biz_project 主表补齐 (明细表这两列可能为空).
* 仅用于 Excel 导出, 不参与业务逻辑.
*
* @author guoju
*/
public class BizProjectRatingExportVo {
@Excel(name = "项目编号", sort = 1)
private String projectNo;
@Excel(name = "项目名称", sort = 2)
private String projectName;
@Excel(name = "评分角色", sort = 3)
private String raterRole;
@Excel(name = "履约质量", sort = 4)
private Long qualityScore;
@Excel(name = "时效响应", sort = 5)
private Long responseScore;
@Excel(name = "配合度", sort = 6)
private Long cooperationScore;
@Excel(name = "合规安全", sort = 7)
private Long complianceScore;
@Excel(name = "评分时间", sort = 8, dateFormat = "yyyy-MM-dd HH:mm:ss")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date createTime;
public String getProjectNo() { return projectNo; }
public void setProjectNo(String projectNo) { this.projectNo = projectNo; }
public String getProjectName() { return projectName; }
public void setProjectName(String projectName) { this.projectName = projectName; }
public String getRaterRole() { return raterRole; }
public void setRaterRole(String raterRole) { this.raterRole = raterRole; }
public Long getQualityScore() { return qualityScore; }
public void setQualityScore(Long qualityScore) { this.qualityScore = qualityScore; }
public Long getResponseScore() { return responseScore; }
public void setResponseScore(Long responseScore) { this.responseScore = responseScore; }
public Long getCooperationScore() { return cooperationScore; }
public void setCooperationScore(Long cooperationScore) { this.cooperationScore = cooperationScore; }
public Long getComplianceScore() { return complianceScore; }
public void setComplianceScore(Long complianceScore) { this.complianceScore = complianceScore; }
public Date getCreateTime() { return createTime; }
public void setCreateTime(Date createTime) { this.createTime = createTime; }
}
@@ -7,32 +7,64 @@ import com.ruoyi.common.annotation.Excel;
/**
* 报名专家导出 VO (中文列头)
*
* <p>数据源: biz_execution_intent (公开门户"立即报名"写入的执行意向表, 即已报名专家).
* <p>数据源: biz_execution_intent (公开门户"立即报名"写入的执行意向表, 即已报名专家)
* + biz_expert (医生档案, 报名专家 userId → biz_expert.userId 反查补全银行/证件/地区/科室/医院/职称).
* 仅用于 Excel 导出, 不参与业务逻辑.
*
* @author guoju
*/
public class BizSignupExpertExportVo {
@Excel(name = "专家姓名", sort = 1)
@Excel(name = "项目编号", sort = 1)
private String projectNo;
@Excel(name = "项目名称", sort = 2)
private String projectName;
@Excel(name = "专家姓名", sort = 3)
private String name;
@Excel(name = "科室", sort = 2)
@Excel(name = "科室", sort = 4)
private String department;
@Excel(name = "医院", sort = 3)
@Excel(name = "医院", sort = 5)
private String workUnit;
@Excel(name = "职称", sort = 4)
@Excel(name = "职称", sort = 6)
private String position;
@Excel(name = "报名时间", sort = 5, dateFormat = "yyyy-MM-dd HH:mm:ss")
@Excel(name = "手机号", sort = 7)
private String phone;
@Excel(name = "地区", sort = 8)
private String region;
@Excel(name = "身份证件号码", sort = 9)
private String idCard;
@Excel(name = "银行卡号", sort = 10)
private String bankCard;
@Excel(name = "银行名称", sort = 11)
private String bankName;
@Excel(name = "开户行支行", sort = 12)
private String bankBranch;
@Excel(name = "开户行省/市", sort = 13)
private String bankRegion;
@Excel(name = "开户行地址", sort = 14)
private String bankAddress;
@Excel(name = "报名时间", sort = 15, dateFormat = "yyyy-MM-dd HH:mm:ss")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date createTime;
@Excel(name = "手机号", sort = 6)
private String phone;
public String getProjectNo() { return projectNo; }
public void setProjectNo(String projectNo) { this.projectNo = projectNo; }
public String getProjectName() { return projectName; }
public void setProjectName(String projectName) { this.projectName = projectName; }
public String getName() { return name; }
public void setName(String name) { this.name = name; }
public String getDepartment() { return department; }
@@ -41,8 +73,22 @@ public class BizSignupExpertExportVo {
public void setWorkUnit(String workUnit) { this.workUnit = workUnit; }
public String getPosition() { return position; }
public void setPosition(String position) { this.position = position; }
public Date getCreateTime() { return createTime; }
public void setCreateTime(Date createTime) { this.createTime = createTime; }
public String getPhone() { return phone; }
public void setPhone(String phone) { this.phone = phone; }
}
public String getRegion() { return region; }
public void setRegion(String region) { this.region = region; }
public String getIdCard() { return idCard; }
public void setIdCard(String idCard) { this.idCard = idCard; }
public String getBankCard() { return bankCard; }
public void setBankCard(String bankCard) { this.bankCard = bankCard; }
public String getBankName() { return bankName; }
public void setBankName(String bankName) { this.bankName = bankName; }
public String getBankBranch() { return bankBranch; }
public void setBankBranch(String bankBranch) { this.bankBranch = bankBranch; }
public String getBankRegion() { return bankRegion; }
public void setBankRegion(String bankRegion) { this.bankRegion = bankRegion; }
public String getBankAddress() { return bankAddress; }
public void setBankAddress(String bankAddress) { this.bankAddress = bankAddress; }
public Date getCreateTime() { return createTime; }
public void setCreateTime(Date createTime) { this.createTime = createTime; }
}
@@ -10,6 +10,8 @@ public interface BizOrgMapper {
int insert(BizOrg entity);
int updateByPrimaryKey(BizOrg entity);
int deleteByPrimaryKeys(Long[] orgIds);
/** 级联软删机构下所有账号 (主 + 子), 删除机构时调用 */
int softDeleteUsersByOrgId(Long orgId);
/** 支持方下拉选项 (JOIN sys_user.user_name), 用于 manager 项目分配弹窗, 返回 orgId/orgName/userName */
List<Map<String, Object>> selectSponsorOrgOptions(BizOrg entity);
/** 执行方下拉选项 (JOIN sys_user MAIN 账号 user_name), 用于 manager 项目分配弹窗
@@ -33,4 +35,8 @@ public interface BizOrgMapper {
Long selectOrgIdByUserId(Long userId);
/** 单位名称查重: 同 orgType 下 org_name 精确匹配的条数 (新增单位前判重) */
int countByOrgName(BizOrg entity);
/** 供应商同步 org 去重: 按税号精确定位 executor org (取 org_id 最小) */
BizOrg selectByTaxNo(BizOrg entity);
/** 供应商同步 org 去重兜底: 税号缺失时按企业名精确定位 executor org (取 org_id 最小) */
BizOrg selectByNameAndType(BizOrg entity);
}
@@ -4,6 +4,10 @@ import java.net.URLEncoder;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.List;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import jakarta.annotation.PostConstruct;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.core.env.Environment;
@@ -21,12 +25,17 @@ import com.ruoyi.common.utils.http.HttpUtils;
import lombok.extern.slf4j.Slf4j;
/**
* 供应商账号数据拉取调度器: 每分钟拉取最近 N 分钟更新的账号, 解密后同步到执行方侧.
* 供应商账号数据拉取调度器.
* <p>
* 数据源: {@code GET /supplier-api/bidding/supplier/openapi/accounts}
* 入参 lastUpdatedTime(最后更新时间) / pageNum / pageSize, 按更新时间倒序返回.
* 返回 data 字段为 AES-256-GCM 加密串, 用 {@link SupplierAccountApiCodec} 解密.
* <p>
* 三个触发点:
* 1. 启动后立即 (异步线程池) 全量拉 1 个月 ({@code full-pull-days}, 默认 30 天)
* 2. 每分钟增量拉最近 5 分钟 ({@code incremental-minutes}, 默认 5)
* 3. 每晚 2 点全量拉 1 个月 ({@code full-pull-days})
* <p>
* 解密后按邮箱 upsert 到 sys_user / biz_org / biz_person (见 {@link SupplierAccountSyncService}).
*/
@Slf4j
@@ -36,7 +45,8 @@ public class SupplierAccountPullScheduler
private static final String KEY = "supplier-account-api-aes.key";
private static final String BASE_URL = "supplier-account-api.base-url";
private static final String PAGE_SIZE = "supplier-account-api.page-size";
private static final String PULL_MINUTES = "supplier-account-api.pull-minutes";
private static final String INCREMENTAL_MINUTES = "supplier-account-api.incremental-minutes";
private static final String FULL_PULL_DAYS = "supplier-account-api.full-pull-days";
private static final String DEFAULT_BASE_URL =
"https://zbsuppliertest.guojustar.com/supplier-api/bidding/supplier/openapi/accounts";
@@ -51,8 +61,46 @@ public class SupplierAccountPullScheduler
@Autowired
private SupplierAccountSyncService supplierAccountSyncService;
@Scheduled(fixedRate = 60_000, initialDelay = 30_000)
public void pullAccounts()
/** 启动全量拉取专用线程池 (daemon 单线程, 不阻塞启动, 也不阻塞 JVM 退出) */
private final ExecutorService startupExecutor = Executors.newSingleThreadExecutor(r -> {
Thread t = new Thread(r, "supplier-account-pull-startup");
t.setDaemon(true);
return t;
});
/** 启动后立即全量拉取 1 个月数据 (异步, 不阻塞 Spring 启动) */
@PostConstruct
public void init()
{
startupExecutor.submit(() -> {
try
{
log.info("[SupplierAccountPull] 启动全量拉取开始 (近 {} 天)", fullPullDays());
pull(fullPullDays() * 24 * 60);
}
catch (Exception e)
{
log.warn("[SupplierAccountPull] 启动全量拉取失败", e);
}
});
}
/** 每分钟增量拉最近 N 分钟 (默认 5 分钟) 的账号 */
@Scheduled(fixedRate = 60_000, initialDelay = 60_000)
public void pullIncremental()
{
pull(incrementalMinutes());
}
/** 每晚 2 点全量拉取 1 个月数据 */
@Scheduled(cron = "0 0 2 * * ?")
public void pullFullNightly()
{
pull(fullPullDays() * 24 * 60);
}
/** 拉取最近 minutes 分钟更新的账号并同步 */
private void pull(int minutes)
{
try
{
@@ -64,8 +112,7 @@ public class SupplierAccountPullScheduler
}
String baseUrl = env.getProperty(BASE_URL, DEFAULT_BASE_URL);
int pageSize = env.getProperty(PAGE_SIZE, Integer.class, 20);
int pullMinutes = env.getProperty(PULL_MINUTES, Integer.class, 5*24*60*60);
String lastUpdatedTime = LocalDateTime.now().minusMinutes(pullMinutes).format(TIME_FMT);
String lastUpdatedTime = LocalDateTime.now().minusMinutes(minutes).format(TIME_FMT);
int pageNum = 1;
int fetched = 0;
@@ -109,11 +156,21 @@ public class SupplierAccountPullScheduler
}
pageNum++;
}
log.info("[SupplierAccountPull] 本轮完成, 共 {} 条", fetched);
log.info("[SupplierAccountPull] 本轮完成, 窗口={}分钟, 共 {} 条", minutes, fetched);
}
catch (Exception e)
{
log.warn("[SupplierAccountPull] 拉取失败 (跳过, 下分钟再试)", e);
log.warn("[SupplierAccountPull] 拉取失败 (跳过, 下再试)", e);
}
}
private int incrementalMinutes()
{
return env.getProperty(INCREMENTAL_MINUTES, Integer.class, 5);
}
private int fullPullDays()
{
return env.getProperty(FULL_PULL_DAYS, Integer.class, 30);
}
}
@@ -120,10 +120,6 @@ public class BizMeetingAttendeeServiceImpl implements IBizMeetingAttendeeService
}
phone = phone.trim();
// 校验实发金额不超所选角色劳务金额合计 (与手动新增弹窗 MeetingDetail.validateFee 一致;
// 无角色/无金额/项目无 role_labor 时跳过)
validateFeeAgainstRole(loadRoleLabor(body.getMeetingId()), body.getLaborForm(), body.getFee());
// 1. 按 phone 查 sys_user (单条 IN 查, selectByPhoneList 接受 List<String>)
List<SysUser> hits = sysUserMapper.selectByPhoneList(Collections.singletonList(phone));
Long userId;
@@ -236,8 +232,6 @@ public class BizMeetingAttendeeServiceImpl implements IBizMeetingAttendeeService
BizMeetingAttendee old = mapper.selectById(entity.getId());
if (old != null) meetingId = old.getMeetingId();
}
// 校验实发金额不超所选角色劳务金额合计 (与手动新增弹窗 MeetingDetail.validateFee 一致)
validateFeeAgainstRole(loadRoleLabor(meetingId), entity.getLaborForm(), entity.getFee());
return mapper.updateProfile(entity);
}
@@ -377,24 +371,6 @@ public class BizMeetingAttendeeServiceImpl implements IBizMeetingAttendeeService
return fee;
}
/**
* 解析某会议的 project.role_labor JSON 数组, 失败/无数据返回 null.
* 供"实发金额 ≤ 角色设置金额"校验复用 (单条 add/edit 各自加载).
*/
private JsonNode loadRoleLabor(Long meetingId) {
if (meetingId == null) return null;
try {
BizMeeting meeting = meetingMapper.selectByPrimaryKey(meetingId);
if (meeting == null || meeting.getProjectId() == null) return null;
BizProject project = projectMapper.selectByPrimaryKey(meeting.getProjectId());
if (project == null || project.getRoleLabor() == null || project.getRoleLabor().trim().isEmpty()) return null;
return objectMapper.readTree(project.getRoleLabor());
} catch (Exception e) {
log.warn("[attendee] 解析项目角色劳务失败 meetingId={}", meetingId, e);
return null;
}
}
/**
* 在项目角色劳务 JSON 数组 [{role, customName, amount}] 里按单个角色名匹配劳务金额.
* 匹配规则与前端 ProjectRoleSelect 一致: role === '其他' 时用 customName 作 label, 否则用 role.
@@ -434,39 +410,6 @@ public class BizMeetingAttendeeServiceImpl implements IBizMeetingAttendeeService
return matchRoleAmount(nodes, laborForm);
}
/**
* 参会人角色 (laborForm, 可能逗号分隔多选) 对应的角色劳务金额合计.
* 与前端 MeetingDetail.roleAmountSum 一致: 按逗号拆分逐个匹配求和.
*
* @return 金额合计; nodes 为空/非数组 → null (无 role_labor 数据, 无法比较)
*/
private BigDecimal sumRoleAmount(JsonNode nodes, String laborForm) {
if (nodes == null || !nodes.isArray() || laborForm == null || laborForm.trim().isEmpty()) {
return null;
}
BigDecimal sum = BigDecimal.ZERO;
for (String item : laborForm.split(",")) {
BigDecimal a = matchRoleAmount(nodes, item.trim());
if (a != null) sum = sum.add(a);
}
return sum;
}
/**
* 校验实发金额(fee)不超所选角色劳务金额合计 (与前端 MeetingDetail.validateFee 一致).
* laborForm 为空 / fee 为空 / 项目无 role_labor 数据时跳过 (无"设置金额"可比较).
*/
private void validateFeeAgainstRole(JsonNode roleLaborNodes, String laborForm, BigDecimal fee) {
if (laborForm == null || laborForm.trim().isEmpty()) return;
if (fee == null) return;
BigDecimal sum = sumRoleAmount(roleLaborNodes, laborForm);
if (sum == null) return;
if (fee.compareTo(sum) > 0) {
throw new ServiceException("实发金额不能超过角色金额 "
+ sum.setScale(2, RoundingMode.HALF_UP).toPlainString() + "");
}
}
/**
* 批量导入参会人 (Excel → biz_meeting_attendee).
*
@@ -65,9 +65,14 @@ public class BizOrgServiceImpl implements IBizOrgService {
}
@Override
@Transactional
public int deleteByPrimaryKeys(Long[] orgIds) {
int rows = 0;
for (Long id : orgIds) { rows += bizOrgMapper.deleteByPrimaryKeys(new Long[]{id}); }
for (Long id : orgIds) {
// 先级联软删机构下所有账号 (主 + 子), 再软删机构 (删除机构=软删除, 账号也随之软删)
bizOrgMapper.softDeleteUsersByOrgId(id);
rows += bizOrgMapper.deleteByPrimaryKeys(new Long[]{id});
}
return rows;
}
@@ -88,7 +88,8 @@ public class SupplierAccountSyncService
// 1. sys_user upsert (去重键=邮箱, 不过滤 del_flag, 以支持"删除→恢复")
SysUser user = sysUserMapper.selectUserByEmailIgnoreDel(email);
Long userId;
if (user == null)
boolean isNewUser = user == null;
if (isNewUser)
{
SysUser nu = new SysUser();
nu.setUserName(email);
@@ -117,14 +118,25 @@ public class SupplierAccountSyncService
sysUserMapper.updateSyncedUser(upd);
}
// 2. biz_org upsert (按主账号 user_id)
BizOrg q = new BizOrg();
q.setUserId(userId);
q.setOrgType("executor");
List<BizOrg> orgs = bizOrgMapper.selectList(q);
BizOrg org = orgs.isEmpty() ? null : orgs.get(0);
// 2. biz_org 去重定位: 税号优先, 缺则企业名兜底 (同企业只存一个 org)
BizOrg org = null;
if (taxNo != null && !taxNo.isEmpty())
{
BizOrg probe = new BizOrg();
probe.setTaxNo(taxNo);
org = bizOrgMapper.selectByTaxNo(probe);
}
if (org == null)
{
BizOrg probe = new BizOrg();
probe.setOrgName(orgName);
org = bizOrgMapper.selectByNameAndType(probe);
}
Long orgId;
if (org == null)
{
// 无同企业 org → 新建, 当前账号当 MAIN 管理员 (org.user_id = 当前 userId)
BizOrg no = new BizOrg();
no.setUserId(userId);
no.setOrgName(orgName);
@@ -135,11 +147,36 @@ public class SupplierAccountSyncService
no.setContactName(a.getContactName());
no.setContactPhone(a.getContactPhone());
no.setStatus(status);
no.setIsSynced(1);
bizOrgMapper.insert(no);
org = no;
orgId = no.getOrgId();
// 旧账号 (update 分支) 此前可能是 SUB 子账号, 新建 org 后须晋升为 MAIN
if (!isNewUser)
{
sysUserMapper.updateAccountType(userId, "MAIN", null);
}
}
else
{
// 复用已有 org: id 最小 = MAIN (当前 userId < org.user_id 时让位)
orgId = org.getOrgId();
Long mainUserId = org.getUserId();
Long newMainUserId = mainUserId;
if (mainUserId == null || userId < mainUserId)
{
newMainUserId = userId;
sysUserMapper.updateAccountType(userId, "MAIN", null);
if (mainUserId != null)
{
sysUserMapper.updateAccountType(mainUserId, "SUB", userId);
}
}
else if (!mainUserId.equals(userId))
{
sysUserMapper.updateAccountType(userId, "SUB", mainUserId);
}
// 刷新 org 档案字段 (含补写税号 / 主账号指向)
org.setUserId(newMainUserId);
org.setOrgName(orgName);
org.setBusinessNature(businessNature);
org.setAddress(address);
@@ -149,7 +186,6 @@ public class SupplierAccountSyncService
org.setStatus(status);
bizOrgMapper.updateByPrimaryKey(org);
}
Long orgId = org.getOrgId();
// 3. biz_person upsert (按 user_id), 打同步标记
BizPerson person = bizPersonMapper.selectByUserId(userId);
@@ -27,6 +27,12 @@
<where>
<if test="userId != null"> and user_id = #{userId}</if>
<if test="projectNo != null and projectNo != ''"> and project_no = #{projectNo}</if>
<if test="params.projectNos != null and params.projectNos.size() > 0">
and project_no in
<foreach collection="params.projectNos" item="no" open="(" separator="," close=")">
#{no}
</foreach>
</if>
<if test="projectName != null and projectName != ''"> and project_name = #{projectName}</if>
<if test="name != null and name != ''"> and name = #{name}</if>
<if test="department != null and department != ''"> and department = #{department}</if>
@@ -82,6 +82,7 @@
<where>
is_deleted = 0
<if test="projectNo != null and projectNo != ''">and project_no like concat('%', #{projectNo}, '%')</if>
<if test="projectId != null">and project_id = #{projectId}</if>
<if test="meetingId != null">and meeting_id = #{meetingId}</if>
<if test="meetingName != null and meetingName != ''">and meeting_name like concat('%', #{meetingName}, '%')</if>
<if test="periodNo != null">and period_no = #{periodNo}</if>
@@ -17,23 +17,27 @@
<result property="createBy" column="create_by" />
<result property="updateBy" column="update_by" />
<result property="updateTime" column="update_time" />
<result property="delFlag" column="del_flag" />
<result property="isSynced" column="is_synced" />
</resultMap>
<sql id="selectFields">
select org_id, user_id, org_name, org_type, business_nature, address, tax_no, status, create_time,
contact_name, contact_phone, intent_count,
create_by, update_by, update_time
create_by, update_by, update_time, del_flag, is_synced
from biz_org
</sql>
<select id="selectByPrimaryKey" resultMap="BizOrgResult" parameterType="Long">
<include refid="selectFields"/>
where org_id = #{orgId}
and del_flag = '0'
</select>
<select id="selectList" resultMap="BizOrgResult" parameterType="BizOrg">
<include refid="selectFields"/>
<where>
del_flag = '0'
<if test="userId != null"> and user_id = #{userId}</if>
<if test="orgType != null and orgType != ''"> and org_type = #{orgType}</if>
<if test="orgName != null and orgName != ''"> and org_name like concat('%', #{orgName}, '%')</if>
@@ -56,6 +60,7 @@
<if test="contactPhone != null and contactPhone != ''">contact_phone,</if>
<if test="intentCount != null">intent_count,</if>
<if test="status != null and status != ''">status,</if>
<if test="isSynced != null">is_synced,</if>
<if test="createBy != null and createBy != ''">create_by,</if>
create_time,
</trim>
@@ -70,6 +75,7 @@
<if test="contactPhone != null and contactPhone != ''">#{contactPhone},</if>
<if test="intentCount != null">#{intentCount},</if>
<if test="status != null and status != ''">#{status},</if>
<if test="isSynced != null">#{isSynced},</if>
<if test="createBy != null and createBy != ''">#{createBy},</if>
sysdate(),
</trim>
@@ -88,18 +94,29 @@
<if test="contactPhone != null">contact_phone = #{contactPhone},</if>
<if test="intentCount != null">intent_count = #{intentCount},</if>
<if test="status != null and status != ''">status = #{status},</if>
<if test="isSynced != null">is_synced = #{isSynced},</if>
<if test="updateBy != null and updateBy != ''">update_by = #{updateBy},</if>
update_time = sysdate(),
</trim>
where org_id = #{orgId}
</update>
<delete id="deleteByPrimaryKeys" parameterType="Long">
delete from biz_org where org_id in
<update id="deleteByPrimaryKeys" parameterType="Long">
update biz_org set del_flag = '1' where org_id in
<foreach collection="array" item="orgId" open="(" separator="," close=")">
#{orgId}
</foreach>
</delete>
and del_flag = '0'
</update>
<!-- 级联软删机构下所有账号 (主账号 biz_org.user_id + 子账号 biz_person.user_id), 删除机构时调用 -->
<update id="softDeleteUsersByOrgId" parameterType="Long">
update sys_user set del_flag = '1'
where del_flag = '0' and (
user_id in (select user_id from biz_person where org_id = #{orgId})
or user_id = (select user_id from biz_org where org_id = #{orgId})
)
</update>
<!--
支持方下拉选项: JOIN sys_user 取主账号 user_name (供分配弹窗缓存 biz_project.sponsor_admin_user_name 用)
@@ -116,6 +133,7 @@
from biz_org o
join sys_user u on u.user_id = o.user_id
where o.org_type = 'sponsor'
and o.del_flag = '0'
and u.del_flag = '0'
<if test="orgId != null">and o.org_id = #{orgId}</if>
<if test="orgName != null and orgName != ''">and o.org_name like concat('%', #{orgName}, '%')</if>
@@ -141,6 +159,7 @@
from biz_org o
join sys_user u on u.user_id = o.user_id
where o.org_type = 'executor'
and o.del_flag = '0'
and u.del_flag = '0'
and u.parent_user_id is null
<if test="orgId != null">and o.org_id = #{orgId}</if>
@@ -162,6 +181,7 @@
from biz_org o
where o.org_type = 'sponsor'
and o.status = '0'
and o.del_flag = '0'
<if test="orgName != null and orgName != ''">and o.org_name like concat('%', #{orgName}, '%')</if>
order by o.org_id desc
limit 20
@@ -180,9 +200,10 @@
case when p.user_id is null then 1 else 0 end as isOwner
from sys_user u
left join biz_person p on p.user_id = u.user_id and p.unit_type = 'sponsor'
left join biz_org own on own.user_id = u.user_id and own.org_type = 'sponsor'
left join biz_org own on own.user_id = u.user_id and own.org_type = 'sponsor' and own.del_flag = '0'
left join biz_org o on o.org_id = COALESCE(own.org_id, p.org_id)
where u.user_id = #{userId}
and o.del_flag = '0'
limit 1
</select>
@@ -194,7 +215,7 @@
-->
<select id="selectOrgIdByUserId" parameterType="Long" resultType="Long">
select coalesce(
(select org_id from biz_org where user_id = #{userId} limit 1),
(select org_id from biz_org where user_id = #{userId} and del_flag = '0' limit 1),
(select org_id from biz_person where user_id = #{userId} limit 1)
)
</select>
@@ -203,7 +224,28 @@
<select id="countByOrgName" parameterType="BizOrg" resultType="int">
select count(*) from biz_org
where org_type = #{orgType}
and del_flag = '0'
and trim(org_name) = #{orgName}
<if test="orgId != null"> and org_id != #{orgId}</if>
</select>
<!-- 供应商同步 org 去重: 按税号精确定位 (org_type='executor' 且税号非空), 取 org_id 最小的一条 -->
<select id="selectByTaxNo" parameterType="BizOrg" resultMap="BizOrgResult">
<include refid="selectFields"/>
where org_type = 'executor'
and del_flag = '0'
and tax_no = #{taxNo}
order by org_id asc
limit 1
</select>
<!-- 供应商同步 org 去重兜底: 税号缺失时按企业名精确定位 (org_type='executor'), 取 org_id 最小的一条 -->
<select id="selectByNameAndType" parameterType="BizOrg" resultMap="BizOrgResult">
<include refid="selectFields"/>
where org_type = 'executor'
and del_flag = '0'
and trim(org_name) = #{orgName}
order by org_id asc
limit 1
</select>
</mapper>
@@ -15,6 +15,7 @@
<result property="projectId" column="project_id" />
<result property="raterId" column="rater_id" />
<result property="ratingTime" column="rating_time" />
<result property="createTime" column="create_time" />
<result property="isDeleted" column="is_deleted" />
</resultMap>
<sql id="selectFields">
@@ -30,6 +31,12 @@
<where>
is_deleted = 0
<if test="projectId != null"> and project_id = #{projectId}</if>
<if test="params.projectIds != null and params.projectIds.size() > 0">
and project_id in
<foreach collection="params.projectIds" item="pid" open="(" separator="," close=")">
#{pid}
</foreach>
</if>
<if test="raterId != null"> and rater_id = #{raterId}</if>
<if test="raterRole != null and raterRole != ''"> and rater_role = #{raterRole}</if>
<if test="remark != null and remark != ''"> and remark = #{remark}</if>