Subversion Repositories SmartDukaan

Rev

Rev 29668 | Rev 29671 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 29668 Rev 29670
Line 3217... Line 3217...
3217
			}
3217
			}
3218
 
3218
 
3219
		}
3219
		}
3220
	}
3220
	}
3221
 
3221
 
3222
	public void financeServices() {
-
 
3223
		List<PartnerBrandService> pbs = serviceConfigRepository.selectByPartnerStatusType(PartnerStatusType.NOTWORKING);
-
 
3224
		if (!pbs.isEmpty()) {
-
 
3225
			Map<Integer, List<Integer>> fofoIdBrandServiceMap = pbs.stream().collect(Collectors.groupingBy(
-
 
3226
					x -> x.getFofoId(), Collectors.mapping(x -> x.getBrandServiceId(), Collectors.toList())));
-
 
3227
 
-
 
3228
			serviceConfigRepository.selectAll();
-
 
3229
 
-
 
3230
		}
-
 
3231
	}
-
 
3232
 
-
 
3233
}
3222
}
3234
//2284
3223
//2284
3235
3224