| Line 582... |
Line 582... |
| 582 |
Map<Integer, CustomRetailer> customRetailerMap = retailerService
|
582 |
Map<Integer, CustomRetailer> customRetailerMap = retailerService
|
| 583 |
.getFofoRetailers(fofoStores.stream().map(x -> x.getId()).collect(Collectors.toList()));
|
583 |
.getFofoRetailers(fofoStores.stream().map(x -> x.getId()).collect(Collectors.toList()));
|
| 584 |
|
584 |
|
| 585 |
List<String> headers = Arrays.asList("Code", "Store Name", "Firm Name", "State Manager", "Teritory Manager",
|
585 |
List<String> headers = Arrays.asList("Code", "Store Name", "Firm Name", "State Manager", "Teritory Manager",
|
| 586 |
"Team Leader", "Wallet Amount", "In Stock Amount", "Return In Transit Stock", "Unbilled Amount",
|
586 |
"Team Leader", "Wallet Amount", "In Stock Amount", "Return In Transit Stock", "Unbilled Amount",
|
| 587 |
"Grn Pending Amount", "Min Investment", "Investment Amount", "Investment Short");
|
587 |
"Grn Pending Amount", "Min Investment", "Investment Amount", "Investment Short", "Unbilled Qty");
|
| 588 |
List<List<? extends Serializable>> rows = new ArrayList<>();
|
588 |
List<List<? extends Serializable>> rows = new ArrayList<>();
|
| 589 |
Map<String, List<? extends Serializable>> partnerRow = new HashMap<>();
|
589 |
Map<String, List<? extends Serializable>> partnerRow = new HashMap<>();
|
| 590 |
for (FofoStore fofoStore : fofoStores) {
|
590 |
for (FofoStore fofoStore : fofoStores) {
|
| 591 |
if (!fofoStore.isActive())
|
591 |
if (!fofoStore.isActive())
|
| 592 |
continue;
|
592 |
continue;
|