服务指令-日常指令生成数据池BUG调整

This commit is contained in:
曹磊 2026-01-19 16:10:28 +08:00
parent 29f6403107
commit 24bc000f8d
3 changed files with 9 additions and 9 deletions

View File

@ -49,13 +49,13 @@ public class CareDataPoolServiceImpl extends ServiceImpl<CareDataPoolMapper, Dir
if(pool!=null){ if(pool!=null){
continue; continue;
} }
if(pool.getIzPackage().equals("N")){ if(plan.getIzPackage().equals("N")){
DirectiveDataPool directiveEntity = dataPoolService.getDirectiveById(pool.getDirectiveId()); DirectiveDataPool directiveEntity = dataPoolService.getDirectiveById(plan.getDirectiveId());
if(directiveEntity==null){ if(directiveEntity==null){
continue; continue;
} }
}else{ }else{
DirectiveDataPool packageEntity = dataPoolService.getPackageById(pool.getDirectiveId()); DirectiveDataPool packageEntity = dataPoolService.getPackageById(plan.getDirectiveId());
if(packageEntity==null){ if(packageEntity==null){
continue; continue;
} }

View File

@ -49,13 +49,13 @@ public class InvoicingDataPoolServiceImpl extends ServiceImpl<InvoicingDataPoolM
if(pool!=null){ if(pool!=null){
continue; continue;
} }
if(pool.getIzPackage().equals("N")){ if(plan.getIzPackage().equals("N")){
DirectiveDataPool directiveEntity = dataPoolService.getDirectiveById(pool.getDirectiveId()); DirectiveDataPool directiveEntity = dataPoolService.getDirectiveById(plan.getDirectiveId());
if(directiveEntity==null){ if(directiveEntity==null){
continue; continue;
} }
}else{ }else{
DirectiveDataPool packageEntity = dataPoolService.getPackageById(pool.getDirectiveId()); DirectiveDataPool packageEntity = dataPoolService.getPackageById(plan.getDirectiveId());
if(packageEntity==null){ if(packageEntity==null){
continue; continue;
} }

View File

@ -49,13 +49,13 @@ public class LogisticsDataPoolServiceImpl extends ServiceImpl<LogisticsDataPoolM
if(pool!=null){ if(pool!=null){
continue; continue;
} }
if(pool.getIzPackage().equals("N")){ if(plan.getIzPackage().equals("N")){
DirectiveDataPool directiveEntity = dataPoolService.getDirectiveById(pool.getDirectiveId()); DirectiveDataPool directiveEntity = dataPoolService.getDirectiveById(plan.getDirectiveId());
if(directiveEntity==null){ if(directiveEntity==null){
continue; continue;
} }
}else{ }else{
DirectiveDataPool packageEntity = dataPoolService.getPackageById(pool.getDirectiveId()); DirectiveDataPool packageEntity = dataPoolService.getPackageById(plan.getDirectiveId());
if(packageEntity==null){ if(packageEntity==null){
continue; continue;
} }