服务指令-日常指令生成数据池BUG调整
This commit is contained in:
parent
29f6403107
commit
24bc000f8d
|
|
@ -49,13 +49,13 @@ public class CareDataPoolServiceImpl extends ServiceImpl<CareDataPoolMapper, Dir
|
|||
if(pool!=null){
|
||||
continue;
|
||||
}
|
||||
if(pool.getIzPackage().equals("N")){
|
||||
DirectiveDataPool directiveEntity = dataPoolService.getDirectiveById(pool.getDirectiveId());
|
||||
if(plan.getIzPackage().equals("N")){
|
||||
DirectiveDataPool directiveEntity = dataPoolService.getDirectiveById(plan.getDirectiveId());
|
||||
if(directiveEntity==null){
|
||||
continue;
|
||||
}
|
||||
}else{
|
||||
DirectiveDataPool packageEntity = dataPoolService.getPackageById(pool.getDirectiveId());
|
||||
DirectiveDataPool packageEntity = dataPoolService.getPackageById(plan.getDirectiveId());
|
||||
if(packageEntity==null){
|
||||
continue;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -49,13 +49,13 @@ public class InvoicingDataPoolServiceImpl extends ServiceImpl<InvoicingDataPoolM
|
|||
if(pool!=null){
|
||||
continue;
|
||||
}
|
||||
if(pool.getIzPackage().equals("N")){
|
||||
DirectiveDataPool directiveEntity = dataPoolService.getDirectiveById(pool.getDirectiveId());
|
||||
if(plan.getIzPackage().equals("N")){
|
||||
DirectiveDataPool directiveEntity = dataPoolService.getDirectiveById(plan.getDirectiveId());
|
||||
if(directiveEntity==null){
|
||||
continue;
|
||||
}
|
||||
}else{
|
||||
DirectiveDataPool packageEntity = dataPoolService.getPackageById(pool.getDirectiveId());
|
||||
DirectiveDataPool packageEntity = dataPoolService.getPackageById(plan.getDirectiveId());
|
||||
if(packageEntity==null){
|
||||
continue;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -49,13 +49,13 @@ public class LogisticsDataPoolServiceImpl extends ServiceImpl<LogisticsDataPoolM
|
|||
if(pool!=null){
|
||||
continue;
|
||||
}
|
||||
if(pool.getIzPackage().equals("N")){
|
||||
DirectiveDataPool directiveEntity = dataPoolService.getDirectiveById(pool.getDirectiveId());
|
||||
if(plan.getIzPackage().equals("N")){
|
||||
DirectiveDataPool directiveEntity = dataPoolService.getDirectiveById(plan.getDirectiveId());
|
||||
if(directiveEntity==null){
|
||||
continue;
|
||||
}
|
||||
}else{
|
||||
DirectiveDataPool packageEntity = dataPoolService.getPackageById(pool.getDirectiveId());
|
||||
DirectiveDataPool packageEntity = dataPoolService.getPackageById(plan.getDirectiveId());
|
||||
if(packageEntity==null){
|
||||
continue;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue