|
@@ -164,6 +164,7 @@ public class ActTaskController {
|
|
|
}else{
|
|
|
QueryWrapper<TbTableInfoPractice> practiceQueryWrapper = new QueryWrapper<>();
|
|
|
practiceQueryWrapper.eq("business_table_id", actBusiness.getTableId());
|
|
|
+ practiceQueryWrapper.and(i-> i.eq("is_initial","1").or().eq("is_initial",null).or().eq("is_initial",""));
|
|
|
tbTableInfoPractice = tbTableInfoPracticeService.getOne(practiceQueryWrapper);
|
|
|
if (tbTableInfoPractice != null && oConvertUtils.isNotEmpty(tbTableInfoPractice.getExtraInfo())){
|
|
|
tv.setDescription(tbTableInfoPractice.getExtraInfo());
|
|
@@ -785,6 +786,8 @@ public class ActTaskController {
|
|
|
}else{
|
|
|
QueryWrapper<TbTableInfoPractice> practiceQueryWrapper = new QueryWrapper<>();
|
|
|
practiceQueryWrapper.eq("business_table_id", actBusiness.getTableId());
|
|
|
+ practiceQueryWrapper.and(i-> i.eq("is_initial","1").or().eq("is_initial",null).or().eq("is_initial",""));
|
|
|
+
|
|
|
tbTableInfoPractice = tbTableInfoPracticeService.getOne(practiceQueryWrapper);
|
|
|
if (tbTableInfoPractice != null && oConvertUtils.isNotEmpty(tbTableInfoPractice.getExtraInfo())){
|
|
|
htv.setDescription(tbTableInfoPractice.getExtraInfo());
|