| Line 1731... |
Line 1731... |
| 1731 |
Map<Integer, InStockAccessoriesTvFofoIdModel> grnPendingAccessTvOrders = new HashMap<>();
|
1731 |
Map<Integer, InStockAccessoriesTvFofoIdModel> grnPendingAccessTvOrders = new HashMap<>();
|
| 1732 |
Map<Integer, CustomRetailer> customRetailerMap = retailerService.getAllFofoRetailers();
|
1732 |
Map<Integer, CustomRetailer> customRetailerMap = retailerService.getAllFofoRetailers();
|
| 1733 |
Map<Integer, CustomRetailer> customRetailers = new HashMap<>();
|
1733 |
Map<Integer, CustomRetailer> customRetailers = new HashMap<>();
|
| 1734 |
Map<Integer, PartnerType> fofoIdPartnerTypeMap = new HashMap<>();
|
1734 |
Map<Integer, PartnerType> fofoIdPartnerTypeMap = new HashMap<>();
|
| 1735 |
|
1735 |
|
| 1736 |
if (fofoIds.size() > 0 && fofoIds != null) {
|
1736 |
if (fofoIds != null && fofoIds.size() > 0) {
|
| 1737 |
List<Integer> fofoIdList = new ArrayList<>(fofoIds);
|
1737 |
List<Integer> fofoIdList = new ArrayList<>(fofoIds);
|
| 1738 |
|
1738 |
|
| 1739 |
Map<Integer, ActivationType> partnerActivationType = fofoStoreRepository.selectByRetailerIds(fofoIdList)
|
1739 |
Map<Integer, ActivationType> partnerActivationType = fofoStoreRepository.selectByRetailerIds(fofoIdList)
|
| 1740 |
.stream().collect(Collectors.toMap(x -> x.getId(), x -> x.getActivationType()));
|
1740 |
.stream().collect(Collectors.toMap(x -> x.getId(), x -> x.getActivationType()));
|
| 1741 |
|
1741 |
|