服务指令-日常指令生成数据池BUG调整
This commit is contained in:
parent
29f6403107
commit
24bc000f8d
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue