投标修改

This commit is contained in:
2025-08-23 06:24:58 +08:00
parent d47fdbd9c3
commit c9c0224145
3 changed files with 25 additions and 5 deletions

View File

@ -261,12 +261,21 @@ springdoc:
packages-to-scan: org.dromara.out packages-to-scan: org.dromara.out
- group: 19.消息模块 - group: 19.消息模块
packages-to-scan: org.dromara.message packages-to-scan: org.dromara.message
- group: 20.合同模块 # - group: 20.手续模块
packages-to-scan: org.dromara.ctr # packages-to-scan: org.dromara.formalities
- group: 21.招标模块 - group: 21.分标策划模块
packages-to-scan: org.dromara.tender packages-to-scan: org.dromara.tender
- group: 22.大屏模块 - group: 22.大屏模块
packages-to-scan: org.dromara.bigscreen packages-to-scan: org.dromara.bigscreen
- group: 22.投标管理模块
packages-to-scan: org.dromara.bidding
# - group: 20.合同模块
# packages-to-scan: org.dromara.ctr
# - group: 21.招标模块
# packages-to-scan: org.dromara.tender
# knife4j的增强配置不需要增强可以不配 # knife4j的增强配置不需要增强可以不配
knife4j: knife4j:
enable: true enable: true

View File

@ -95,4 +95,15 @@ public class Ys7Test {
// System.out.println(b); // System.out.println(b);
} }
@Resource
private IBusSegmentedIndicatorPlanningService busSegmentedIndicatorPlanningService;
@Test
public void test666(){
BusSegmentedIndicatorPlanningBo bo = new BusSegmentedIndicatorPlanningBo();
bo.setId(1958169755747459073L);
List<BusBillofquantitiesLimitListVo> more = busSegmentedIndicatorPlanningService.getMore(bo);
System.out.println(more);
}
} }

View File

@ -151,11 +151,11 @@ public class BusBiddingLimitVersionsServiceImpl extends ServiceImpl<BusBiddingLi
public void processPlansHandlErequipmentList(ProcessEvent processEvent) { public void processPlansHandlErequipmentList(ProcessEvent processEvent) {
log.info("物资设备清单审核任务执行了{}", processEvent.toString()); log.info("物资设备清单审核任务执行了{}", processEvent.toString());
String id = processEvent.getBusinessId(); String id = processEvent.getBusinessId();
String split = id.split("_")[0];
LambdaQueryWrapper<BusBiddingLimitVersions> eq = new LambdaQueryWrapper<BusBiddingLimitVersions>() LambdaQueryWrapper<BusBiddingLimitVersions> eq = new LambdaQueryWrapper<BusBiddingLimitVersions>()
.eq(BusBiddingLimitVersions::getVersions, id); .eq(BusBiddingLimitVersions::getVersions, split);
BusBiddingLimitVersions busBiddingLimitVersions = new BusBiddingLimitVersions(); BusBiddingLimitVersions busBiddingLimitVersions = new BusBiddingLimitVersions();
busBiddingLimitVersions.setStatus(processEvent.getStatus()); busBiddingLimitVersions.setStatus(processEvent.getStatus());
boolean update = this.update(busBiddingLimitVersions, eq); boolean update = this.update(busBiddingLimitVersions, eq);
// BusBiddingPlan biddingPlan = baseMapper.selectById(Long.valueOf(id)); // BusBiddingPlan biddingPlan = baseMapper.selectById(Long.valueOf(id));
// if (biddingPlan == null) { // if (biddingPlan == null) {