Subversion Repositories SmartDukaan

Rev

Rev 37160 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
21615 kshitij.so 1
package com.spice.profitmandi.web.controller;
2
 
25649 tejbeer 3
import com.google.gson.Gson;
28825 tejbeer 4
import com.mongodb.DBObject;
25651 tejbeer 5
import com.spice.profitmandi.common.enumuration.ContentType;
25683 tejbeer 6
import com.spice.profitmandi.common.enumuration.MessageType;
22481 ashik.ali 7
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
31337 amit.gupta 8
import com.spice.profitmandi.common.model.*;
25651 tejbeer 9
import com.spice.profitmandi.common.web.util.ResponseSender;
36890 aman 10
import com.spice.profitmandi.dao.entity.ContactUs;
35247 vikas 11
import com.spice.profitmandi.dao.entity.StoreSalesTarget;
26011 amit.gupta 12
import com.spice.profitmandi.dao.entity.auth.AuthUser;
27355 tejbeer 13
import com.spice.profitmandi.dao.entity.catalog.Item;
32308 amit.gupta 14
import com.spice.profitmandi.dao.entity.catalog.Scheme;
27636 tejbeer 15
import com.spice.profitmandi.dao.entity.catalog.TagListing;
33501 ranu 16
import com.spice.profitmandi.dao.entity.cs.PartnerRegion;
28471 tejbeer 17
import com.spice.profitmandi.dao.entity.cs.Position;
36268 ranu 18
import com.spice.profitmandi.dao.entity.cs.Ticket;
27660 tejbeer 19
import com.spice.profitmandi.dao.entity.cs.TicketAssigned;
25651 tejbeer 20
import com.spice.profitmandi.dao.entity.dtr.Document;
25649 tejbeer 21
import com.spice.profitmandi.dao.entity.dtr.NotificationCampaign;
31337 amit.gupta 22
import com.spice.profitmandi.dao.entity.fofo.*;
29720 manish 23
import com.spice.profitmandi.dao.entity.transaction.LineItem;
27586 tejbeer 24
import com.spice.profitmandi.dao.entity.transaction.Order;
29707 tejbeer 25
import com.spice.profitmandi.dao.enumuration.catalog.UpgradeOfferStatus;
36481 ranu 26
import com.spice.profitmandi.dao.enumuration.cs.EscalationType;
31259 tejbeer 27
import com.spice.profitmandi.dao.enumuration.fofo.Milestone;
28409 tejbeer 28
import com.spice.profitmandi.dao.enumuration.transaction.OrderStatus;
36849 ranu 29
import com.spice.profitmandi.dao.model.SamsungUpgradeOfferModel;
36816 aman 30
import com.spice.profitmandi.dao.model.*;
34973 aman 31
import com.spice.profitmandi.dao.model.warehouse.LMSGraphRequest;
36890 aman 32
import com.spice.profitmandi.dao.repository.ContactUsRepository;
25976 amit.gupta 33
import com.spice.profitmandi.dao.repository.auth.AuthRepository;
34617 amit.gupta 34
import com.spice.profitmandi.dao.repository.catalog.*;
31662 amit.gupta 35
import com.spice.profitmandi.dao.repository.cs.*;
31337 amit.gupta 36
import com.spice.profitmandi.dao.repository.dtr.*;
37
import com.spice.profitmandi.dao.repository.fofo.*;
27529 tejbeer 38
import com.spice.profitmandi.dao.repository.inventory.ReporticoCacheTableRepository;
39
import com.spice.profitmandi.dao.repository.inventory.SaholicInventoryCISRepository;
29720 manish 40
import com.spice.profitmandi.dao.repository.transaction.LineItemRepository;
27893 tejbeer 41
import com.spice.profitmandi.dao.repository.transaction.OrderRepository;
28443 tejbeer 42
import com.spice.profitmandi.dao.repository.transaction.PriceDropRepository;
35104 vikas 43
import com.spice.profitmandi.dao.service.SaleRewardService;
28468 tejbeer 44
import com.spice.profitmandi.service.AdminUser;
45
import com.spice.profitmandi.service.FofoUser;
24336 amit.gupta 46
import com.spice.profitmandi.service.PartnerInvestmentService;
26460 amit.gupta 47
import com.spice.profitmandi.service.PartnerStatsService;
32336 jai.hind 48
import com.spice.profitmandi.service.SshServer.SSHService;
23844 amit.gupta 49
import com.spice.profitmandi.service.authentication.RoleManager;
34176 tejus.loha 50
import com.spice.profitmandi.service.catalog.BrandsService;
32934 amit.gupta 51
import com.spice.profitmandi.service.integrations.psismart.PsiSmartService;
25677 amit.gupta 52
import com.spice.profitmandi.service.inventory.InventoryService;
27876 amit.gupta 53
import com.spice.profitmandi.service.offers.OfferService;
32308 amit.gupta 54
import com.spice.profitmandi.service.scheme.SchemeService;
27586 tejbeer 55
import com.spice.profitmandi.service.transaction.TransactionService;
26005 amit.gupta 56
import com.spice.profitmandi.service.user.RetailerService;
22481 ashik.ali 57
import com.spice.profitmandi.web.model.LoginDetails;
58
import com.spice.profitmandi.web.util.CookiesProcessor;
27529 tejbeer 59
import com.spice.profitmandi.web.util.MVCResponseSender;
31337 amit.gupta 60
import org.apache.logging.log4j.LogManager;
61
import org.apache.logging.log4j.Logger;
62
import org.json.JSONObject;
63
import org.springframework.beans.factory.annotation.Autowired;
64
import org.springframework.beans.factory.annotation.Value;
65
import org.springframework.core.io.InputStreamResource;
66
import org.springframework.http.HttpHeaders;
67
import org.springframework.http.HttpStatus;
68
import org.springframework.http.ResponseEntity;
69
import org.springframework.stereotype.Controller;
35437 amit 70
import org.springframework.transaction.annotation.Transactional;
31337 amit.gupta 71
import org.springframework.ui.Model;
32336 jai.hind 72
import org.springframework.web.bind.annotation.*;
32407 amit.gupta 73
 
31337 amit.gupta 74
import javax.servlet.http.HttpServletRequest;
75
import java.io.File;
76
import java.io.FileInputStream;
77
import java.io.FileNotFoundException;
78
import java.time.LocalDate;
79
import java.time.LocalDateTime;
80
import java.time.LocalTime;
81
import java.time.YearMonth;
82
import java.time.format.DateTimeFormatter;
83
import java.util.*;
84
import java.util.Map.Entry;
85
import java.util.stream.Collectors;
32407 amit.gupta 86
 
31337 amit.gupta 87
import static in.shop2020.model.v1.order.OrderStatus.*;
32407 amit.gupta 88
 
21615 kshitij.so 89
@Controller
35458 amit 90
@Transactional(rollbackFor = Throwable.class)
21615 kshitij.so 91
public class DashboardController {
23923 amit.gupta 92
 
36870 ranu 93
    List<String> emails = Arrays.asList("kamini.sharma@smartdukaan.com", "neeraj.gupta@smartdukaan.com", "amit.gupta@smartdukaan.com", "ranu.rajput@smartdukaan.com", "vikas.jangra@smartdukaan.com", "tanay.gupta@smartdukaan.com", "rudy.kanwar@smartdukaan.com");
27727 tejbeer 94
 
31751 tejbeer 95
    @Value("${web.api.host}")
96
    private String webApiHost;
23923 amit.gupta 97
 
31751 tejbeer 98
    @Value("${web.api.scheme}")
99
    private String webApiScheme;
24288 amit.gupta 100
 
31751 tejbeer 101
    @Autowired
102
    private CsService1 csService1;
31662 amit.gupta 103
 
31751 tejbeer 104
    @Value("${web.api.root}")
105
    private String webApiRoot;
24078 amit.gupta 106
 
31751 tejbeer 107
    @Value("${web.api.port}")
108
    private int webApiPort;
28430 tejbeer 109
 
31751 tejbeer 110
    @Autowired
111
    private PriceDropRepository priceDropRepository;
28443 tejbeer 112
 
31751 tejbeer 113
    @Autowired
37188 ranu 114
    private BrandsRepository brandsRepository;
115
 
116
    @Autowired
31751 tejbeer 117
    private CookiesProcessor cookiesProcessor;
26468 amit.gupta 118
 
31751 tejbeer 119
    @Autowired
120
    private PendingOrderRepository pendingOrderRepository;
28409 tejbeer 121
 
31751 tejbeer 122
    @Autowired
123
    private PartnerStatsService partnerStatsService;
23923 amit.gupta 124
 
31751 tejbeer 125
    @Autowired
126
    private CsService csService;
26090 amit.gupta 127
 
31751 tejbeer 128
    @Autowired
129
    private ResponseSender<?> responseSender;
26012 amit.gupta 130
 
31751 tejbeer 131
    @Autowired
132
    RetailerService retailerService;
25214 amit.gupta 133
 
31751 tejbeer 134
    @Autowired
135
    private AdminUser adminUser;
28468 tejbeer 136
 
31751 tejbeer 137
    @Autowired
138
    private RoleManager roleManager;
23923 amit.gupta 139
 
31751 tejbeer 140
    @Autowired
141
    private FofoStoreRepository fofoStoreRepository;
23884 amit.gupta 142
 
31751 tejbeer 143
    @Autowired
144
    private PartnerInvestmentService partnerInvestmentService;
24288 amit.gupta 145
 
31751 tejbeer 146
    @Autowired
147
    DocumentRepository documentRepository;
26236 amit.gupta 148
 
31751 tejbeer 149
    @Autowired
150
    InventoryItemRepository inventoryItemRepository;
25683 tejbeer 151
 
31751 tejbeer 152
    @Autowired
153
    InventoryService inventoryService;
23923 amit.gupta 154
 
31751 tejbeer 155
    @Autowired
156
    private PendingOrderItemRepository pendingOrderItemRepository;
28409 tejbeer 157
 
31751 tejbeer 158
    @Autowired
159
    private CurrentInventorySnapshotRepository currentInventorySnapshotRepository;
24203 amit.gupta 160
 
31751 tejbeer 161
    @Autowired
162
    private FofoOrderItemRepository fofoOrderItemRepository;
26012 amit.gupta 163
 
31751 tejbeer 164
    @Autowired
165
    private PartnerTypeChangeService partnerTypeChangeService;
25136 amit.gupta 166
 
31751 tejbeer 167
    @Autowired
168
    private HygieneDataRepository hygieneDataRepository;
25649 tejbeer 169
 
31751 tejbeer 170
    @Autowired
171
    private UserAccountRepository userAccountRepository;
25649 tejbeer 172
 
31751 tejbeer 173
    @Autowired
174
    private NotificationCampaignRepository notificationCampaignRepository;
25649 tejbeer 175
 
31751 tejbeer 176
    @Autowired
177
    private AuthRepository authRepository;
24880 govind 178
 
31751 tejbeer 179
    @Autowired
180
    private FofoOrderRepository fofoOrderRepository;
26071 tejbeer 181
 
31751 tejbeer 182
    @Autowired
183
    private Gson gson;
25649 tejbeer 184
 
31751 tejbeer 185
    @Autowired
186
    TicketRepository ticketRepository;
26418 tejbeer 187
 
31751 tejbeer 188
    @Autowired
189
    private OfferService offerService;
27876 amit.gupta 190
 
31751 tejbeer 191
    @Autowired
192
    private ItemRepository itemRepository;
26588 tejbeer 193
 
31751 tejbeer 194
    @Autowired
195
    private SaholicInventoryCISRepository saholicInventoryCISRepository;
27529 tejbeer 196
 
31751 tejbeer 197
    @Autowired
198
    private MVCResponseSender mvcResponseSender;
27529 tejbeer 199
 
31751 tejbeer 200
    @Autowired
36890 aman 201
    private ContactUsRepository contactUsRepository;
202
 
203
    @Autowired
31751 tejbeer 204
    private ReporticoCacheTableRepository reporticoCacheTableRepository;
27529 tejbeer 205
 
31751 tejbeer 206
    @Autowired
207
    private TransactionService transactionService;
27586 tejbeer 208
 
31751 tejbeer 209
    @Autowired
210
    private TagListingRepository tagListingRepository;
27632 tejbeer 211
 
31751 tejbeer 212
    @Autowired
213
    private TicketAssignedRepository ticketAssignedRepository;
27660 tejbeer 214
 
31751 tejbeer 215
    @Autowired
216
    private OrderRepository orderRepository;
28468 tejbeer 217
 
31751 tejbeer 218
    @Autowired
219
    private FofoUser fofoUser;
29875 tejbeer 220
 
31751 tejbeer 221
    @Autowired
222
    private ActivatedImeiRepository activatedImeiRepository;
28825 tejbeer 223
 
31751 tejbeer 224
    @Autowired
225
    private Mongo mongoClient;
28825 tejbeer 226
 
31751 tejbeer 227
    @Autowired
228
    private SchemeInOutRepository schemeInOutRepository;
29875 tejbeer 229
 
31751 tejbeer 230
    @Autowired
231
    private LineItemRepository lineItemRepository;
29875 tejbeer 232
 
31751 tejbeer 233
    @Autowired
234
    private FofoLineItemRepository fofoLineItemRepository;
29578 tejbeer 235
 
31751 tejbeer 236
    @Autowired
237
    private PositionRepository positionRepository;
29707 tejbeer 238
 
31751 tejbeer 239
    @Autowired
240
    private MonthlyTargetRepository monthlyTargetRepository;
31285 tejbeer 241
 
31751 tejbeer 242
    @Autowired
243
    private SamsungUpgradeOfferRepository samsungUpgradeOfferRepository;
244
    private static final Logger LOGGER = LogManager.getLogger(DashboardController.class);
32836 amit.gupta 245
 
32407 amit.gupta 246
    @Autowired
247
    private SSHService sshService;
35119 aman 248
 
34176 tejus.loha 249
    @Autowired
250
    BrandsService brandsService;
32407 amit.gupta 251
 
35104 vikas 252
    @Autowired
253
    SaleRewardService saleRewardService;
254
 
35119 aman 255
    @Autowired
256
    SchemeService schemeService;
257
    @Autowired
258
    PrintResourceRegionRepository printResourceRegionRepository;
259
    @Autowired
260
    PartnerRegionRepository partnerRegionRepository;
261
    @Autowired
262
    PrintResourceRepository printResourceRepository;
263
    @Autowired
264
    CatalogRepository catalogRepository;
265
    @Autowired
266
    OfferRepository offerRepository;
267
    @Autowired
268
    OfferPayoutRepository offerPayoutRepository;
269
    @Value("${google.api.key}")
270
    private String googleApiKey;
271
 
31751 tejbeer 272
    @RequestMapping(value = "/12dashboard34", method = RequestMethod.GET)
273
    public String dashboard1(HttpServletRequest request, Model model, @RequestParam int fofoId) throws Exception {
274
        boolean isAdmin = false;
275
        model.addAttribute("isAdmin", isAdmin);
25740 amit.gupta 276
 
31751 tejbeer 277
        model.addAttribute("webApiHost", webApiHost);
278
        model.addAttribute("webApiPort", webApiPort);
279
        model.addAttribute("webApiScheme", webApiScheme);
280
        model.addAttribute("webApiRoot", webApiRoot);
281
        if (isAdmin) {
282
            return "dashboard1";
283
        }
26236 amit.gupta 284
 
31751 tejbeer 285
        FofoStore fofoStore = null;
286
        try {
287
            CustomRetailer customRetailer = retailerService.getFofoRetailer(fofoId);
288
            fofoStore = fofoStoreRepository.selectByRetailerId(fofoId);
289
            if (!fofoStore.isActive()) {
290
                return "redirect:/login";
291
            }
25740 amit.gupta 292
 
31751 tejbeer 293
            PartnerType partnerType = partnerTypeChangeService.getTypeOnDate(fofoStore.getId(), LocalDate.now());
294
            model.addAttribute("partnerType", partnerType);
295
            model.addAttribute("partnerTypeImage", PartnerType.imageMap.get(partnerType));
296
            model.addAttribute("fofoStore", customRetailer);
297
            model.addAttribute("partnerType", partnerType);
298
            model.addAttribute("hasGift", fofoUser.hasGift(fofoId));
299
            model.addAttribute("giftItemId", ProfitMandiConstants.GIFT_ID);
25740 amit.gupta 300
 
31884 tejbeer 301
            model.addAttribute("brandStockPrices", fofoUser.getBrandStockPrices(fofoId, false));
31751 tejbeer 302
            model.addAttribute("salesMap", fofoUser.getSales(fofoId));
303
            model.addAttribute("activatedImeis", inventoryItemRepository.selectCountByActivatedNotSold(fofoId));
304
            // this.setInvestments
305
            //
306
            Map<Integer, String> monthValueMap = new HashMap<>();
307
            for (int i = 0; i <= 5; i++) {
308
                LocalDateTime startOfMonth = LocalDateTime.now().withDayOfMonth(1).minusMonths(i);
309
                monthValueMap.put(i, startOfMonth.format(DateTimeFormatter.ofPattern("MMM''uu")));
310
            }
311
            LOGGER.info("monthValueMap" + monthValueMap);
34176 tejus.loha 312
            Set<String> brands = brandsService.getBrandsToDisplay(3).stream().map(x -> x.getName()).collect(Collectors.toSet());
313
            brands.addAll(itemRepository.selectAllBrands(ProfitMandiConstants.LED_CATEGORY_ID));
314
            brands.addAll(itemRepository.selectAllBrands(ProfitMandiConstants.SMART_WATCH_CATEGORY_ID));
315
            brands.add("Live Demo");
316
            model.addAttribute("brands", brands);
31751 tejbeer 317
            model.addAttribute("monthValueMap", monthValueMap);
318
            model.addAttribute("investments", fofoUser.getInvestments(fofoId));
319
            model.addAttribute("isInvestmentOk", partnerInvestmentService.isInvestmentOk(fofoId, ProfitMandiConstants.MIN_INVESTMENT_PERCENTAGE, ProfitMandiConstants.CUTOFF_INVESTMENT));
320
        } catch (ProfitMandiBusinessException e) {
321
            LOGGER.error("FofoStore Code not found of fofoId {}", fofoId);
25740 amit.gupta 322
 
31751 tejbeer 323
        }
25740 amit.gupta 324
 
31751 tejbeer 325
        return "12dashboard34";
326
    }
25740 amit.gupta 327
 
31751 tejbeer 328
    @RequestMapping(value = "/getMonthSale", method = RequestMethod.GET)
329
    public String getMonthsale(HttpServletRequest request, Model model) throws Exception {
330
        LoginDetails loginDetails = cookiesProcessor.getCookiesObject(request);
331
        int fofoId = loginDetails.getFofoId();
332
        Map<Integer, MonthSaleModel> monthSaleMap = new HashMap<>();
333
        LocalDateTime curDate = LocalDate.now().atStartOfDay();
334
        int dayOfMonth = curDate.getDayOfMonth();
34781 amit.gupta 335
        YearMonth yearMonth = YearMonth.now();
35284 aman 336
        for (int i = 0; i <= 6; i++) {
31751 tejbeer 337
            LocalDateTime startOfMonth = curDate.withDayOfMonth(1).minusMonths(i);
338
            int lengthOfMonth = YearMonth.from(startOfMonth).lengthOfMonth();
339
            LOGGER.info("Start of previous Month {}, start of next month Month {}", startOfMonth, startOfMonth.plusMonths(1));
340
            double monthSales = fofoOrderItemRepository.selectSumMopGroupByRetailer(startOfMonth, startOfMonth.plusMonths(1), loginDetails.getFofoId(), false).get(fofoId);
35284 aman 341
            LOGGER.info("Month sales - {}", monthSales);
31751 tejbeer 342
            double mtdSales = fofoOrderItemRepository.selectSumMopGroupByRetailer(startOfMonth, startOfMonth.plusDays(Math.min(dayOfMonth, lengthOfMonth)), loginDetails.getFofoId(), false).get(fofoId);
27474 tejbeer 343
 
34781 amit.gupta 344
            PartnerType partnerType = partnerTypeChangeService.getTypeOnMonth(fofoId, yearMonth.minusMonths(i));
27474 tejbeer 345
 
31751 tejbeer 346
            MonthSaleModel ms = new MonthSaleModel();
347
            ms.setMtdSales(fofoUser.format((long) mtdSales));
348
            ms.setMonthlySales(fofoUser.format(((long) monthSales)));
349
            ms.setPartnerType(partnerType);
350
            ms.setMonth(startOfMonth.format(DateTimeFormatter.ofPattern("MMM''uu")));
351
            monthSaleMap.put(i, ms);
352
        }
27474 tejbeer 353
 
31751 tejbeer 354
        model.addAttribute("monthSales", monthSaleMap);
355
        return "monthSales";
356
    }
27474 tejbeer 357
 
35064 aman 358
    @RequestMapping(value = "/getBrandwisePartnerSale", method = RequestMethod.GET)
359
    @ResponseBody
35284 aman 360
    public List<Map<String, Object>> getBrandwisePartnerSale(
361
            HttpServletRequest request,
362
            @RequestParam(name = "month", required = true, defaultValue = "0") int month,
363
            Model model) throws Exception {
364
 
35064 aman 365
        LoginDetails loginDetails = cookiesProcessor.getCookiesObject(request);
366
        int fofoId = loginDetails.getFofoId();
35284 aman 367
 
368
        List<BrandWisePartnerSaleModel> mobileList =
369
                fofoStoreRepository.selectBrandWiseMonthlyPartnerSale(Collections.singletonList(fofoId), month);
370
 
371
        List<BrandWisePartnerSaleModel> accList =
372
                fofoStoreRepository.selectBrandWiseMonthlyPartnerAccessoriesSale(Collections.singletonList(fofoId), month);
373
 
35064 aman 374
        List<Map<String, Object>> response = new ArrayList<>();
35284 aman 375
 
376
        for (BrandWisePartnerSaleModel m : mobileList) {
35064 aman 377
            Map<String, Object> row = new HashMap<>();
378
            row.put("brand", m.getBrand());
36242 aman 379
            row.put("lmtd", fofoUser.format(m.getLmtd()));
380
            row.put("lmtdQty", m.getLmtdQty());
35064 aman 381
            row.put("mtd", fofoUser.format(m.getMtd()));
382
            row.put("mtdQty", m.getMtdQty());
383
            response.add(row);
384
        }
385
 
35284 aman 386
        long accLmtd = 0;
36242 aman 387
        long accLmtdQty = 0;
35284 aman 388
        long accMtd = 0;
389
        long accMtdQty = 0;
390
        for (BrandWisePartnerSaleModel a : accList) {
391
            accLmtd += a.getLmtd();
36242 aman 392
            accLmtdQty += a.getLmtdQty();
35284 aman 393
            accMtd += a.getMtd();
394
            accMtdQty += a.getMtdQty();
395
        }
396
        if (!accList.isEmpty()) {
397
            Map<String, Object> accRow = new HashMap<>();
398
            accRow.put("brand", "Accessories");
399
            accRow.put("lmtd", fofoUser.format(accLmtd));
36242 aman 400
            accRow.put("lmtdQty", accLmtdQty);
35284 aman 401
            accRow.put("mtd", fofoUser.format(accMtd));
402
            accRow.put("mtdQty", accMtdQty);
403
            response.add(accRow);
404
        }
35064 aman 405
 
406
        return response;
407
    }
408
 
35284 aman 409
 
35064 aman 410
    @RequestMapping(value = "/getBrandItemwisePartnerSale", method = RequestMethod.GET)
411
    @ResponseBody
412
    public List<BrandItemWisePartnerSaleModel> getBrandItemwisePartnerSale(HttpServletRequest request, @RequestParam(name = "month", required = true, defaultValue = "0") int month, @RequestParam(name = "brand") String brand, @RequestParam(name = "fofoId") Integer fofoId, Model model) throws Exception {
413
        List<BrandItemWisePartnerSaleModel> brandItemWisePartnerSaleModels = fofoStoreRepository.selectPartnerBrandItemMonthlySale(Collections.singletonList(fofoId), month, brand);
414
        LOGGER.info("brandItemWisePartnerSaleModels {}", brandItemWisePartnerSaleModels);
415
        return brandItemWisePartnerSaleModels;
416
    }
417
 
35119 aman 418
    @RequestMapping(value = "/getBrandItemwisePartnerSecondarySale", method = RequestMethod.GET)
419
    @ResponseBody
420
    public List<BrandItemWisePartnerSaleModel> getBrandItemwisePartnerSecondarySale(HttpServletRequest request, @RequestParam(name = "month", required = true, defaultValue = "0") int month, @RequestParam(name = "brand") String brand, @RequestParam(name = "fofoId") Integer fofoId, Model model) throws Exception {
421
        List<BrandItemWisePartnerSaleModel> brandItemWisePartnerSaleModels = fofoStoreRepository.selectPartnerBrandItemMonthlySecondarySale(Collections.singletonList(fofoId), month, brand);
422
        LOGGER.info("brandItemWisePartnerSaleModels {}", brandItemWisePartnerSaleModels);
423
        return brandItemWisePartnerSaleModels;
424
    }
35064 aman 425
 
35583 ranu 426
    @RequestMapping(value = "/dasboard/getDateWiseBulletins", method = RequestMethod.GET)
427
    public String getDateWiseBulletins(HttpServletRequest request,
428
                                       @RequestParam("date") String date,
429
                                       Model model) throws Exception {
32308 amit.gupta 430
 
37095 ranu 431
        // Callers on the partner-facing domain don't always carry the fofo admin
432
        // cookies (FOFO_ID / EMAIL_ID / ROLE_IDS) — cookiesProcessor would then
433
        // throw ProfitMandiBusinessException and the global handler would turn it
434
        // into a 400. Bulletins are per-position, so a session-less request has
435
        // nothing to show — return an empty bulletin list instead of failing.
436
        LoginDetails loginDetails;
437
        try {
438
            loginDetails = cookiesProcessor.getCookiesObject(request);
439
        } catch (ProfitMandiBusinessException e) {
440
            model.addAttribute("bulletins", new LinkedHashMap<>());
441
            return "bulletin-list";
442
        }
35583 ranu 443
        String email = loginDetails.getEmailId();
444
        AuthUser authUser = authRepository.selectByEmailOrMobile(email);
37095 ranu 445
        List<Position> positions = authUser == null
446
                ? new ArrayList<>()
447
                : positionRepository.selectAllByAuthUserId(authUser.getId());
35583 ranu 448
        LocalDate selectedDate = LocalDate.parse(date);
449
 
36849 ranu 450
        // Short-circuit when the caller has no Position rows. getTodayBulletin's
451
        // `positions` parameter is @NotEmpty validated — handing it an empty list
452
        // throws "List should not be empty" and 500s the dashboard. A user with
453
        // no positions simply has no bulletins to see, so render an empty page.
37096 ranu 454
        //
455
        // Bulletin fetch is best-effort: it fans out to several sub-services
456
        // (catalog offers / schemes / web offers / prebooking). If any one of
457
        // them throws, we'd otherwise bubble a 500/400 to the caller. For this
458
        // endpoint we prefer to degrade to an empty list rather than fail the
459
        // page — the frontend renders nothing, which is what the user asked for.
460
        Map<ProfitMandiConstants.BULLETIN_TYPE_ENUM, List<BulletinOfferModal>> dbBulletins;
461
        if (positions == null || positions.isEmpty()) {
462
            dbBulletins = new HashMap<>();
463
        } else {
464
            try {
465
                dbBulletins = adminUser.getTodayBulletin(positions, selectedDate.atStartOfDay());
466
            } catch (Exception e) {
467
                LOGGER.warn("getTodayBulletin failed for date={} authUserId={}: {}",
468
                        date, authUser != null ? authUser.getId() : null, e.getMessage());
469
                dbBulletins = new HashMap<>();
470
            }
471
        }
35583 ranu 472
 
35585 ranu 473
        // Final ordered map (STRICT enum order)
35583 ranu 474
        Map<ProfitMandiConstants.BULLETIN_TYPE_ENUM, List<BulletinOfferModal>> bulletins =
475
                new LinkedHashMap<>();
476
 
477
        for (ProfitMandiConstants.BULLETIN_TYPE_ENUM type :
478
                ProfitMandiConstants.BULLETIN_TYPE_ENUM.values()) {
35585 ranu 479
 
480
            List<BulletinOfferModal> list = dbBulletins.get(type);
481
 
482
            if (list != null && !list.isEmpty()) {
483
                bulletins.put(type, list);   // only add if has data
484
            }
35583 ranu 485
        }
486
 
487
        model.addAttribute("bulletins", bulletins);
488
        return "bulletin-list";
489
    }
490
 
491
 
31751 tejbeer 492
    @RequestMapping(value = "/dashboard", method = RequestMethod.GET)
493
    public String dashboard(HttpServletRequest request, Model model) throws Exception {
494
        LoginDetails loginDetails = cookiesProcessor.getCookiesObject(request);
495
        String email = loginDetails.getEmailId();
496
        int fofoId = loginDetails.getFofoId();
497
        boolean isAdmin = roleManager.isAdmin(loginDetails.getRoleIds());
498
        model.addAttribute("isAdmin", isAdmin);
23923 amit.gupta 499
 
31751 tejbeer 500
        model.addAttribute("webApiHost", webApiHost);
501
        model.addAttribute("webApiPort", webApiPort);
502
        model.addAttribute("webApiScheme", webApiScheme);
503
        model.addAttribute("webApiRoot", webApiRoot);
33063 ranu 504
        model.addAttribute("googleApiKey", googleApiKey);
33501 ranu 505
 
31751 tejbeer 506
        if (isAdmin) {
507
            return adminUser.adminPanel(loginDetails.getFofoId(), email, model);
508
        } else {
33705 amit.gupta 509
            FofoStore fofoStore;
510
            List<PartnerRegion> partnerRegion = partnerRegionRepository.selectByfofoId(fofoId);
511
            LocalDateTime currentDate = LocalDateTime.now();
512
            List<PrintResource> printResources = printResourceRepository.selectPrintResourcesByFofoRegion(partnerRegion.get(0).getRegionId(), currentDate);
513
            LOGGER.info("printresourcesList {}", printResources);
514
            model.addAttribute("printResources", printResources);
31751 tejbeer 515
            try {
516
                fofoStore = fofoStoreRepository.selectByRetailerId(loginDetails.getFofoId());
517
                if (!fofoStore.isActive()) {
518
                    return "redirect:/login";
519
                }
30346 tejbeer 520
 
31751 tejbeer 521
                LocalDateTime startDate = LocalDate.now().withDayOfYear(1).atStartOfDay();
522
                LocalDateTime endtDate = LocalDateTime.now();
523
                OnlineDeliveredOrderSum onlineDeliveredOrderSum = pendingOrderItemRepository.selectSumSellingPriceOnlineOrder(fofoId, startDate, endtDate);
524
                LOGGER.info("onlineDeliveredOrderSum" + onlineDeliveredOrderSum.getSellingPrice());
30455 amit.gupta 525
 
31751 tejbeer 526
                long countOrder = pendingOrderRepository.pendingOrderCount(fofoId, OrderStatus.PROCESSING);
527
                LOGGER.info("countOrder" + countOrder);
30455 amit.gupta 528
 
31751 tejbeer 529
                ArrayList<in.shop2020.model.v1.order.OrderStatus> orderStatus = new ArrayList<>();
30455 amit.gupta 530
 
31751 tejbeer 531
                orderStatus.add(SUBMITTED_FOR_PROCESSING);
532
                orderStatus.add(BILLED);
533
                orderStatus.add(SHIPPED_FROM_WH);
534
                orderStatus.add(DELIVERY_SUCCESS);
30455 amit.gupta 535
 
31751 tejbeer 536
                List<Order> openOrders = orderRepository.selectGrnTimestampNull(fofoId, orderStatus);
537
                List<LineItem> submittedLineItemIds = openOrders.stream().filter(x -> x.getStatus().equals(SUBMITTED_FOR_PROCESSING)).map(x -> x.getLineItem()).collect(Collectors.toList());
538
                List<LineItem> billedOrderIds = openOrders.stream().filter(x -> x.getStatus().equals(BILLED)).map(x -> x.getLineItem()).collect(Collectors.toList());
539
                List<LineItem> shippedOrderIds = openOrders.stream().filter(x -> x.getStatus().equals(SHIPPED_FROM_WH)).map(x -> x.getLineItem()).collect(Collectors.toList());
540
                List<LineItem> grnPendingLineItemIds = openOrders.stream().filter(x -> x.getStatus().equals(DELIVERY_SUCCESS)).map(x -> x.getLineItem()).collect(Collectors.toList());
30455 amit.gupta 541
 
31751 tejbeer 542
                long imeiActivationPendingCount = 0;
543
                long imeiActivationPendingValue = 0;
33310 amit.gupta 544
                //Only delivered orders should be visible
34176 tejus.loha 545
                List<Integer> grnPendingOrderIds = openOrders.stream().filter(x -> x.getStatus().equals(DELIVERY_SUCCESS)).map(x -> x.getId()).collect(Collectors.toList());
31751 tejbeer 546
                if (grnPendingOrderIds.size() > 0) {
547
                    List<ImeiActivationTimestampModel> imeiActivationTimestampModels = activatedImeiRepository.selectActivatedImeisByOrders(grnPendingOrderIds);
548
                    imeiActivationPendingCount = imeiActivationTimestampModels.size();
549
                    imeiActivationPendingValue = imeiActivationTimestampModels.stream().collect(Collectors.summingDouble(x -> x.getSellingPrice())).longValue();
550
                }
30455 amit.gupta 551
 
31751 tejbeer 552
                long grnPendingCount = grnPendingLineItemIds.stream().collect(Collectors.summingLong(LineItem::getQuantity));
553
                long grnPendingValue = grnPendingLineItemIds.stream().collect(Collectors.summingLong(x -> x.getTotalPrice().longValue()));
554
                model.addAttribute("grnPendingCount", grnPendingCount);
555
                model.addAttribute("grnPendingValue", grnPendingValue);
30455 amit.gupta 556
 
31751 tejbeer 557
                long submittedCount = submittedLineItemIds.stream().collect(Collectors.summingLong(LineItem::getQuantity));
558
                long submittedValue = submittedLineItemIds.stream().collect(Collectors.summingLong(x -> x.getTotalPrice().longValue()));
559
                model.addAttribute("submittedCount", submittedCount);
560
                model.addAttribute("submittedValue", submittedValue);
30455 amit.gupta 561
 
31751 tejbeer 562
                long billedCount = billedOrderIds.stream().collect(Collectors.summingLong(LineItem::getQuantity));
563
                long billedValue = billedOrderIds.stream().collect(Collectors.summingLong(x -> x.getTotalPrice().longValue()));
564
                model.addAttribute("billedValue", billedValue);
565
                model.addAttribute("billedCount", billedCount);
566
                LOGGER.info("billedCount {}", billedCount);
30455 amit.gupta 567
 
31751 tejbeer 568
                long shippedCount = shippedOrderIds.stream().collect(Collectors.summingLong(LineItem::getQuantity));
569
                model.addAttribute("shippedCount", shippedCount);
570
                LOGGER.info("shippedCount {}", shippedCount);
571
                long shippedValue = shippedOrderIds.stream().collect(Collectors.summingLong(x -> x.getTotalPrice().longValue()));
572
                model.addAttribute("shippedValue", shippedValue);
30455 amit.gupta 573
 
31751 tejbeer 574
                LocalDateTime curDate = LocalDate.now().atStartOfDay();
30455 amit.gupta 575
 
31751 tejbeer 576
                LocalDateTime currentMonthStart = curDate.withDayOfMonth(1);
577
                LocalDateTime lastMonthStart = currentMonthStart.minusMonths(1);
578
                LocalDateTime currentMonthEnd = currentMonthStart.withDayOfMonth(1);
30455 amit.gupta 579
 
31751 tejbeer 580
                LOGGER.info("lastMonthStart" + lastMonthStart);
581
                LOGGER.info("currentMonthEnd" + currentMonthEnd);
30455 amit.gupta 582
 
32308 amit.gupta 583
                Scheme staticScheme = schemeService.getStaticScheme(fofoId);
584
                double schemeAchievement = 0;
585
                String schemeCategory = null;
586
                if (staticScheme != null) {
32313 tejbeer 587
                    Map<Integer, Double> schemeAchievementMap = orderRepository.selectBillingDatesBetweenSumGroupByRetailerId(staticScheme.getStartDateTime(), staticScheme.getEndDateTime());
588
                    if (schemeAchievementMap.get(fofoId) != null) {
589
                        schemeAchievement = schemeAchievementMap.get(fofoId);
37160 ranu 590
                        // Super Retailer - Club 5 (2026-07-01 to 2026-12-30) tiers
591
                        if (staticScheme.getTarget() >= 2000000 && staticScheme.getTarget() < 4000000) {
592
                            schemeCategory = "Shuruaat";       // 20 Lacs to 39.99 Lacs
593
                        } else if (staticScheme.getTarget() < 7000000) {
594
                            schemeCategory = "Udaan";          // 40 Lacs to 69.99 Lacs
595
                        } else if (staticScheme.getTarget() < 9000000) {
596
                            schemeCategory = "Raftaar";        // 70 Lacs to 89.99 Lacs
597
                        } else if (staticScheme.getTarget() < 12000000) {
598
                            schemeCategory = "Tarakki";        // 90 Lacs to 1.19 Cr
599
                        } else if (staticScheme.getTarget() < 24000000) {
600
                            schemeCategory = "Vijeta";         // 1.20 Cr to 2.39 Cr
32313 tejbeer 601
                        } else {
37160 ranu 602
                            schemeCategory = "Maharaja";       // 2.40 Cr and above
32313 tejbeer 603
                        }
32308 amit.gupta 604
                    }
605
                }
606
 
607
 
31751 tejbeer 608
                model.addAttribute("countOrder", countOrder);
609
                model.addAttribute("onlineDeliveredOrderSum", onlineDeliveredOrderSum.getSellingPrice());
30455 amit.gupta 610
 
31751 tejbeer 611
                PartnerType partnerType = partnerTypeChangeService.getTypeOnDate(fofoStore.getId(), LocalDate.now());
612
                model.addAttribute("partnerType", partnerType);
613
                model.addAttribute("partnerTypeImage", PartnerType.imageMap.get(partnerType));
614
                model.addAttribute("fofoStore", fofoStore);
615
                model.addAttribute("partnerType", partnerType);
616
                model.addAttribute("hasGift", fofoUser.hasGift(loginDetails.getFofoId()));
617
                model.addAttribute("giftItemId", ProfitMandiConstants.GIFT_ID);
618
                model.addAttribute("retailers", new JSONObject().append("code", fofoStore.getCode()).append("partnerId", fofoStore.getId()).toString());
619
                model.addAttribute("activatedImeis", inventoryItemRepository.selectCountByActivatedNotSold(loginDetails.getFofoId()));
620
                model.addAttribute("imeiActivationPendingCount", imeiActivationPendingCount);
621
                model.addAttribute("imeiActivationPendingValue", imeiActivationPendingValue);
30053 manish 622
 
31751 tejbeer 623
                Map<Integer, Double> accesoriesmtdsale = fofoOrderRepository.selectSumSaleGroupByFofoIdsForMobileOrAccessories(loginDetails.getFofoId(), curDate.withDayOfMonth(1), curDate.with(LocalTime.MAX), Optional.of(false));
27701 tejbeer 624
 
31751 tejbeer 625
                Double accesoriesStock = currentInventorySnapshotRepository.selectSumStockGroupByFofoIdsForMobileOrAccessories(loginDetails.getFofoId(), Optional.of(false)).get(loginDetails.getFofoId());
25180 amit.gupta 626
 
31751 tejbeer 627
                model.addAttribute("accesoriesStock", String.format("%.0f", accesoriesStock));
32308 amit.gupta 628
                model.addAttribute("staticScheme", staticScheme);
629
                model.addAttribute("schemeCategory", schemeCategory);
630
                model.addAttribute("schemeAchievement", schemeAchievement);
31884 tejbeer 631
                model.addAttribute("brandStockPrices", fofoUser.getBrandStockPrices(loginDetails.getFofoId(), false));
31751 tejbeer 632
                model.addAttribute("salesMap", fofoUser.getSales(loginDetails.getFofoId()));
34388 tejus.loha 633
                ChartModel cm = fofoUser.getBrandChart(loginDetails.getFofoId(),null,null,false);
26055 tejbeer 634
 
31751 tejbeer 635
                LOGGER.info("chartMap" + gson.toJson(cm));
636
                model.addAttribute("chartMap", gson.toJson(cm));
27701 tejbeer 637
 
34617 amit.gupta 638
                List<CreateOfferRequest> createOffers = offerService.getPublishedOffers(loginDetails.getFofoId(), YearMonth.from(LocalDateTime.now()));
639
 
35395 amit 640
                // Batch fetch all catalog IDs to avoid N+1 queries
641
                Set<Integer> allCatalogIds = createOffers.stream()
642
                        .flatMap(offer -> offer.getTargetSlabs().stream())
643
                        .flatMap(slab -> slab.getItemCriteriaPayouts().stream())
34617 amit.gupta 644
                        .map(ItemCriteriaPayout::getItemCriteria)
35395 amit 645
                        .flatMap(criteria -> criteria.getCatalogIds().stream())
646
                        .collect(Collectors.toSet());
34617 amit.gupta 647
 
35395 amit 648
                final Map<Integer, String> catalogBrandMap = new HashMap<>();
649
                if (!allCatalogIds.isEmpty()) {
650
                    try {
651
                        catalogBrandMap.putAll(catalogRepository.selectAllByIds(new ArrayList<>(allCatalogIds)).stream()
652
                                .collect(Collectors.toMap(c -> c.getId(), c -> c.getBrand())));
653
                    } catch (ProfitMandiBusinessException e) {
654
                        LOGGER.error("Error fetching catalogs by IDs", e);
655
                    }
656
                }
657
 
658
                List<CreateOfferRequest> publishedOffers = createOffers.stream()
659
                        .filter(createOffer -> createOffer.getTargetSlabs().stream()
660
                                .flatMap(slab -> slab.getItemCriteriaPayouts().stream())
661
                                .map(ItemCriteriaPayout::getItemCriteria)
662
                                .flatMap(criteria -> criteria.getCatalogIds().stream())
663
                                .noneMatch(catalogId -> "Live Demo".equals(catalogBrandMap.get(catalogId))))
664
                        .collect(Collectors.toList());
665
 
31751 tejbeer 666
                model.addAttribute("publishedOffers", publishedOffers);
667
                model.addAttribute("investments", fofoUser.getInvestments(loginDetails.getFofoId()));
668
                model.addAttribute("isInvestmentOk", partnerInvestmentService.isInvestmentOk(loginDetails.getFofoId(), ProfitMandiConstants.MIN_INVESTMENT_PERCENTAGE, ProfitMandiConstants.CUTOFF_INVESTMENT));
26460 amit.gupta 669
 
32626 amit.gupta 670
                double currentMonthRating = hygieneDataRepository.selectRatingAvg(loginDetails.getFofoId(), DateRangeModel.of(currentMonthStart, currentMonthEnd)) / 2;
671
                double lastMonthRating = hygieneDataRepository.selectRatingAvg(loginDetails.getFofoId(), DateRangeModel.of(lastMonthStart, currentMonthStart)) / 2;
672
                double ratingTillDate = hygieneDataRepository.selectRatingAvg(loginDetails.getFofoId(), DateRangeModel.withEndDate(currentMonthEnd)) / 2;
31751 tejbeer 673
                model.addAttribute("currentMonthRating", (float) Math.round(currentMonthRating * 10) / 10);
674
                model.addAttribute("lastMonthRating", (float) Math.round(lastMonthRating * 10) / 10);
675
                model.addAttribute("ratingTillDate", (float) Math.round(ratingTillDate * 10) / 10);
30455 amit.gupta 676
 
31751 tejbeer 677
                long hygieneCount = hygieneDataRepository.selectHygieneCount(loginDetails.getFofoId(), true, currentMonthStart, currentMonthEnd);
30455 amit.gupta 678
 
31751 tejbeer 679
                long invalidHygieneCount = hygieneDataRepository.selectHygieneCount(loginDetails.getFofoId(), false, currentMonthStart, currentMonthEnd);
680
                if (hygieneCount == 0 && invalidHygieneCount == 0) {
681
                    invalidHygieneCount = 1;
682
                }
683
                Map<Integer, String> monthValueMap = new HashMap<>();
33401 ranu 684
                for (int i = 0; i <= 12; i++) {
31751 tejbeer 685
                    LocalDateTime startOfMonth = LocalDateTime.now().withDayOfMonth(1).minusMonths(i);
686
                    monthValueMap.put(i, startOfMonth.format(DateTimeFormatter.ofPattern("MMM''uu")));
687
                }
30455 amit.gupta 688
 
31751 tejbeer 689
                MonthlyTarget monthlyTarget = monthlyTargetRepository.selectByDateAndFofoId(YearMonth.now(), fofoId);
690
                model.addAttribute("monthlyTarget", monthlyTarget);
34176 tejus.loha 691
                Set<String> brands = brandsService.getBrandsToDisplay(3).stream().map(x -> x.getName()).collect(Collectors.toSet());
34181 tejus.loha 692
 
34176 tejus.loha 693
                model.addAttribute("brands", brands);
31751 tejbeer 694
                model.addAttribute("monthValueMap", monthValueMap);
695
                model.addAttribute("month", 0);
33409 ranu 696
                model.addAttribute("hygienePercentage", (hygieneCount * 100) / (invalidHygieneCount + hygieneCount));
31751 tejbeer 697
                model.addAttribute("monthDays", LocalDate.now().minusDays(1).lengthOfMonth());
698
                model.addAttribute("dayOfMonth", LocalDate.now().minusDays(1).getDayOfMonth());
35104 vikas 699
                Map<String, Object> rewardsMap = saleRewardService.findByFofoAndRegionId(fofoId, partnerRegion.get(0).getRegionId());
35247 vikas 700
                StoreSalesTarget targetData = saleRewardService.findTargetsByFofoId(fofoId);
35104 vikas 701
                model.addAttribute("rewardsMap", rewardsMap);
35247 vikas 702
                model.addAttribute("targetData", targetData);
35104 vikas 703
                model.addAttribute("regionId", partnerRegion.get(0).getRegionId());
30455 amit.gupta 704
 
35104 vikas 705
 
706
 
32308 amit.gupta 707
            } catch (
32407 amit.gupta 708
                    ProfitMandiBusinessException e) {
31751 tejbeer 709
                LOGGER.error("FofoStore Code not found of fofoId {}", loginDetails.getFofoId());
25180 amit.gupta 710
 
31751 tejbeer 711
            }
712
            return "dashboard1";
713
        }
25649 tejbeer 714
 
31751 tejbeer 715
    }
29875 tejbeer 716
 
31751 tejbeer 717
    @RequestMapping(value = "/getGrnPendingOrderStatus", method = RequestMethod.GET)
718
    public String getGrnPendingOrderStatus(HttpServletRequest request, Model model) throws Exception {
29875 tejbeer 719
 
31751 tejbeer 720
        LoginDetails loginDetails = cookiesProcessor.getCookiesObject(request);
721
        int fofoId = loginDetails.getFofoId();
722
        List<Order> grnPendingOrders = orderRepository.selectGrnTimestampNull(fofoId, Arrays.asList(in.shop2020.model.v1.order.OrderStatus.DELIVERY_SUCCESS));
29746 manish 723
 
31751 tejbeer 724
        model.addAttribute("grnPendingOrders", grnPendingOrders);
725
        return "purchase-grn-order-status";
726
    }
29875 tejbeer 727
 
31751 tejbeer 728
    @RequestMapping(value = "/getPendingOrderStatus", method = RequestMethod.GET)
729
    public String getPendingOrderStatus(HttpServletRequest request, Model model) throws Exception {
29875 tejbeer 730
 
31751 tejbeer 731
        LoginDetails loginDetails = cookiesProcessor.getCookiesObject(request);
732
        int fofoId = loginDetails.getFofoId();
733
        ArrayList<in.shop2020.model.v1.order.OrderStatus> orderStatus = new ArrayList<>();
29875 tejbeer 734
 
31751 tejbeer 735
        orderStatus.add(in.shop2020.model.v1.order.OrderStatus.SUBMITTED_FOR_PROCESSING);
29875 tejbeer 736
 
31751 tejbeer 737
        List<Order> order = orderRepository.selectOrders(fofoId, orderStatus);
738
        List<Integer> submittedOrderIds = order.stream().filter(x -> x.getStatus() == in.shop2020.model.v1.order.OrderStatus.SUBMITTED_FOR_PROCESSING).map(x -> x.getId()).collect(Collectors.toList());
739
        model.addAttribute("submittedOrderIds", submittedOrderIds);
740
        if (!submittedOrderIds.isEmpty()) {
29875 tejbeer 741
 
31751 tejbeer 742
            List<LineItem> submittedLineItem = lineItemRepository.selectLineItem(submittedOrderIds);
743
            Map<Integer, LineItem> submittedLineItemMap = submittedLineItem.stream().collect(Collectors.toMap(x -> x.getOrderId(), x -> x));
33075 amit.gupta 744
            //LOGGER.info("submittedLineItemMap {}", submittedLineItemMap);
31751 tejbeer 745
            model.addAttribute("submittedLineItemMap", submittedLineItemMap);
746
        }
29875 tejbeer 747
 
31751 tejbeer 748
        return "purchase-pending-order-status";
749
    }
29875 tejbeer 750
 
31751 tejbeer 751
    @RequestMapping(value = "/getBilledOrderStatus", method = RequestMethod.GET)
752
    public String getBilledOrderStatus(HttpServletRequest request, Model model) throws Exception {
29875 tejbeer 753
 
31751 tejbeer 754
        LoginDetails loginDetails = cookiesProcessor.getCookiesObject(request);
755
        int fofoId = loginDetails.getFofoId();
756
        ArrayList<in.shop2020.model.v1.order.OrderStatus> orderStatus = new ArrayList<>();
757
        orderStatus.add(in.shop2020.model.v1.order.OrderStatus.BILLED);
29875 tejbeer 758
 
31751 tejbeer 759
        List<Order> order = orderRepository.selectOrders(fofoId, orderStatus);
760
        List<Integer> billedOrderIds = order.stream().filter(x -> x.getStatus() == in.shop2020.model.v1.order.OrderStatus.BILLED).map(x -> x.getId()).collect(Collectors.toList());
761
        LOGGER.info("billedOrderIds {}", billedOrderIds);
762
        model.addAttribute("billedOrderIds", billedOrderIds);
29875 tejbeer 763
 
31751 tejbeer 764
        if (!billedOrderIds.isEmpty()) {
765
            List<LineItem> billedLineItem = lineItemRepository.selectLineItem(billedOrderIds);
766
            Map<Integer, LineItem> billedLineItemMap = billedLineItem.stream().collect(Collectors.toMap(x -> x.getOrderId(), x -> x));
767
            LOGGER.info("billedLineItemMap {}", billedLineItemMap);
768
            model.addAttribute("billedLineItemMap", billedLineItemMap);
769
        }
29875 tejbeer 770
 
31751 tejbeer 771
        return "purchase-billed-order-status";
772
    }
29875 tejbeer 773
 
31751 tejbeer 774
    @RequestMapping(value = "/getShippedOrderStatus", method = RequestMethod.GET)
775
    public String getShippedOrderStatus(HttpServletRequest request, Model model) throws Exception {
29875 tejbeer 776
 
31751 tejbeer 777
        LoginDetails loginDetails = cookiesProcessor.getCookiesObject(request);
778
        int fofoId = loginDetails.getFofoId();
779
        ArrayList<in.shop2020.model.v1.order.OrderStatus> orderStatus = new ArrayList<>();
29875 tejbeer 780
 
31751 tejbeer 781
        orderStatus.add(SHIPPED_FROM_WH);
29875 tejbeer 782
 
31751 tejbeer 783
        List<Order> order = orderRepository.selectOrders(fofoId, orderStatus);
784
        List<Integer> shippedOrderIds = order.stream().filter(x -> x.getPartnerGrnTimestamp() == null).map(x -> x.getId()).collect(Collectors.toList());
785
        model.addAttribute("shippedOrderIds", shippedOrderIds);
786
        LOGGER.info("shippedOrderIds {}", shippedOrderIds);
29875 tejbeer 787
 
31751 tejbeer 788
        if (!shippedOrderIds.isEmpty()) {
789
            List<LineItem> shippedLineItem = lineItemRepository.selectLineItem(shippedOrderIds);
790
            Map<Integer, LineItem> shippedLineItemMap = shippedLineItem.stream().collect(Collectors.toMap(x -> x.getOrderId(), x -> x));
791
            LOGGER.info("shippedLineItemMap {}", shippedLineItemMap);
29875 tejbeer 792
 
31751 tejbeer 793
            model.addAttribute("shippedLineItemMap", shippedLineItemMap);
794
        }
795
        return "purchase-shipped-order-status";
796
    }
23923 amit.gupta 797
 
31337 amit.gupta 798
 
31353 amit.gupta 799
 
31751 tejbeer 800
    @RequestMapping(value = "/partnerTotalIncomeByMonth/{yearMonth}", method = RequestMethod.GET)
32836 amit.gupta 801
    public String getPartnerTotalIncomeByMonth(HttpServletRequest request, @PathVariable int yearMonth, Model model) throws
802
            Exception {
30224 tejbeer 803
 
31751 tejbeer 804
        LoginDetails loginDetails = cookiesProcessor.getCookiesObject(request);
34813 aman 805
        Map<String, Object> data = retailerService
806
                .computeIncomeMap(loginDetails.getFofoId(), yearMonth);
807
//        long pendingIncome = 0;
808
//        long partnerPurchaseIn = 0;
809
//        long partnerCreditedSale = 0;
810
//        long partnerFrontIncome = 0;
811
//
812
//        LocalDateTime startOfMonth = LocalDate.now().minusMonths(yearMonth).withDayOfMonth(1).atStartOfDay();
813
//        LocalDateTime endOfMonth = startOfMonth.plusMonths(1).toLocalDate().atStartOfDay();
814
//
815
//        AllPurchaseInventoryModel partnerlPendingSaleAmount = schemeInOutRepository.selectAllPendingSaleInventoryByFofoId(loginDetails.getFofoId(), startOfMonth, endOfMonth);
816
//        AllPurchaseInventoryModel partnerCreditedSaleAmount = schemeInOutRepository.selectAllCreditedSaleInventoryByFofoId(loginDetails.getFofoId(), startOfMonth, endOfMonth);
817
//        AllPurchaseInventoryModel partnerPurchaseInAmount = schemeInOutRepository.selectAllPurchaseInventoryByFofoId(loginDetails.getFofoId(), startOfMonth, endOfMonth);
818
//
819
//        AllPurchaseInventoryModel partnerFrontIncomes = schemeInOutRepository.selectFrontIncomeByFofoId(loginDetails.getFofoId(), startOfMonth, endOfMonth);
820
//
821
//        List<OfferPayoutImeiIncomeModel> offerPayoutImeiIncomeModels = offerPayoutRepository.getTotalPayoutsByPartnerPeriod(YearMonth.of(startOfMonth.getYear(), startOfMonth.getMonth()), loginDetails.getFofoId(), null, null);
822
//
823
//        long additionalIncome = offerPayoutImeiIncomeModels.stream().collect(Collectors.summingDouble(x -> x.getSalePayout() + x.getPurchasePayout())).longValue();
824
//        // AllPurchaseInventoryModel partnerAdditionalIncome =
825
//        // offerRepository.selectPurchaseIncome(loginDetails.getFofoId(), startOfMonth,
826
//        // endOfMonth);
827
//
828
//        LOGGER.info("partnerfrontIncomes" + partnerFrontIncomes);
829
//
830
//        LOGGER.info("partnerCreditedSaleAmount" + partnerCreditedSaleAmount);
831
//        LOGGER.info("partnerPurchaseInAmount" + partnerPurchaseInAmount);
832
//        LOGGER.info("partnerlPendingSaleAmount" + partnerlPendingSaleAmount);
833
//
834
//        if (partnerlPendingSaleAmount != null) {
835
//
836
//            pendingIncome = partnerlPendingSaleAmount.getAmount();
837
//
838
//            LOGGER.info("pendingIncome" + pendingIncome);
839
//
840
//        }
841
//
842
//        if (partnerCreditedSaleAmount != null) {
843
//
844
//            partnerCreditedSale = partnerCreditedSaleAmount.getAmount();
845
//
846
//            LOGGER.info("partnerCreditedSale" + partnerCreditedSale);
847
//
848
//        }
849
//        if (partnerFrontIncomes != null) {
850
//
851
//            partnerFrontIncome = partnerFrontIncomes.getAmount();
852
//            LOGGER.info("partnerPurchaseIn" + partnerPurchaseIn);
853
//
854
//        }
855
//        if (partnerPurchaseInAmount != null) {
856
//
857
//            partnerPurchaseIn = partnerPurchaseInAmount.getAmount();
858
//            LOGGER.info("partnerPurchaseIn" + partnerPurchaseIn);
859
//
860
//        }
861
//
862
//        LOGGER.info("partnerPurchaseInTT" + partnerPurchaseIn);
863
//        LOGGER.info("partnerCreditedSaleTT" + partnerCreditedSale);
864
//        LOGGER.info("pendingIncomeTT" + pendingIncome);
865
//
866
//        long totalIncome = partnerCreditedSale + partnerPurchaseIn + pendingIncome + partnerFrontIncome + additionalIncome;
867
//
868
//        long creditedIncome = partnerCreditedSale + partnerPurchaseIn + partnerFrontIncome + additionalIncome;
869
//
870
//        long pendingTotalIncome = pendingIncome;
871
//        LOGGER.info("totalIncome" + totalIncome);
872
//        LOGGER.info("creditedIncome" + creditedIncome);
873
//        LOGGER.info("pendingTotalIncome" + pendingTotalIncome);
874
//
875
        model.addAttribute("totalIncome", data.get("totalIncome"));
876
        model.addAttribute("creditedIncome", data.get("creditedIncome"));
877
        model.addAttribute("pendingTotalIncome", data.get("pendingIncome"));
878
//
879
//        Map<Integer, String> monthValueMap = new HashMap<>();
880
//        for (int i = 0; i <= 5; i++) {
881
//            LocalDateTime monthStart = LocalDateTime.now().withDayOfMonth(1).minusMonths(i);
882
//            monthValueMap.put(i, monthStart.format(DateTimeFormatter.ofPattern("MMM''uu")));
883
//        }
884
//
885
        model.addAttribute("month", data.get("monthIndex"));
886
        model.addAttribute("monthValueMap", data.get("monthValueMap"));
887
        LOGGER.info("income data", data);
888
        model.addAttribute("data", data);
31751 tejbeer 889
        return "partner-total-income";
890
    }
30224 tejbeer 891
 
31751 tejbeer 892
    @RequestMapping(value = "/getMonthsInvestment", method = RequestMethod.GET)
32836 amit.gupta 893
    public String getMonthsInvestment(HttpServletRequest request,
894
                                      @RequestParam(name = "month", required = true, defaultValue = "0") int month, Model model) throws Exception {
31751 tejbeer 895
        LoginDetails loginDetails = cookiesProcessor.getCookiesObject(request);
896
        int fofoId = loginDetails.getFofoId();
897
        Map<String, Object> investment = fofoUser.getInvestmentsMonths(fofoId, month);
28430 tejbeer 898
 
31751 tejbeer 899
        LocalDateTime currentMonthStart = LocalDateTime.now().withDayOfMonth(1);
900
        LocalDateTime lastMonthStart = currentMonthStart.minusMonths(1);
901
        LocalDateTime currentMonthEnd = currentMonthStart.plusMonths(1).withDayOfMonth(1);
32626 amit.gupta 902
        double currentMonthRating = hygieneDataRepository.selectRatingAvg(loginDetails.getFofoId(), DateRangeModel.of(currentMonthStart, currentMonthEnd)) / 2;
903
        double lastMonthRating = hygieneDataRepository.selectRatingAvg(loginDetails.getFofoId(), DateRangeModel.of(lastMonthStart, currentMonthStart)) / 2;
904
        double ratingTillDate = hygieneDataRepository.selectRatingAvg(loginDetails.getFofoId(), DateRangeModel.withEndDate(currentMonthEnd)) / 2;
31751 tejbeer 905
        model.addAttribute("currentMonthRating", (float) Math.round(currentMonthRating * 10) / 10);
906
        model.addAttribute("lastMonthRating", (float) Math.round(lastMonthRating * 10) / 10);
907
        model.addAttribute("ratingTillDate", (float) Math.round(ratingTillDate * 10) / 10);
28272 tejbeer 908
 
31751 tejbeer 909
        long hygieneCount = hygieneDataRepository.selectHygieneCount(loginDetails.getFofoId(), true, currentMonthStart.minusMonths(month), currentMonthEnd.minusMonths(month));
28272 tejbeer 910
 
31751 tejbeer 911
        long invalidHygieneCount = hygieneDataRepository.selectHygieneCount(loginDetails.getFofoId(), false, currentMonthStart.minusMonths(month), currentMonthEnd.minusMonths(month));
912
        if (hygieneCount == 0 && invalidHygieneCount == 0) {
913
            invalidHygieneCount = 1;
914
        }
915
        Map<Integer, String> monthValueMap = new HashMap<>();
916
        for (int i = 0; i <= 5; i++) {
917
            LocalDateTime startOfMonth = LocalDateTime.now().withDayOfMonth(1).minusMonths(i);
918
            monthValueMap.put(i, startOfMonth.format(DateTimeFormatter.ofPattern("MMM''uu")));
919
        }
920
        model.addAttribute("hygienePercentage", (hygieneCount * 100) / (invalidHygieneCount + hygieneCount));
921
        model.addAttribute("monthValueMap", monthValueMap);
922
        model.addAttribute("investments", investment);
923
        model.addAttribute("monthDays", LocalDate.now().minusMonths(month).lengthOfMonth());
924
        model.addAttribute("dayOfMonth", LocalDate.now().minusMonths(month).lengthOfMonth());
925
        model.addAttribute("month", month);
926
        return "performance";
927
    }
28272 tejbeer 928
 
31751 tejbeer 929
    @RequestMapping(value = "/investmentDetails", method = RequestMethod.GET)
930
    public String getInvestmentDetails(HttpServletRequest request, Model model) throws Exception {
931
        LoginDetails loginDetails = cookiesProcessor.getCookiesObject(request);
932
        int fofoId = loginDetails.getFofoId();
933
        ChartInvestmentModel cm = fofoUser.getInvestmentChart(fofoId);
934
        model.addAttribute("chartPieMap", gson.toJson(cm));
27884 tejbeer 935
 
31751 tejbeer 936
        LOGGER.info("InvestmentChart" + gson.toJson(cm));
937
        LOGGER.info("InvestmentChart" + cm);
938
        return "investmentdetails";
939
    }
27884 tejbeer 940
 
31751 tejbeer 941
    @RequestMapping(value = "/getlmsLineChart", method = RequestMethod.GET)
34528 ranu 942
    public String getlmsLineChart(HttpServletRequest request, Model model, @RequestParam(name = "fofoId", defaultValue = "0") int fofoId) throws Exception {
943
        if (fofoId == 0) {
944
            LoginDetails loginDetails = cookiesProcessor.getCookiesObject(request);
945
            fofoId = loginDetails.getFofoId();
946
        }
28430 tejbeer 947
 
34528 ranu 948
        ChartModel cm = fofoUser.getLmsLineChart(fofoId);
949
 
31751 tejbeer 950
        LOGGER.info("linechartMap" + gson.toJson(cm));
951
        model.addAttribute("linechartMap", gson.toJson(cm));
952
        return "lmsLineChart";
953
    }
28430 tejbeer 954
 
31751 tejbeer 955
    @RequestMapping(value = "/getMonthlyPurchaseLineChart", method = RequestMethod.GET)
34528 ranu 956
    public String getMonthlyPurchaseLineChart(HttpServletRequest request, Model model, @RequestParam(name = "fofoId", defaultValue = "0") int fofoId) throws Exception {
957
        if (fofoId == 0) {
958
            LoginDetails loginDetails = cookiesProcessor.getCookiesObject(request);
959
            fofoId = loginDetails.getFofoId();
960
        }
31751 tejbeer 961
        ChartModel cm = fofoUser.getPurchaseOrderChart(fofoId);
28439 tejbeer 962
 
31751 tejbeer 963
        LOGGER.info("chartMap" + gson.toJson(cm));
964
        model.addAttribute("chartMap", gson.toJson(cm));
28439 tejbeer 965
 
31751 tejbeer 966
        return "purchase_chart";
967
    }
28439 tejbeer 968
 
31751 tejbeer 969
    @RequestMapping(value = "/getBarChart", method = RequestMethod.GET)
34388 tejus.loha 970
    public String getBarChart(HttpServletRequest request, @RequestParam(required = false) LocalDate from, @RequestParam(required = false) LocalDate to,@RequestParam(required = false) Boolean isQuantity ,Model model) throws Exception {
31751 tejbeer 971
        LoginDetails loginDetails = cookiesProcessor.getCookiesObject(request);
972
        int fofoId = loginDetails.getFofoId();
34388 tejus.loha 973
        LocalDateTime curDate = from == null ? LocalDate.now().atStartOfDay().withDayOfMonth(1) : from.atStartOfDay();
974
        LocalDateTime lastDate = to == null ? LocalDate.now().atStartOfDay().with(LocalTime.MAX) : to.atStartOfDay();
975
        isQuantity = isQuantity==null?false:isQuantity;
976
        ChartModel cm = fofoUser.getBrandChart(fofoId, from, to,isQuantity);
977
        LOGGER.info("from" + curDate);
978
        LOGGER.info("to" + lastDate);
31751 tejbeer 979
        LOGGER.info("chartMap" + gson.toJson(cm));
980
        model.addAttribute("chartMap", gson.toJson(cm));
34388 tejus.loha 981
        model.addAttribute("from", curDate.toLocalDate());
982
        model.addAttribute("to", lastDate.toLocalDate());
983
        model.addAttribute("fofoId", fofoId);
984
        model.addAttribute("isQuantity",isQuantity);
31751 tejbeer 985
        return "bar_chart";
986
    }
28430 tejbeer 987
 
34388 tejus.loha 988
    @GetMapping(value = "/brandWiseFofoSaleData")
989
    public String getBarChartModelWise(HttpServletRequest request,
990
                                       @RequestParam LocalDate from,
991
                                       @RequestParam LocalDate to,
992
                                       @RequestParam String brand,
993
                                       @RequestParam boolean isQuantity,
994
                                       @RequestParam int fofoId, Model model) throws Exception {
995
        ChartModel cm = fofoUser.getModelBrandChart(fofoId, brand, from, to,isQuantity);
996
 
997
        LOGGER.info("chartMap" + gson.toJson(cm));
998
 
999
        model.addAttribute("chartMap", gson.toJson(cm));
1000
        return "bar_chart_model_wise";
1001
    }
1002
 
31751 tejbeer 1003
    @RequestMapping(value = "/getPriceDropDetails", method = RequestMethod.GET)
32836 amit.gupta 1004
    public String getPriceDropDetails(HttpServletRequest request,
1005
                                      @RequestParam(name = "fofoId", required = true, defaultValue = "0") int fofoId,
1006
                                      @RequestParam(name = "brand", required = true, defaultValue = "0") String brand,
1007
                                      @RequestParam(name = "yearMonth", required = false, defaultValue = "0") String yearMonth, Model model) throws
1008
            Exception {
28455 tejbeer 1009
 
31751 tejbeer 1010
        LOGGER.info("params" + fofoId + brand + yearMonth);
28455 tejbeer 1011
 
31751 tejbeer 1012
        List<PriceDropWithDetailsByYearMonthModel> priceDropdetailsList = priceDropRepository.selectBrandPendingPriceDropWithDetailsByYearMonth(fofoId, brand, yearMonth);
28455 tejbeer 1013
 
31751 tejbeer 1014
        LOGGER.info("priceDropdetailsList" + priceDropdetailsList);
28455 tejbeer 1015
 
31751 tejbeer 1016
        model.addAttribute("priceDropdetailsList", priceDropdetailsList);
28455 tejbeer 1017
 
31751 tejbeer 1018
        return "price-drop-details";
1019
    }
28825 tejbeer 1020
 
31751 tejbeer 1021
    @RequestMapping(value = "/getPriceDropDetailSixMonths", method = RequestMethod.GET)
32836 amit.gupta 1022
    public String getPriceDropDetailSixMonths(HttpServletRequest request,
1023
                                              @RequestParam(name = "fofoId", required = true, defaultValue = "0") int fofoId,
1024
                                              @RequestParam(name = "brand", required = true, defaultValue = "0") String brand, Model model) throws Exception {
28455 tejbeer 1025
 
31751 tejbeer 1026
        LOGGER.info("params" + fofoId + brand);
1027
        LocalDateTime curDate = LocalDate.now().atStartOfDay();
1028
        LocalDateTime startfMonthSixMonth = curDate.withDayOfMonth(1).minusMonths(12);
1029
        LocalDateTime endMonthTotal = curDate.withDayOfMonth(1).minusMonths(6);
28641 amit.gupta 1030
 
31751 tejbeer 1031
        List<PriceDropWithDetailsByYearMonthModel> priceDropdetailsList = priceDropRepository.selectBrandPendingPriceDropWithDetailsAndSixMonth(fofoId, brand, startfMonthSixMonth, endMonthTotal);
28641 amit.gupta 1032
 
31751 tejbeer 1033
        LOGGER.info("priceDropdetailsList" + priceDropdetailsList);
28641 amit.gupta 1034
 
31751 tejbeer 1035
        model.addAttribute("priceDropdetailsList", priceDropdetailsList);
28641 amit.gupta 1036
 
31751 tejbeer 1037
        return "price-drop-details";
1038
    }
28641 amit.gupta 1039
 
31751 tejbeer 1040
    @RequestMapping(value = "/getMonthlyPriceDrop", method = RequestMethod.GET)
34528 ranu 1041
    public String getMonthlyPriceDropTabular(HttpServletRequest request, Model model, @RequestParam(name = "fofoId", defaultValue = "0") int fofoId) throws Exception {
31751 tejbeer 1042
        LoginDetails loginDetails = cookiesProcessor.getCookiesObject(request);
34528 ranu 1043
        if (fofoId == 0) {
1044
            fofoId = loginDetails.getFofoId();
1045
        }
1046
 
31751 tejbeer 1047
        LocalDateTime curDate = LocalDate.now().atStartOfDay();
28455 tejbeer 1048
 
31751 tejbeer 1049
        LocalDateTime startOfMonth = curDate.withDayOfMonth(1).minusMonths(6);
1050
        LocalDateTime startfMonthTotal = curDate.withDayOfMonth(1).minusMonths(12);
1051
        LocalDateTime endMonthTotal = curDate.withDayOfMonth(1).minusMonths(5);
28455 tejbeer 1052
 
31751 tejbeer 1053
        LOGGER.info("startfMonthTotal" + startfMonthTotal);
29875 tejbeer 1054
 
31751 tejbeer 1055
        LOGGER.info("endMonthTotal" + endMonthTotal);
1056
        List<YearMonth> yms = new ArrayList<YearMonth>();
28455 tejbeer 1057
 
31751 tejbeer 1058
        for (int i = 0; i <= 5; i++) {
1059
            yms.add(YearMonth.from(curDate.withDayOfMonth(1).minusMonths(i)));
1060
        }
1061
        Collections.reverse(yms);
1062
        model.addAttribute("yms", yms);
1063
        LOGGER.info("ym" + yms);
28455 tejbeer 1064
 
31751 tejbeer 1065
        List<PriceDropYearMonthModel> priceDropYearMonthModels = priceDropRepository.selectBrandPendingPriceDropByYearMonth(fofoId, startOfMonth);
28455 tejbeer 1066
 
31751 tejbeer 1067
        List<PriceDropBrandModel> priceDropBrandSixMonthTotals = priceDropRepository.selectSixMonthBrandPriceDropByYearMonth(fofoId, startfMonthTotal, endMonthTotal);
28641 amit.gupta 1068
 
31751 tejbeer 1069
        DateTimeFormatter dateTimeFormatter = DateTimeFormatter.ofPattern("MM-yyyy");
28455 tejbeer 1070
 
31751 tejbeer 1071
        Map<String, Map<YearMonth, Double>> brandMonthValue = new HashMap<>();
28641 amit.gupta 1072
 
31751 tejbeer 1073
        LOGGER.info("priceDropBrandSixMonthTotals" + priceDropBrandSixMonthTotals);
28825 tejbeer 1074
 
31751 tejbeer 1075
        Map<String, Double> priceDropBrandSixMonthMap = priceDropBrandSixMonthTotals.stream().collect(Collectors.toMap(x -> x.getBrand(), x -> (double) x.getAmount()));
28825 tejbeer 1076
 
31751 tejbeer 1077
        model.addAttribute("priceDropBrandSixMonthMap", priceDropBrandSixMonthMap);
1078
        LOGGER.info("priceDropYearMonthModels" + priceDropYearMonthModels);
28641 amit.gupta 1079
 
31751 tejbeer 1080
        for (PriceDropYearMonthModel pdm : priceDropYearMonthModels) {
1081
            Map<YearMonth, Double> brandValue = new HashMap<>();
28455 tejbeer 1082
 
31751 tejbeer 1083
            if (brandMonthValue.containsKey(pdm.getBrand())) {
1084
                brandValue = brandMonthValue.get(pdm.getBrand());
1085
                brandValue.put(YearMonth.parse(pdm.getYearMonth(), dateTimeFormatter), (double) pdm.getAmount());
1086
            } else {
28455 tejbeer 1087
 
31751 tejbeer 1088
                brandValue.put(YearMonth.parse(pdm.getYearMonth(), dateTimeFormatter), (double) pdm.getAmount());
28455 tejbeer 1089
 
31751 tejbeer 1090
            }
1091
            brandMonthValue.put(pdm.getBrand(), brandValue);
1092
        }
1093
        List<String> brands = new ArrayList<>();
1094
        brands.add("Accessories");
1095
        brands.add("Oppo");
1096
        brands.add("Vivo");
1097
        brands.add("Samsung");
1098
        brands.add("Realme");
1099
        brands.add("MI");
1100
        brands.add("Tecno");
1101
        brands.add("Itel");
1102
        brands.add("Nokia");
29578 tejbeer 1103
 
31751 tejbeer 1104
        Map<String, List<Double>> sortedBrandValue = new LinkedHashMap<>();
28455 tejbeer 1105
 
31751 tejbeer 1106
        model.addAttribute("brands", brands);
28825 tejbeer 1107
 
31751 tejbeer 1108
        for (String brand : brands) {
1109
            Map<YearMonth, Double> yearMonthValue = brandMonthValue.get(brand);
1110
            for (int i = 5; i >= 0; i--) {
28455 tejbeer 1111
 
31751 tejbeer 1112
                LocalDateTime startMonth = curDate.withDayOfMonth(1).minusMonths(i);
28455 tejbeer 1113
 
31751 tejbeer 1114
                if (yearMonthValue != null) {
1115
                    if (yearMonthValue.get(YearMonth.from(startMonth)) == null) {
1116
                        yearMonthValue.put(YearMonth.from(startMonth), 0.0);
1117
                    }
28455 tejbeer 1118
 
31751 tejbeer 1119
                } else {
1120
                    yearMonthValue = new HashMap<>();
1121
                    yearMonthValue.put(YearMonth.from(startMonth), 0.0);
1122
                }
1123
            }
28455 tejbeer 1124
 
31751 tejbeer 1125
            Map<YearMonth, Double> sortedMonthBrandValue = new TreeMap<>(yearMonthValue);
28455 tejbeer 1126
 
31751 tejbeer 1127
            brandMonthValue.put(brand, sortedMonthBrandValue);
28455 tejbeer 1128
 
31751 tejbeer 1129
            sortedBrandValue.put(brand, sortedMonthBrandValue.values().stream().collect(Collectors.toList()));
28455 tejbeer 1130
 
31751 tejbeer 1131
        }
28455 tejbeer 1132
 
31751 tejbeer 1133
        LOGGER.info("sortedBrandValue" + sortedBrandValue);
1134
        model.addAttribute("fofoId", fofoId);
28455 tejbeer 1135
 
31751 tejbeer 1136
        model.addAttribute("sortedBrandValue", sortedBrandValue);
28455 tejbeer 1137
 
31751 tejbeer 1138
        return "price-drop-tabular";
1139
    }
28455 tejbeer 1140
 
31751 tejbeer 1141
    @RequestMapping(value = "/getMonthlyActivation", method = RequestMethod.GET)
34528 ranu 1142
    public String getMonthlyActivation(HttpServletRequest request, Model model, @RequestParam(name = "fofoId", defaultValue = "0") int fofoId) throws Exception {
31751 tejbeer 1143
        LoginDetails loginDetails = cookiesProcessor.getCookiesObject(request);
34528 ranu 1144
        if (fofoId == 0) {
1145
            fofoId = loginDetails.getFofoId();
1146
        }
28455 tejbeer 1147
 
31751 tejbeer 1148
        LocalDateTime curDate = LocalDate.now().atStartOfDay();
1149
        LocalDateTime startOfMonth = curDate.withDayOfMonth(1).minusMonths(6);
29578 tejbeer 1150
 
31751 tejbeer 1151
        List<YearMonth> yms = new ArrayList<YearMonth>();
29578 tejbeer 1152
 
31751 tejbeer 1153
        for (int i = 0; i <= 5; i++) {
1154
            yms.add(YearMonth.from(curDate.withDayOfMonth(1).minusMonths(i)));
1155
        }
1156
        Collections.reverse(yms);
1157
        model.addAttribute("yms", yms);
1158
        LOGGER.info("ym" + yms);
29578 tejbeer 1159
 
31751 tejbeer 1160
        List<ActivationYearMonthModel> pendingActivationModels = schemeInOutRepository.selectPendingActivationGroupByBrandYearMonth(fofoId, startOfMonth);
29578 tejbeer 1161
 
31751 tejbeer 1162
        List<ActivationBrandModel> pendingActivationBeforeSixMonth = schemeInOutRepository.selectByYearMonthActivationGroupByBrand(fofoId, startOfMonth);
29578 tejbeer 1163
 
31751 tejbeer 1164
        Map<String, Double> pendingActivationBeforeSixMonthMap = pendingActivationBeforeSixMonth.stream().collect(Collectors.toMap(x -> x.getBrand(), x -> (double) x.getAmount()));
29578 tejbeer 1165
 
31751 tejbeer 1166
        model.addAttribute("pendingActivationBeforeSixMonthMap", pendingActivationBeforeSixMonthMap);
29578 tejbeer 1167
 
31751 tejbeer 1168
        DateTimeFormatter dateTimeFormatter = DateTimeFormatter.ofPattern("MM-yyyy");
29578 tejbeer 1169
 
31751 tejbeer 1170
        Map<String, Map<YearMonth, Double>> activationBrandMonthMap = new HashMap<>();
29578 tejbeer 1171
 
31751 tejbeer 1172
        for (ActivationYearMonthModel pam : pendingActivationModels) {
1173
            Map<YearMonth, Double> brandValue = new HashMap<>();
29578 tejbeer 1174
 
31751 tejbeer 1175
            if (activationBrandMonthMap.containsKey(pam.getBrand())) {
1176
                brandValue = activationBrandMonthMap.get(pam.getBrand());
1177
                brandValue.put(YearMonth.parse(pam.getYearMonth(), dateTimeFormatter), (double) pam.getAmount());
1178
            } else {
29578 tejbeer 1179
 
31751 tejbeer 1180
                brandValue.put(YearMonth.parse(pam.getYearMonth(), dateTimeFormatter), (double) pam.getAmount());
29578 tejbeer 1181
 
31751 tejbeer 1182
            }
1183
            activationBrandMonthMap.put(pam.getBrand(), brandValue);
1184
        }
28455 tejbeer 1185
 
31751 tejbeer 1186
        List<String> brands = new ArrayList<>();
1187
        brands.add("Oppo");
1188
        brands.add("Vivo");
1189
        brands.add("Samsung");
1190
        brands.add("Realme");
1191
        brands.add("MI");
1192
        brands.add("Tecno");
1193
        brands.add("Itel");
1194
        brands.add("Nokia");
1195
        brands.add("Lava");
1196
        Map<String, List<Double>> sortedBrandValue = new LinkedHashMap<>();
29578 tejbeer 1197
 
31751 tejbeer 1198
        model.addAttribute("brands", brands);
29578 tejbeer 1199
 
31751 tejbeer 1200
        for (String brand : brands) {
1201
            Map<YearMonth, Double> yearMonthValue = activationBrandMonthMap.get(brand);
1202
            for (int i = 5; i >= 0; i--) {
1203
                LocalDateTime startMonth = curDate.withDayOfMonth(1).minusMonths(i);
1204
                if (yearMonthValue != null) {
1205
                    if (yearMonthValue.get(YearMonth.from(startMonth)) == null) {
1206
                        yearMonthValue.put(YearMonth.from(startMonth), 0.0);
1207
                    }
29578 tejbeer 1208
 
31751 tejbeer 1209
                } else {
1210
                    yearMonthValue = new HashMap<>();
1211
                    yearMonthValue.put(YearMonth.from(startMonth), 0.0);
1212
                }
1213
            }
1214
            Map<YearMonth, Double> sortedMonthBrandValue = new TreeMap<>(yearMonthValue);
1215
            activationBrandMonthMap.put(brand, sortedMonthBrandValue);
1216
            sortedBrandValue.put(brand, sortedMonthBrandValue.values().stream().collect(Collectors.toList()));
1217
        }
28455 tejbeer 1218
 
31751 tejbeer 1219
        LOGGER.info("sortedBrandValue" + sortedBrandValue);
1220
        model.addAttribute("sortedBrandValue", sortedBrandValue);
1221
        model.addAttribute("fofoId", fofoId);
1222
        return "activation-tabular";
1223
    }
28455 tejbeer 1224
 
31751 tejbeer 1225
    @RequestMapping(value = "/getMonthlyActivationItemDetail", method = RequestMethod.GET)
32836 amit.gupta 1226
    public String getMonthlyActivationItemDetail(HttpServletRequest request,
1227
                                                 @RequestParam(name = "fofoId", required = true, defaultValue = "0") int fofoId,
1228
                                                 @RequestParam(name = "brand", required = true, defaultValue = "0") String brand,
1229
                                                 @RequestParam(name = "yearMonth", required = false, defaultValue = "0") String yearMonth, Model model) throws
1230
            Exception {
28455 tejbeer 1231
 
31751 tejbeer 1232
        LOGGER.info("params" + fofoId + brand + yearMonth);
29578 tejbeer 1233
 
31751 tejbeer 1234
        List<ActivationItemDetailModel> activationItemDetails = schemeInOutRepository.selectBrandPendingActivationItemDetails(fofoId, brand, yearMonth);
29578 tejbeer 1235
 
35395 amit 1236
        if (!activationItemDetails.isEmpty()) {
1237
            // Batch fetch to avoid N+1 queries
1238
            List<Integer> inventoryItemIds = activationItemDetails.stream()
1239
                    .map(ActivationItemDetailModel::getInventoryItemId)
1240
                    .collect(Collectors.toList());
29578 tejbeer 1241
 
35395 amit 1242
            Map<Integer, List<FofoLineItem>> lineItemsByInventoryId;
1243
            try {
1244
                lineItemsByInventoryId = fofoLineItemRepository
1245
                        .selectByInventoryItemIds(inventoryItemIds).stream()
1246
                        .collect(Collectors.groupingBy(FofoLineItem::getInventoryItemId));
1247
            } catch (ProfitMandiBusinessException e) {
1248
                LOGGER.error("Error fetching FofoLineItems by inventory IDs", e);
1249
                lineItemsByInventoryId = new HashMap<>();
1250
            }
29578 tejbeer 1251
 
35395 amit 1252
            // Get max FofoOrderItemId for each inventory item
1253
            Set<Integer> fofoOrderItemIds = lineItemsByInventoryId.values().stream()
1254
                    .map(list -> list.stream().mapToInt(FofoLineItem::getFofoOrderItemId).max().orElse(-1))
1255
                    .filter(id -> id > 0)
1256
                    .collect(Collectors.toSet());
29578 tejbeer 1257
 
35395 amit 1258
            Map<Integer, FofoOrderItem> fofoOrderItemMap;
1259
            try {
1260
                fofoOrderItemMap = fofoOrderItemRepository
1261
                        .selectByIds(new ArrayList<>(fofoOrderItemIds)).stream()
1262
                        .collect(Collectors.toMap(FofoOrderItem::getId, foi -> foi));
1263
            } catch (ProfitMandiBusinessException e) {
1264
                LOGGER.error("Error fetching FofoOrderItems by IDs", e);
1265
                fofoOrderItemMap = new HashMap<>();
1266
            }
29578 tejbeer 1267
 
35395 amit 1268
            Set<Integer> orderIds = fofoOrderItemMap.values().stream()
1269
                    .map(FofoOrderItem::getOrderId)
1270
                    .collect(Collectors.toSet());
29578 tejbeer 1271
 
35395 amit 1272
            Map<Integer, FofoOrder> fofoOrderMap = new HashMap<>();
1273
            try {
1274
                fofoOrderMap = fofoOrderRepository
1275
                        .selectAllByOrderIds(new ArrayList<>(orderIds)).stream()
1276
                        .collect(Collectors.toMap(FofoOrder::getId, fo -> fo));
1277
            } catch (ProfitMandiBusinessException e) {
1278
                LOGGER.error("Error fetching FofoOrders by order IDs", e);
1279
            }
29578 tejbeer 1280
 
35395 amit 1281
            for (ActivationItemDetailModel activationItemDetail : activationItemDetails) {
1282
                List<FofoLineItem> flis = lineItemsByInventoryId.get(activationItemDetail.getInventoryItemId());
1283
                if (flis != null && !flis.isEmpty()) {
1284
                    int maxFofoOrderItemId = flis.stream().mapToInt(FofoLineItem::getFofoOrderItemId).max().orElse(-1);
1285
                    FofoOrderItem foi = fofoOrderItemMap.get(maxFofoOrderItemId);
1286
                    if (foi != null) {
1287
                        FofoOrder fo = fofoOrderMap.get(foi.getOrderId());
1288
                        if (fo != null) {
1289
                            activationItemDetail.setInvoiceNumber(fo.getInvoiceNumber());
1290
                        }
1291
                    }
1292
                }
1293
            }
31751 tejbeer 1294
        }
1295
        LOGGER.info("activationItemDetails" + activationItemDetails);
29578 tejbeer 1296
 
31751 tejbeer 1297
        model.addAttribute("activationItemDetails", activationItemDetails);
29578 tejbeer 1298
 
31751 tejbeer 1299
        return "activation-pending-item-details";
1300
    }
28455 tejbeer 1301
 
31751 tejbeer 1302
    @RequestMapping(value = "/getMonthlyActivationBeforeSixMonthsItemDetail", method = RequestMethod.GET)
32836 amit.gupta 1303
    public String getMonthlyActivationItemDetail(HttpServletRequest request,
1304
                                                 @RequestParam(name = "fofoId", required = true, defaultValue = "0") int fofoId,
1305
                                                 @RequestParam(name = "brand", required = true, defaultValue = "0") String brand, Model model) throws Exception {
31751 tejbeer 1306
        LocalDateTime curDate = LocalDate.now().atStartOfDay();
29578 tejbeer 1307
 
31751 tejbeer 1308
        LocalDateTime startOfMonth = curDate.withDayOfMonth(1).minusMonths(6);
29578 tejbeer 1309
 
31751 tejbeer 1310
        List<ActivationItemDetailModel> activationItemDetails = schemeInOutRepository.selectBrandPendingActivationItemDetailByYearMonth(fofoId, brand, startOfMonth);
29578 tejbeer 1311
 
35395 amit 1312
        if (!activationItemDetails.isEmpty()) {
1313
            // Batch fetch to avoid N+1 queries
1314
            List<Integer> inventoryItemIds = activationItemDetails.stream()
1315
                    .map(ActivationItemDetailModel::getInventoryItemId)
1316
                    .collect(Collectors.toList());
29578 tejbeer 1317
 
35395 amit 1318
            Map<Integer, List<FofoLineItem>> lineItemsByInventoryId;
1319
            try {
1320
                lineItemsByInventoryId = fofoLineItemRepository
1321
                        .selectByInventoryItemIds(inventoryItemIds).stream()
1322
                        .collect(Collectors.groupingBy(FofoLineItem::getInventoryItemId));
1323
            } catch (ProfitMandiBusinessException e) {
1324
                LOGGER.error("Error fetching FofoLineItems by inventory IDs", e);
1325
                lineItemsByInventoryId = new HashMap<>();
1326
            }
29578 tejbeer 1327
 
35395 amit 1328
            Set<Integer> fofoOrderItemIds = lineItemsByInventoryId.values().stream()
1329
                    .map(list -> list.stream().mapToInt(FofoLineItem::getFofoOrderItemId).max().orElse(-1))
1330
                    .filter(id -> id > 0)
1331
                    .collect(Collectors.toSet());
29578 tejbeer 1332
 
35395 amit 1333
            Map<Integer, FofoOrderItem> fofoOrderItemMap;
1334
            try {
1335
                fofoOrderItemMap = fofoOrderItemRepository
1336
                        .selectByIds(new ArrayList<>(fofoOrderItemIds)).stream()
1337
                        .collect(Collectors.toMap(FofoOrderItem::getId, foi -> foi));
1338
            } catch (ProfitMandiBusinessException e) {
1339
                LOGGER.error("Error fetching FofoOrderItems by IDs", e);
1340
                fofoOrderItemMap = new HashMap<>();
1341
            }
29578 tejbeer 1342
 
35395 amit 1343
            Set<Integer> orderIds = fofoOrderItemMap.values().stream()
1344
                    .map(FofoOrderItem::getOrderId)
1345
                    .collect(Collectors.toSet());
29578 tejbeer 1346
 
35395 amit 1347
            Map<Integer, FofoOrder> fofoOrderMap = new HashMap<>();
1348
            try {
1349
                fofoOrderMap = fofoOrderRepository
1350
                        .selectAllByOrderIds(new ArrayList<>(orderIds)).stream()
1351
                        .collect(Collectors.toMap(FofoOrder::getId, fo -> fo));
1352
            } catch (ProfitMandiBusinessException e) {
1353
                LOGGER.error("Error fetching FofoOrders by order IDs", e);
1354
            }
29578 tejbeer 1355
 
35395 amit 1356
            for (ActivationItemDetailModel activationItemDetail : activationItemDetails) {
1357
                List<FofoLineItem> flis = lineItemsByInventoryId.get(activationItemDetail.getInventoryItemId());
1358
                if (flis != null && !flis.isEmpty()) {
1359
                    int maxFofoOrderItemId = flis.stream().mapToInt(FofoLineItem::getFofoOrderItemId).max().orElse(-1);
1360
                    FofoOrderItem foi = fofoOrderItemMap.get(maxFofoOrderItemId);
1361
                    if (foi != null) {
1362
                        FofoOrder fo = fofoOrderMap.get(foi.getOrderId());
1363
                        if (fo != null) {
1364
                            activationItemDetail.setInvoiceNumber(fo.getInvoiceNumber());
1365
                        }
1366
                    }
1367
                }
1368
            }
31751 tejbeer 1369
        }
1370
        LOGGER.info("activationItemDetails" + activationItemDetails);
29578 tejbeer 1371
 
31751 tejbeer 1372
        model.addAttribute("activationItemDetails", activationItemDetails);
29578 tejbeer 1373
 
31751 tejbeer 1374
        return "activation-pending-item-details";
1375
    }
29578 tejbeer 1376
 
31751 tejbeer 1377
    @RequestMapping(value = "/getMonthlySamsungUpgradeOffer", method = RequestMethod.GET)
1378
    public String getMonthlySamsungUpgradeOffer(HttpServletRequest request, Model model) throws Exception {
1379
        LoginDetails loginDetails = cookiesProcessor.getCookiesObject(request);
1380
        int fofoId = loginDetails.getFofoId();
29707 tejbeer 1381
 
31751 tejbeer 1382
        LocalDateTime curDate = LocalDate.now().atStartOfDay();
1383
        LocalDateTime startOfMonth = curDate.withDayOfMonth(1).minusMonths(6);
29707 tejbeer 1384
 
31751 tejbeer 1385
        List<YearMonth> yms = new ArrayList<YearMonth>();
29707 tejbeer 1386
 
31751 tejbeer 1387
        for (int i = 0; i <= 5; i++) {
1388
            yms.add(YearMonth.from(curDate.withDayOfMonth(1).minusMonths(i)));
1389
        }
1390
        Collections.reverse(yms);
1391
        model.addAttribute("yms", yms);
1392
        LOGGER.info("ym" + yms);
29707 tejbeer 1393
 
31751 tejbeer 1394
        List<SamsungUpgradeOfferModel> suos = samsungUpgradeOfferRepository.selectUpgradeOfferGroupByYearMonth(fofoId, UpgradeOfferStatus.approved, startOfMonth);
29707 tejbeer 1395
 
31751 tejbeer 1396
        LOGGER.info("suos" + suos);
29707 tejbeer 1397
 
31751 tejbeer 1398
        List<BrandAmountModel> beforeSixMonthOffers = samsungUpgradeOfferRepository.selectUpgradeOfferByYearMonthGroupByBrand(fofoId, UpgradeOfferStatus.approved, startOfMonth);
29707 tejbeer 1399
 
31751 tejbeer 1400
        Map<String, Double> pendingUpgradeOfferBeforeSixMonthMap = beforeSixMonthOffers.stream().collect(Collectors.toMap(x -> x.getBrand(), x -> (double) x.getAmount()));
29707 tejbeer 1401
 
31751 tejbeer 1402
        model.addAttribute("pendingUpgradeOfferBeforeSixMonthMap", pendingUpgradeOfferBeforeSixMonthMap);
29707 tejbeer 1403
 
31751 tejbeer 1404
        DateTimeFormatter dateTimeFormatter = DateTimeFormatter.ofPattern("MM-yyyy");
29707 tejbeer 1405
 
31751 tejbeer 1406
        Map<String, Map<YearMonth, Double>> upgradeOfferBrandMonthMap = new HashMap<>();
29707 tejbeer 1407
 
31751 tejbeer 1408
        for (SamsungUpgradeOfferModel suo : suos) {
1409
            Map<YearMonth, Double> brandValue = new HashMap<>();
29707 tejbeer 1410
 
31751 tejbeer 1411
            if (upgradeOfferBrandMonthMap.containsKey(suo.getBrand())) {
1412
                brandValue = upgradeOfferBrandMonthMap.get(suo.getBrand());
1413
                brandValue.put(YearMonth.parse(suo.getYearMonth(), dateTimeFormatter), (double) suo.getAmount());
1414
            } else {
29707 tejbeer 1415
 
31751 tejbeer 1416
                brandValue.put(YearMonth.parse(suo.getYearMonth(), dateTimeFormatter), (double) suo.getAmount());
29707 tejbeer 1417
 
31751 tejbeer 1418
            }
1419
            upgradeOfferBrandMonthMap.put(suo.getBrand(), brandValue);
1420
        }
29707 tejbeer 1421
 
31751 tejbeer 1422
        Map<String, List<Double>> sortedBrandValue = new LinkedHashMap<>();
1423
        String brand = "Samsung";
29707 tejbeer 1424
 
31751 tejbeer 1425
        Map<YearMonth, Double> yearMonthValue = upgradeOfferBrandMonthMap.get(brand);
1426
        for (int i = 5; i >= 0; i--) {
1427
            LocalDateTime startMonth = curDate.withDayOfMonth(1).minusMonths(i);
1428
            if (yearMonthValue != null) {
1429
                if (yearMonthValue.get(YearMonth.from(startMonth)) == null) {
1430
                    yearMonthValue.put(YearMonth.from(startMonth), 0.0);
1431
                }
29707 tejbeer 1432
 
31751 tejbeer 1433
            } else {
1434
                yearMonthValue = new HashMap<>();
1435
                yearMonthValue.put(YearMonth.from(startMonth), 0.0);
1436
            }
1437
        }
1438
        Map<YearMonth, Double> sortedMonthBrandValue = new TreeMap<>(yearMonthValue);
1439
        upgradeOfferBrandMonthMap.put(brand, sortedMonthBrandValue);
1440
        sortedBrandValue.put(brand, sortedMonthBrandValue.values().stream().collect(Collectors.toList()));
1441
        LOGGER.info("sortedBrandValue" + sortedBrandValue);
29707 tejbeer 1442
 
31751 tejbeer 1443
        model.addAttribute("brand", brand);
1444
        model.addAttribute("sortedBrandValue", sortedBrandValue);
1445
        model.addAttribute("fofoId", fofoId);
1446
        return "upgrade-offer-tabular";
29707 tejbeer 1447
 
31751 tejbeer 1448
    }
29707 tejbeer 1449
 
31751 tejbeer 1450
    @RequestMapping(value = "/getMonthlyUpgradeOfferItemDetail", method = RequestMethod.GET)
32836 amit.gupta 1451
    public String getMonthlyUpgradeOfferItemDetail(HttpServletRequest request,
1452
                                                   @RequestParam(name = "fofoId", required = true, defaultValue = "0") int fofoId,
1453
                                                   @RequestParam(name = "brand", required = true, defaultValue = "0") String brand,
1454
                                                   @RequestParam(name = "yearMonth", required = false, defaultValue = "0") String yearMonth, Model model) throws
1455
            Exception {
29707 tejbeer 1456
 
31751 tejbeer 1457
        LOGGER.info("params" + fofoId + brand + yearMonth);
1458
        List<UpgradeOfferItemDetailModel> offerItems = samsungUpgradeOfferRepository.selectUpgradeOfferItemDetails(fofoId, UpgradeOfferStatus.approved, brand, yearMonth);
29707 tejbeer 1459
 
31751 tejbeer 1460
        model.addAttribute("offerItems", offerItems);
29707 tejbeer 1461
 
31751 tejbeer 1462
        return "upgrade-offer-item-detail";
1463
    }
29707 tejbeer 1464
 
31751 tejbeer 1465
    @RequestMapping(value = "/getUpgradeOfferBeforeSixMonthItemDetail", method = RequestMethod.GET)
32836 amit.gupta 1466
    public String getUpgradeOfferBeforeSixMonthItemDetail(HttpServletRequest request,
1467
                                                          @RequestParam(name = "fofoId", required = true, defaultValue = "0") int fofoId,
1468
                                                          @RequestParam(name = "brand", required = true, defaultValue = "0") String brand, Model model) throws Exception {
31751 tejbeer 1469
        LocalDateTime curDate = LocalDate.now().atStartOfDay();
29707 tejbeer 1470
 
31751 tejbeer 1471
        LocalDateTime startOfMonth = curDate.withDayOfMonth(1).minusMonths(6);
29707 tejbeer 1472
 
31751 tejbeer 1473
        List<UpgradeOfferItemDetailModel> offerItems = samsungUpgradeOfferRepository.selectUpgradeOfferItemDetailByYearMonth(fofoId, UpgradeOfferStatus.approved, brand, startOfMonth);
29707 tejbeer 1474
 
31751 tejbeer 1475
        model.addAttribute("offerItems", offerItems);
29707 tejbeer 1476
 
31751 tejbeer 1477
        return "upgrade-offer-item-detail";
1478
    }
29707 tejbeer 1479
 
31751 tejbeer 1480
    @RequestMapping(value = "/getAuthUserPartners", method = RequestMethod.GET)
32836 amit.gupta 1481
    public String AuthUserPartnersDetail(HttpServletRequest request, Model model, @RequestParam int authId) throws
1482
            Exception {
26418 tejbeer 1483
 
31751 tejbeer 1484
        Map<Integer, List<Integer>> pp = csService.getAuthUserIdPartnerIdMapping();
1485
        Map<Integer, CustomRetailer> fofoIdAndPartnerMap = retailerService.getFofoRetailers(false);
26418 tejbeer 1486
 
31751 tejbeer 1487
        Map<Integer, PartnerDetailModel> fofoIdAndallValues = partnerStatsService.getAllPartnerStats();
1488
        if (authId != 0) {
1489
            List<Integer> fofoIds = pp.get(authId);
1490
            fofoIdAndallValues = fofoIdAndallValues.entrySet().stream().filter(x -> fofoIds.contains(x.getKey())).collect(Collectors.toMap(x -> x.getKey(), x -> x.getValue()));
1491
        } else {
1492
        }
26418 tejbeer 1493
 
36268 ranu 1494
        // Build escalation map: fofoId -> escalation label (from open tickets)
1495
        Set<Integer> escalationSubCatIds = new HashSet<>(Arrays.asList(
1496
                ProfitMandiConstants.RBM_L2_ESCALATION,
1497
                ProfitMandiConstants.RBM_L3_ESCALATION,
1498
                ProfitMandiConstants.SALES_ESCALATION));
1499
        Map<Integer, String> escalationMap = new HashMap<>();
1500
        List<Integer> partnerFofoIds = new ArrayList<>(fofoIdAndallValues.keySet());
1501
        if (!partnerFofoIds.isEmpty()) {
1502
            List<Ticket> openTickets = ticketRepository.selectAllOpenTickets(partnerFofoIds);
1503
            for (Ticket t : openTickets) {
1504
                if (t.getCloseTimestamp() == null && escalationSubCatIds.contains(t.getSubCategoryId())) {
1505
                    String label;
1506
                    if (t.getSubCategoryId() == ProfitMandiConstants.RBM_L2_ESCALATION) {
1507
                        label = "RBM L2 Escalation";
1508
                    } else if (t.getSubCategoryId() == ProfitMandiConstants.RBM_L3_ESCALATION) {
1509
                        label = "RBM L3 Escalation";
1510
                    } else {
1511
                        label = "Sales Escalation";
1512
                    }
1513
                    // If partner already has an escalation, keep higher priority (Sales > L3 > L2)
1514
                    String existing = escalationMap.get(t.getFofoId());
1515
                    if (existing == null || label.contains("Sales") || (label.contains("L3") && !existing.contains("Sales"))) {
1516
                        escalationMap.put(t.getFofoId(), label);
1517
                    }
1518
                }
1519
            }
1520
        }
1521
        model.addAttribute("escalationMap", escalationMap);
1522
 
31751 tejbeer 1523
        model.addAttribute("fofoIdAndallValues", fofoIdAndallValues);
1524
        model.addAttribute("fofoIdAndPartnerMap", fofoIdAndPartnerMap);
26418 tejbeer 1525
 
31751 tejbeer 1526
        return "auth_user_partner_detail";
1527
    }
26418 tejbeer 1528
 
31751 tejbeer 1529
    @RequestMapping(value = "/getWarehousePartners", method = RequestMethod.GET)
32836 amit.gupta 1530
    public String warehousePartnersDetail(HttpServletRequest request, Model model, @RequestParam int warehouseId) throws
1531
            Exception {
31751 tejbeer 1532
        LoginDetails loginDetails = cookiesProcessor.getCookiesObject(request);
1533
        String email = loginDetails.getEmailId();
28472 tejbeer 1534
 
35480 amit 1535
        Set<Integer> authfofoIds = csService1.getAuthFofoIds(email, true);
1536
        if (authfofoIds == null) {
1537
            authfofoIds = new HashSet<>();
1538
        }
31751 tejbeer 1539
        Map<Integer, List<Integer>> warehouseIdFofoIdMap = fofoStoreRepository.selectActivePartnersByRetailerIds(new ArrayList<>(authfofoIds)).stream().collect(Collectors.groupingBy(
1540
                FofoStore::getWarehouseId, Collectors.mapping(FofoStore::getId, Collectors.toList())));
27701 tejbeer 1541
 
35099 amit 1542
        if (!warehouseIdFofoIdMap.containsKey(7573)) {
1543
            warehouseIdFofoIdMap.put(7573, new ArrayList<>());
1544
        }
1545
 
31751 tejbeer 1546
        Map<Integer, CustomRetailer> fofoIdAndPartnerMap = retailerService.getFofoRetailers(false);
1547
        Map<Integer, PartnerDetailModel> fofoIdAndallValues = adminUser.getPartnersStatDataFromFile();
35480 amit 1548
        if (fofoIdAndallValues == null) {
1549
            fofoIdAndallValues = new HashMap<>();
1550
        }
31751 tejbeer 1551
        if (warehouseId != 0) {
1552
            List<Integer> fofoIds = warehouseIdFofoIdMap.get(warehouseId);
35480 amit 1553
            if (fofoIds != null) {
1554
                fofoIdAndallValues = fofoIdAndallValues.entrySet().stream().filter(x -> fofoIds.contains(x.getKey())).collect(Collectors.toMap(x -> x.getKey(), x -> x.getValue()));
1555
            }
35854 amit 1556
        } else {
1557
            Set<Integer> finalAuthfofoIds = authfofoIds;
1558
            fofoIdAndallValues = fofoIdAndallValues.entrySet().stream().filter(x -> finalAuthfofoIds.contains(x.getKey())).collect(Collectors.toMap(x -> x.getKey(), x -> x.getValue()));
31751 tejbeer 1559
        }
1560
        ChartInvestmentModel cm = adminUser.getAllStatePartnerType(fofoIdAndallValues);
1561
        model.addAttribute("chartPieMap", gson.toJson(cm));
27545 tejbeer 1562
 
31751 tejbeer 1563
        LOGGER.info("adminUserChart" + gson.toJson(cm));
29164 manish 1564
 
31751 tejbeer 1565
        Map<Integer, MonthlyTarget> monthlyTargetMap = monthlyTargetRepository.selectByDate(YearMonth.now()).stream().collect(Collectors.toMap(x -> x.getFofoId(), x -> x));
31211 tejbeer 1566
 
36268 ranu 1567
        // Build escalation map from open tickets
1568
        Set<Integer> escalationSubCatIds2 = new HashSet<>(Arrays.asList(
1569
                ProfitMandiConstants.RBM_L2_ESCALATION,
1570
                ProfitMandiConstants.RBM_L3_ESCALATION,
1571
                ProfitMandiConstants.SALES_ESCALATION));
1572
        Map<Integer, String> escalationMap = new HashMap<>();
1573
        List<Integer> partnerFofoIds2 = new ArrayList<>(fofoIdAndallValues.keySet());
1574
        if (!partnerFofoIds2.isEmpty()) {
1575
            List<Ticket> openTickets = ticketRepository.selectAllOpenTickets(partnerFofoIds2);
1576
            for (Ticket t : openTickets) {
1577
                if (t.getCloseTimestamp() == null && escalationSubCatIds2.contains(t.getSubCategoryId())) {
1578
                    String label;
1579
                    if (t.getSubCategoryId() == ProfitMandiConstants.RBM_L2_ESCALATION) {
1580
                        label = "RBM L2 Escalation";
1581
                    } else if (t.getSubCategoryId() == ProfitMandiConstants.RBM_L3_ESCALATION) {
1582
                        label = "RBM L3 Escalation";
1583
                    } else {
1584
                        label = "Sales Escalation";
1585
                    }
1586
                    String existing = escalationMap.get(t.getFofoId());
1587
                    if (existing == null || label.contains("L3") || (label.contains("Sales") && !existing.contains("L3"))) {
1588
                        escalationMap.put(t.getFofoId(), label);
1589
                    }
1590
                }
1591
            }
1592
        }
1593
        model.addAttribute("escalationMap", escalationMap);
1594
 
31751 tejbeer 1595
        model.addAttribute("fofoIdAndallValues", fofoIdAndallValues);
1596
        model.addAttribute("fofoIdAndPartnerMap", fofoIdAndPartnerMap);
1597
        model.addAttribute("monthlyTargetMap", monthlyTargetMap);
27545 tejbeer 1598
 
31751 tejbeer 1599
        List<PartnerType> partnerTypes = Arrays.asList(PartnerType.values()).stream().filter(x -> !x.equals(PartnerType.ALL)).collect(Collectors.toList());
31211 tejbeer 1600
 
31751 tejbeer 1601
        model.addAttribute("partnerTypes", partnerTypes);
31154 tejbeer 1602
 
31751 tejbeer 1603
        return "auth_user_partner_detail";
1604
    }
27545 tejbeer 1605
 
31662 amit.gupta 1606
 
31751 tejbeer 1607
    @RequestMapping(value = "/getWarehouseWiseBrandStock", method = RequestMethod.GET)
32836 amit.gupta 1608
    public String getWarehouseWiseBrandStock(HttpServletRequest request, Model
1609
            model, @RequestParam List<Integer> warehouseId) throws Exception {
31751 tejbeer 1610
        LoginDetails loginDetails = cookiesProcessor.getCookiesObject(request);
1611
        String email = loginDetails.getEmailId();
36481 ranu 1612
        AuthUser authUser = authRepository.selectByEmailOrMobile(email);
1613
        List<Position> positions = positionRepository.selectAllByAuthUserId(authUser.getId());
35099 amit 1614
 
36481 ranu 1615
        boolean isRbmL3OrAbove = positions.stream().anyMatch(pos ->
1616
                pos.getCategoryId() == ProfitMandiConstants.TICKET_CATEGORY_RBM
1617
                        && pos.getEscalationType() != null
1618
                        && pos.getEscalationType() != EscalationType.L1
1619
                        && pos.getEscalationType() != EscalationType.L2);
1620
 
1621
        Set<Integer> fofoIds;
1622
        if (isRbmL3OrAbove) {
1623
            fofoIds = fofoStoreRepository.selectActiveStores().stream()
1624
                    .map(x -> x.getId()).collect(Collectors.toSet());
1625
        } else {
1626
            fofoIds = csService1.getAuthFofoIds(email, true);
1627
        }
1628
 
1629
        Map<Integer, List<Integer>> warehouseIdFofoIdMap = fofoStoreRepository
1630
                .selectActivePartnersByRetailerIds(new ArrayList<>(fofoIds)).stream()
1631
                .collect(Collectors.groupingBy(FofoStore::getWarehouseId,
1632
                        Collectors.mapping(FofoStore::getId, Collectors.toList())));
1633
 
35099 amit 1634
        if (!warehouseIdFofoIdMap.containsKey(7573)) {
1635
            warehouseIdFofoIdMap.put(7573, new ArrayList<>());
1636
        }
36725 ranu 1637
        if (!warehouseIdFofoIdMap.containsKey(10516)) {
1638
            warehouseIdFofoIdMap.put(10516, new ArrayList<>());
1639
        }
36480 ranu 1640
        if (!warehouseIdFofoIdMap.containsKey(7678)) {
1641
            warehouseIdFofoIdMap.put(7678, new ArrayList<>());
1642
        }
31751 tejbeer 1643
        List<WarehouseWiseBrandStockModel> warehouseWiseBrandStock = new ArrayList<>();
1644
        if (!warehouseId.contains(0)) {
1645
            warehouseWiseBrandStock = saholicInventoryCISRepository.selectGroupByWarehouseAndBrand(warehouseId);
1646
        } else {
1647
            LOGGER.info("warehouseIdFofoIdMap" + warehouseIdFofoIdMap.keySet());
1648
            warehouseWiseBrandStock = saholicInventoryCISRepository.selectGroupByWarehouseAndBrand(new ArrayList<>(warehouseIdFofoIdMap.keySet()));
27701 tejbeer 1649
 
31751 tejbeer 1650
        }
1651
        Map<Integer, String> warehouseMap = ProfitMandiConstants.WAREHOUSE_MAP;
1652
        model.addAttribute("warehouseWiseBrandStock", warehouseWiseBrandStock);
1653
        model.addAttribute("warehouseId", warehouseId);
1654
        model.addAttribute("warehouseMap", warehouseMap);
27660 tejbeer 1655
 
31751 tejbeer 1656
        return "warehouse_brand_stock";
1657
    }
27509 tejbeer 1658
 
31751 tejbeer 1659
    @RequestMapping(value = "/getWarehouseWiseData", method = RequestMethod.GET)
1660
    public String getWarehouseWiseData(HttpServletRequest request, Model model) throws Exception {
1661
        inventoryService.getItemAvailabilityAndIndent();
1662
        model.addAttribute("response1", mvcResponseSender.createResponseString(true));
1663
        return "response";
1664
    }
27529 tejbeer 1665
 
31751 tejbeer 1666
    @RequestMapping(value = "/getWarehouseWiseBrandAndCategory", method = RequestMethod.GET)
32836 amit.gupta 1667
    public String getWarehouseWiseBrandAndCategory(HttpServletRequest request, Model
1668
            model, @RequestParam List<Integer> warehouseId, @RequestParam List<String> brands, @RequestParam String
1669
                                                           category) throws Exception {
27509 tejbeer 1670
 
31751 tejbeer 1671
        Map<Integer, String> warehouseMap = ProfitMandiConstants.WAREHOUSE_MAP;
1672
        List<String> listbrands = saholicInventoryCISRepository.selectAllBrand();
1673
        List<String> listCategory = saholicInventoryCISRepository.selectAllSubCategory();
27539 tejbeer 1674
 
31751 tejbeer 1675
        model.addAttribute("warehouseMap", warehouseMap);
1676
        model.addAttribute("brands", listbrands);
1677
        model.addAttribute("listCategory", listCategory);
27538 tejbeer 1678
 
31751 tejbeer 1679
        model.addAttribute("selectedBrand", brands);
1680
        model.addAttribute("selectedWarehouse", warehouseId);
1681
        model.addAttribute("selectedCategory", category);
27539 tejbeer 1682
 
31751 tejbeer 1683
        return "warehouse_brand_item_stock";
1684
    }
27509 tejbeer 1685
 
31751 tejbeer 1686
    @RequestMapping(value = "/getWarehouseWiseItemStock", method = RequestMethod.GET)
32836 amit.gupta 1687
    public String getWarehouseWiseItemStock(HttpServletRequest request, Model
34176 tejus.loha 1688
            model, @RequestParam(name = "warehouseId") List<Integer> warehouseIds, @RequestParam List<String> brands, @RequestParam String
32836 amit.gupta 1689
                                                    category) throws Exception {
31751 tejbeer 1690
        Map<Integer, String> warehouseMap = ProfitMandiConstants.WAREHOUSE_MAP;
32836 amit.gupta 1691
        if (warehouseIds.contains(0)) {
1692
            warehouseIds.addAll(warehouseMap.keySet());
31751 tejbeer 1693
        }
37188 ranu 1694
        // Band-aid for URL '+' decode issue on brand names (e.g. "Ai+"):
1695
        // if a brand doesn't exist in catalog.brand as-is but "<brand>+" does,
1696
        // switch to the plus variant. Zero regression for the other brands.
1697
        brands = brands.stream().map(b -> {
1698
            if (b == null || b.trim().isEmpty()) return b;
1699
            String probe = b.replaceAll("\\s+$", "");
1700
            try {
1701
                if (brandsRepository.selectByBrand(b) == null
1702
                        && (probe.equals(b) || brandsRepository.selectByBrand(probe) == null)) {
1703
                    String withPlus = probe + "+";
1704
                    if (brandsRepository.selectByBrand(withPlus) != null) {
1705
                        LOGGER.info("getWarehouseWiseItemStock brand fallback: '{}' -> '{}'", b, withPlus);
1706
                        return withPlus;
1707
                    }
1708
                }
1709
            } catch (Exception e) {
1710
                LOGGER.warn("getWarehouseWiseItemStock brand fallback failed for '{}': {}", b, e.getMessage());
1711
            }
1712
            return b;
1713
        }).collect(Collectors.toList());
32836 amit.gupta 1714
        List<WarehouseWiseitemStockModel> warehouseWiseItemStock = saholicInventoryCISRepository.selectWarehouseItemStock(warehouseIds, brands, category);
27539 tejbeer 1715
 
31751 tejbeer 1716
        model.addAttribute("warehouseWiseItemStock", warehouseWiseItemStock);
1717
        model.addAttribute("warehouseMap", warehouseMap);
1718
        return "warehouse_item_details";
1719
    }
27538 tejbeer 1720
 
31751 tejbeer 1721
    @RequestMapping(value = "/getWarehouseWiseBrandPartnerSale", method = RequestMethod.GET)
32836 amit.gupta 1722
    public String getWarehouseWiseBrandPartnerSale(HttpServletRequest request, Model model, @RequestParam String
1723
            brand) throws Exception {
27701 tejbeer 1724
 
31751 tejbeer 1725
        LoginDetails loginDetails = cookiesProcessor.getCookiesObject(request);
1726
        String email = loginDetails.getEmailId();
27701 tejbeer 1727
 
31751 tejbeer 1728
        Set<Integer> authfofoIds = csService1.getAuthFofoIds(email, true);
28472 tejbeer 1729
 
31751 tejbeer 1730
        Map<Integer, WarehouseWiseBrandSaleModel> warehouseWiseBrandPartnerSales = fofoStoreRepository.selectGroupByWarehouseBrandWisePartnerSale(brand, new ArrayList<>(authfofoIds)).stream().collect(Collectors.toMap(x -> x.getWarehouseId(), x -> x));
27670 tejbeer 1731
 
31751 tejbeer 1732
        List<WarehouseWiseBrandUnbilledActivatedModel> unbilledStock = fofoStoreRepository.selectUnbilledActivateStockGroupByWarehouse(brand, new ArrayList<>(authfofoIds));
27670 tejbeer 1733
 
31751 tejbeer 1734
        for (WarehouseWiseBrandUnbilledActivatedModel un : unbilledStock) {
1735
            WarehouseWiseBrandSaleModel bpt = warehouseWiseBrandPartnerSales.get(un.getWarehouseId());
1736
            if (bpt != null) {
1737
                bpt.setAmtd(un.getUnbilledMtd());
1738
                bpt.setUamtdQty(un.getUnbilledQty());
1739
            } else {
1740
                bpt = new WarehouseWiseBrandSaleModel();
1741
                bpt.setWarehouseId(un.getWarehouseId());
1742
                bpt.setAmtd(un.getUnbilledMtd());
1743
                bpt.setUamtdQty(un.getUnbilledQty());
1744
                bpt.setLms(0);
1745
                bpt.setLmtd(0);
1746
                bpt.setMtd(0);
1747
                bpt.setMtdQty(0);
1748
                bpt.setLmtd(0);
1749
                bpt.setLmtdQty(0);
1750
                warehouseWiseBrandPartnerSales.put(un.getWarehouseId(), bpt);
1751
            }
1752
        }
1753
        Map<Integer, String> warehouseMap = ProfitMandiConstants.WAREHOUSE_MAP;
27591 tejbeer 1754
 
31751 tejbeer 1755
        Set<String> brands = inventoryService.getAllTagListingBrands();
1756
        model.addAttribute("warehouseWiseBrandPartnerSales", warehouseWiseBrandPartnerSales);
1757
        model.addAttribute("warehouseMap", warehouseMap);
1758
        model.addAttribute("brands", brands);
1759
        model.addAttribute("selectedbrand", brand);
1760
        return "warehousewise_brand_partners_sale";
1761
    }
27556 tejbeer 1762
 
31751 tejbeer 1763
    @RequestMapping(value = "/getWarehouseWiseAccesoriesBrandPartnerSale", method = RequestMethod.GET)
32836 amit.gupta 1764
    public String getWarehouseWiseAccesoriesBrandPartnerSale(HttpServletRequest request, Model
1765
            model, @RequestParam String brand) throws Exception {
31751 tejbeer 1766
        LoginDetails loginDetails = cookiesProcessor.getCookiesObject(request);
1767
        String email = loginDetails.getEmailId();
1768
        Map<String, Set<Integer>> storeGuyMap = csService.getAuthUserPartnerIdMapping();
1769
        Set<Integer> authfofoIds = storeGuyMap.get(email);
28472 tejbeer 1770
 
31751 tejbeer 1771
        AuthUser authUser = authRepository.selectByEmailOrMobile(email);
1772
        if (authfofoIds == null) {
35395 amit 1773
            List<Position> positions1 = positionRepository.selectAllByAuthUserId(authUser.getId());
31751 tejbeer 1774
            if (positions1.stream().filter(x -> x.getCategoryId() == ProfitMandiConstants.TICKET_CATEGORY_MASTER).count() > 0) {
1775
                authfofoIds = csService.getPositionCustomRetailerMap(positions1).values().stream().flatMap(x -> x.stream()).map(x -> x.getPartnerId()).collect(Collectors.toSet());
1776
            }
1777
        }
1778
        List<WarehouseWiseBrandSaleModel> warehouseWiseBrandPartnerSales = fofoStoreRepository.selectGroupByWarehouseAccesoriesBrandWisePartnerSale(brand, new ArrayList<>(authfofoIds));
1779
        Map<Integer, String> warehouseMap = ProfitMandiConstants.WAREHOUSE_MAP;
27594 tejbeer 1780
 
31751 tejbeer 1781
        Set<String> brands = inventoryService.getAllTagListingBrands();
1782
        model.addAttribute("warehouseWiseBrandPartnerSales", warehouseWiseBrandPartnerSales);
1783
        model.addAttribute("warehouseMap", warehouseMap);
1784
        model.addAttribute("brands", brands);
1785
        model.addAttribute("selectedbrand", brand);
1786
        return "warehousewise_accessoriesbrand_sale";
1787
    }
27594 tejbeer 1788
 
31751 tejbeer 1789
    @RequestMapping(value = "/getWarehouseBrandWiseItemSale", method = RequestMethod.GET)
32836 amit.gupta 1790
    public String getWarehouseBrandWiseItemSale(HttpServletRequest request, Model
1791
            model, @RequestParam List<Integer> warehouseId, @RequestParam String brand) throws Exception {
31751 tejbeer 1792
        Map<Integer, String> warehouseMap = ProfitMandiConstants.WAREHOUSE_MAP;
1793
        LoginDetails loginDetails = cookiesProcessor.getCookiesObject(request);
1794
        String email = loginDetails.getEmailId();
1795
        Set<Integer> authfofoIds = csService1.getAuthFofoIds(email, true);
1796
        Map<Integer, WarehouseBrandWiseItemSaleModel> branditemSalesMap = fofoStoreRepository.selectWarehouseBrandItemSale(warehouseId, brand, new ArrayList<>(authfofoIds)).stream().collect(Collectors.toMap(x -> x.getItemId(), x -> x));
27670 tejbeer 1797
 
31751 tejbeer 1798
        List<WarehouseBrandItemUnbilledActivatedModel> unbilledItems = fofoStoreRepository.selectWarehouseBrandItemUnbilledActivateStock(warehouseId, brand, new ArrayList<>(authfofoIds));
27670 tejbeer 1799
 
31751 tejbeer 1800
        for (WarehouseBrandItemUnbilledActivatedModel un : unbilledItems) {
1801
            WarehouseBrandWiseItemSaleModel bpt = branditemSalesMap.get(un.getItemId());
1802
            if (bpt != null) {
1803
                bpt.setAmtd(un.getAmtd());
1804
                bpt.setUamtdQty(un.getUnmtdQty());
1805
            } else {
1806
                bpt = new WarehouseBrandWiseItemSaleModel();
1807
                bpt.setWarehouseId(un.getWarehouseId());
1808
                bpt.setItemId(un.getItemId());
1809
                bpt.setAmtd(un.getAmtd());
1810
                bpt.setUamtdQty(un.getUnmtdQty());
1811
                bpt.setBrand(un.getBrand());
1812
                bpt.setModelName(un.getModelName());
1813
                bpt.setModelNumber(un.getModelNumber());
1814
                bpt.setColor(un.getColor());
1815
                bpt.setLms(0);
1816
                bpt.setLmtd(0);
1817
                bpt.setMtd(0);
1818
                bpt.setMtdQty(0);
1819
                bpt.setLmtd(0);
1820
                bpt.setLmtdQty(0);
1821
                branditemSalesMap.put(un.getItemId(), bpt);
1822
            }
1823
        }
1824
        model.addAttribute("branditemSales", branditemSalesMap);
1825
        model.addAttribute("warehouseMap", warehouseMap);
1826
        return "warehouse_partner_itemwise_sale";
1827
    }
27556 tejbeer 1828
 
31751 tejbeer 1829
    @RequestMapping(value = "/getWarehouseAccesoriesBrandWiseItemSale", method = RequestMethod.GET)
32836 amit.gupta 1830
    public String getWarehouseAccesoriesBrandWiseItemSale(HttpServletRequest request, Model
1831
            model, @RequestParam List<Integer> warehouseId, @RequestParam String brand) throws Exception {
31751 tejbeer 1832
        Map<Integer, String> warehouseMap = ProfitMandiConstants.WAREHOUSE_MAP;
1833
        LoginDetails loginDetails = cookiesProcessor.getCookiesObject(request);
1834
        String email = loginDetails.getEmailId();
1835
        Map<String, Set<Integer>> storeGuyMap = csService.getAuthUserPartnerIdMapping();
1836
        Set<Integer> authfofoIds = storeGuyMap.get(email);
1837
        List<WarehouseBrandWiseItemSaleModel> branditemSales = fofoStoreRepository.selectWarehouseAccesoriesBrandItemSale(warehouseId, brand, new ArrayList<>(authfofoIds));
1838
        model.addAttribute("branditemSales", branditemSales);
1839
        model.addAttribute("warehouseMap", warehouseMap);
1840
        return "warehouse_accessories_itemwsie_sale";
1841
    }
27594 tejbeer 1842
 
36890 aman 1843
    // Users allowed to add / edit / delete contact-us entries.
1844
    private static final Set<String> CONTACT_US_EDITORS = new HashSet<>(Arrays.asList(
1845
            "kangan.monga@smartdukaan.com",
1846
            "gaurav.mathur1@smartdukaan.com"));
1847
 
1848
    private boolean isContactUsEditor(LoginDetails loginDetails) {
1849
        return loginDetails != null && loginDetails.getEmailId() != null
1850
                && CONTACT_US_EDITORS.contains(loginDetails.getEmailId().trim().toLowerCase());
1851
    }
1852
 
31751 tejbeer 1853
    @RequestMapping(value = "/contactUs", method = RequestMethod.GET)
1854
    public String contactUs(HttpServletRequest request, Model model) throws Throwable {
36890 aman 1855
        LoginDetails loginDetails = cookiesProcessor.getCookiesObject(request);
31751 tejbeer 1856
        model.addAttribute("appContextPath", request.getContextPath());
36890 aman 1857
        // Defensive: never let a DB hiccup turn the contact page into a 500.
1858
        // The table is provisioned by ContactUsTableBootstrap, but if a query
1859
        // still fails we render the page with empty lists rather than crashing.
1860
        try {
1861
            model.addAttribute("mainContacts", contactUsRepository.findActiveBySection(ContactUs.SECTION_MAIN));
1862
            model.addAttribute("escalationContacts", contactUsRepository.findActiveBySection(ContactUs.SECTION_ESCALATION));
1863
        } catch (Exception e) {
1864
            LOGGER.error("Failed loading contact_us data; rendering empty contact list", e);
1865
            model.addAttribute("mainContacts", java.util.Collections.emptyList());
1866
            model.addAttribute("escalationContacts", java.util.Collections.emptyList());
1867
        }
1868
        model.addAttribute("contactUsEditor", isContactUsEditor(loginDetails));
31751 tejbeer 1869
        return "contact-us";
1870
    }
23923 amit.gupta 1871
 
36890 aman 1872
    @RequestMapping(value = "/contactUs/save", method = RequestMethod.POST)
1873
    @ResponseBody
1874
    public Map<String, Object> saveContactUs(HttpServletRequest request,
1875
                                             @RequestParam(name = "id", defaultValue = "0") int id,
1876
                                             @RequestParam(name = "section") String section,
1877
                                             @RequestParam(name = "area", defaultValue = "") String area,
1878
                                             @RequestParam(name = "baseArea", defaultValue = "") String baseArea,
1879
                                             @RequestParam(name = "name", defaultValue = "") String name,
1880
                                             @RequestParam(name = "designation", defaultValue = "") String designation,
1881
                                             @RequestParam(name = "mobile", defaultValue = "") String mobile,
37019 aman 1882
                                             @RequestParam(name = "email", defaultValue = "") String email,
1883
                                             @RequestParam(name = "position", defaultValue = "") String position,
1884
                                             @RequestParam(name = "afterId", defaultValue = "0") int afterId) throws Exception {
36890 aman 1885
        Map<String, Object> response = new HashMap<>();
1886
        LoginDetails loginDetails = cookiesProcessor.getCookiesObject(request);
1887
        if (!isContactUsEditor(loginDetails)) {
1888
            response.put("success", false);
1889
            response.put("message", "You are not authorised to edit contacts.");
1890
            return response;
1891
        }
1892
 
1893
        if (!ContactUs.SECTION_MAIN.equals(section) && !ContactUs.SECTION_ESCALATION.equals(section)) {
1894
            response.put("success", false);
1895
            response.put("message", "Invalid section.");
1896
            return response;
1897
        }
1898
        if (name == null || name.trim().isEmpty()) {
1899
            response.put("success", false);
1900
            response.put("message", "Name is required.");
1901
            return response;
1902
        }
1903
 
1904
        ContactUs contact;
1905
        if (id > 0) {
1906
            contact = contactUsRepository.selectById(id);
1907
            if (contact == null || !contact.isActive()) {
1908
                response.put("success", false);
1909
                response.put("message", "Contact not found.");
1910
                return response;
1911
            }
1912
        } else {
1913
            contact = new ContactUs();
1914
            contact.setSection(section);
1915
            contact.setSortOrder(contactUsRepository.maxSortOrder(section) + 10);
1916
        }
1917
        contact.setArea(area == null ? "" : area.trim());
1918
        contact.setBaseArea(baseArea == null ? "" : baseArea.trim());
1919
        contact.setName(name.trim());
1920
        contact.setDesignation(designation == null ? "" : designation.trim());
1921
        contact.setMobile(mobile == null || mobile.trim().isEmpty() ? "-" : mobile.trim());
1922
        contact.setEmail(email == null ? "" : email.trim());
1923
        contactUsRepository.persist(contact);
1924
 
37019 aman 1925
        // Position control: place the new/edited contact within its section. A NEW contact defaults
1926
        // to the bottom; an EDIT keeps its place unless the editor explicitly chose a new position.
1927
        String pos = (position == null || position.trim().isEmpty())
1928
                ? (id > 0 ? "KEEP" : "BOTTOM")
1929
                : position.trim().toUpperCase();
1930
        if (!"KEEP".equals(pos)) {
1931
            repositionInSection(section, contact.getId(), pos, afterId);
1932
        }
1933
 
36890 aman 1934
        response.put("success", true);
1935
        return response;
1936
    }
1937
 
1938
    @RequestMapping(value = "/contactUs/delete", method = RequestMethod.POST)
1939
    @ResponseBody
1940
    public Map<String, Object> deleteContactUs(HttpServletRequest request,
1941
                                               @RequestParam(name = "id") int id) throws Exception {
1942
        Map<String, Object> response = new HashMap<>();
1943
        LoginDetails loginDetails = cookiesProcessor.getCookiesObject(request);
1944
        if (!isContactUsEditor(loginDetails)) {
1945
            response.put("success", false);
1946
            response.put("message", "You are not authorised to edit contacts.");
1947
            return response;
1948
        }
1949
        ContactUs contact = contactUsRepository.selectById(id);
1950
        if (contact == null) {
1951
            response.put("success", false);
1952
            response.put("message", "Contact not found.");
1953
            return response;
1954
        }
1955
        contact.setActive(false);
1956
        contactUsRepository.persist(contact);
1957
        response.put("success", true);
1958
        return response;
1959
    }
1960
 
37019 aman 1961
    @RequestMapping(value = "/contactUs/reorder", method = RequestMethod.POST)
1962
    @ResponseBody
1963
    public Map<String, Object> reorderContactUs(HttpServletRequest request,
1964
                                                @RequestParam(name = "id") int id,
1965
                                                @RequestParam(name = "direction") String direction) throws Exception {
1966
        Map<String, Object> response = new HashMap<>();
1967
        LoginDetails loginDetails = cookiesProcessor.getCookiesObject(request);
1968
        if (!isContactUsEditor(loginDetails)) {
1969
            response.put("success", false);
1970
            response.put("message", "You are not authorised to edit contacts.");
1971
            return response;
1972
        }
1973
        ContactUs contact = contactUsRepository.selectById(id);
1974
        if (contact == null || !contact.isActive()) {
1975
            response.put("success", false);
1976
            response.put("message", "Contact not found.");
1977
            return response;
1978
        }
1979
        boolean up = "UP".equalsIgnoreCase(direction);
1980
        List<ContactUs> list = contactUsRepository.findActiveBySection(contact.getSection());
1981
        int idx = indexOfContact(list, id);
1982
        int target = up ? idx - 1 : idx + 1;
1983
        if (idx < 0 || target < 0 || target >= list.size()) {
1984
            // Already at the top/bottom edge - nothing to move.
1985
            response.put("success", true);
1986
            return response;
1987
        }
1988
        ContactUs tmp = list.get(idx);
1989
        list.set(idx, list.get(target));
1990
        list.set(target, tmp);
1991
        renumberSequential(list);
1992
        response.put("success", true);
1993
        return response;
1994
    }
1995
 
1996
    /**
1997
     * Places {@code contactId} within its section per {@code position} (TOP | BOTTOM | AFTER) and
1998
     * renumbers the whole section's sort_order to a clean 10, 20, 30 … sequence, so ordering is
1999
     * always gap-free and deterministic. {@code afterId} is only consulted for AFTER.
2000
     */
2001
    private void repositionInSection(String section, int contactId, String position, int afterId) {
2002
        List<ContactUs> list = contactUsRepository.findActiveBySection(section);
2003
        int movingIdx = indexOfContact(list, contactId);
2004
        if (movingIdx < 0) {
2005
            return; // not found (should not happen immediately after persist)
2006
        }
2007
        ContactUs moving = list.remove(movingIdx);
2008
        int index;
2009
        if ("TOP".equals(position)) {
2010
            index = 0;
2011
        } else if ("AFTER".equals(position)) {
2012
            int anchorIdx = indexOfContact(list, afterId);
2013
            index = (anchorIdx >= 0) ? anchorIdx + 1 : list.size();
2014
        } else { // BOTTOM
2015
            index = list.size();
2016
        }
2017
        list.add(index, moving);
2018
        renumberSequential(list);
2019
    }
2020
 
2021
    /** Assigns sort_order 10, 20, 30 … in list order, persisting only rows whose order changed. */
2022
    private void renumberSequential(List<ContactUs> orderedContacts) {
2023
        for (int i = 0; i < orderedContacts.size(); i++) {
2024
            ContactUs c = orderedContacts.get(i);
2025
            int newOrder = (i + 1) * 10;
2026
            if (c.getSortOrder() != newOrder) {
2027
                c.setSortOrder(newOrder);
2028
                contactUsRepository.persist(c);
2029
            }
2030
        }
2031
    }
2032
 
2033
    private int indexOfContact(List<ContactUs> list, int id) {
2034
        for (int i = 0; i < list.size(); i++) {
2035
            if (list.get(i).getId() == id) {
2036
                return i;
2037
            }
2038
        }
2039
        return -1;
2040
    }
2041
 
31751 tejbeer 2042
    @RequestMapping(value = "/notifications", method = RequestMethod.GET)
32836 amit.gupta 2043
    public String getNotificationsWithType(HttpServletRequest request, @RequestParam(required = false) MessageType
2044
            messageType, @RequestParam(name = "offset", defaultValue = "0") int offset,
2045
                                           @RequestParam(name = "limit", defaultValue = "20") int limit, Model model) throws Exception {
31751 tejbeer 2046
        LoginDetails loginDetails = cookiesProcessor.getCookiesObject(request);
2047
        int userId = 0;
2048
        boolean isAdmin = roleManager.isAdmin(loginDetails.getRoleIds());
2049
        if (isAdmin) {
2050
            userId = loginDetails.getFofoId();
2051
        } else {
2052
            userId = userAccountRepository.selectUserIdByRetailerId(loginDetails.getFofoId());
2053
        }
2054
        List<Notification> notifications = null;
25683 tejbeer 2055
 
31751 tejbeer 2056
        List<NotificationCampaign> notificationCampaigns = notificationCampaignRepository.getNotifications(messageType, userId, offset, limit);
35943 amit 2057
        LOGGER.debug("messageType {}", messageType);
34176 tejus.loha 2058
        if (messageType != null) {
2059
            notifications = fofoUser.getNotifications(notificationCampaigns, messageType);
26086 tejbeer 2060
 
34176 tejus.loha 2061
            model.addAttribute("notifications", notifications);
25683 tejbeer 2062
 
35943 amit 2063
            LOGGER.debug("notifications count {}", notifications.size());
34176 tejus.loha 2064
        }
31751 tejbeer 2065
        return "notification-template";
2066
    }
25683 tejbeer 2067
 
31751 tejbeer 2068
    @RequestMapping(value = "/notifyDocument/documentId", method = RequestMethod.GET)
32836 amit.gupta 2069
    public ResponseEntity<?> retailerDocumentById(HttpServletRequest request,
2070
                                                  @RequestParam(name = ProfitMandiConstants.DOCUMENT_ID) int documentId, @RequestParam int cid) throws
2071
            ProfitMandiBusinessException {
31751 tejbeer 2072
        Document document = documentRepository.selectById(documentId);
2073
        NotificationCampaign nc = notificationCampaignRepository.selectById(cid);
2074
        if (nc.getDocumentId() == null) {
2075
            throw new ProfitMandiBusinessException("cid", nc.getId(), "not available");
2076
        }
2077
        if (nc.getDocumentId() != documentId) {
2078
            throw new ProfitMandiBusinessException(ProfitMandiConstants.DOCUMENT_ID, documentId, "RTLR_1014");
2079
        }
2080
        return responseSender.ok(document);
2081
    }
25649 tejbeer 2082
 
32934 amit.gupta 2083
    @Autowired
2084
    PsiSmartService psiSmartService;
34176 tejus.loha 2085
 
32934 amit.gupta 2086
    @RequestMapping(value = "/psi/auth-endpoint", method = RequestMethod.GET)
32935 amit.gupta 2087
    public ResponseEntity<?> getPartnerPSIUrl(HttpServletRequest request) throws Exception {
32934 amit.gupta 2088
        LoginDetails loginDetails = cookiesProcessor.getCookiesObject(request);
2089
        CustomRetailer customRetailer = retailerService.getAllFofoRetailers().get(loginDetails.getFofoId());
2090
        return responseSender.ok(psiSmartService.getRegistrationEndPoint(customRetailer.getMobileNumber()));
2091
    }
2092
 
31751 tejbeer 2093
    @RequestMapping(value = "/notifyDocument/download", method = RequestMethod.GET)
32836 amit.gupta 2094
    public ResponseEntity<?> downloadRetailerDocument(HttpServletRequest request, @RequestParam int cid, Model model) throws
2095
            ProfitMandiBusinessException {
25651 tejbeer 2096
 
31751 tejbeer 2097
        NotificationCampaign nc = notificationCampaignRepository.selectById(cid);
25651 tejbeer 2098
 
31751 tejbeer 2099
        if (nc.getDocumentId() == null) {
2100
            throw new ProfitMandiBusinessException("cid", nc.getId(), "not available");
2101
        }
25651 tejbeer 2102
 
31751 tejbeer 2103
        Document document = documentRepository.selectById(nc.getDocumentId());
25651 tejbeer 2104
 
31751 tejbeer 2105
        FileInputStream file = null;
2106
        try {
2107
            file = new FileInputStream(document.getPath() + File.separator + document.getName());
2108
        } catch (FileNotFoundException e) {
2109
            LOGGER.error("Retailer Document file not found : ", e);
2110
            throw new ProfitMandiBusinessException(ProfitMandiConstants.DOCUMENT_ID, document.getId(), "RTLR_1013");
2111
        }
32308 amit.gupta 2112
// ByteArrayOutputStream byteArrayOutputStream = new
2113
// ByteArrayOutputStream();
2114
// ExcelUtils.writeSchemeModels(schemeModels, byteArrayOutputStream);
25651 tejbeer 2115
 
31751 tejbeer 2116
        final HttpHeaders headers = new HttpHeaders();
2117
        String contentType = "";
2118
        if (document.getContentType() == ContentType.JPEG) {
2119
            contentType = "image/jpeg";
2120
        } else if (document.getContentType() == ContentType.PNG) {
2121
            contentType = "image/png";
2122
        } else if (document.getContentType() == ContentType.PDF) {
2123
            contentType = "application/pdf";
2124
        }
2125
        headers.set("Content-Type", contentType);
2126
        headers.set("Content-disposition", "inline; filename=" + document.getName());
2127
        headers.setContentLength(document.getSize());
2128
        final InputStreamResource inputStreamResource = new InputStreamResource(file);
2129
        return new ResponseEntity<InputStreamResource>(inputStreamResource, headers, HttpStatus.OK);
2130
    }
26460 amit.gupta 2131
 
31751 tejbeer 2132
    @RequestMapping(value = "/getItemWiseTertiary", method = RequestMethod.GET)
32836 amit.gupta 2133
    public String getItemWiseTertiary(HttpServletRequest request,
2134
                                      @RequestParam(name = ProfitMandiConstants.FOFO_ID) int fofoId, Model model) throws ProfitMandiBusinessException {
31751 tejbeer 2135
        List<ItemWiseTertiaryModel> itemWiseTertiary = fofoOrderRepository.SelectItemWiseTertiary(fofoId);
27579 tejbeer 2136
 
31751 tejbeer 2137
        LOGGER.info("itemWiseTertiary" + itemWiseTertiary);
2138
        CustomRetailer customRetailer = retailerService.getFofoRetailer(fofoId);
2139
        model.addAttribute("customRetailer", customRetailer);
2140
        model.addAttribute("itemWiseTertiary", itemWiseTertiary);
2141
        return "item-wise-tertiary";
2142
    }
27579 tejbeer 2143
 
31751 tejbeer 2144
    @RequestMapping(value = "/getItemWiseIndent", method = RequestMethod.GET)
32836 amit.gupta 2145
    public String getItemWiseIndent(HttpServletRequest request,
2146
                                    @RequestParam(name = ProfitMandiConstants.FOFO_ID) int fofoId, Model model) throws ProfitMandiBusinessException {
27586 tejbeer 2147
 
31751 tejbeer 2148
        List<Order> unbilledOrders = transactionService.getInTransitOrders(fofoId);
2149
        model.addAttribute("unbilledOrders", unbilledOrders);
27586 tejbeer 2150
 
31751 tejbeer 2151
        return "item-wise-indent";
2152
    }
27586 tejbeer 2153
 
31751 tejbeer 2154
    @RequestMapping(value = "/getPartnerInvestment", method = RequestMethod.GET)
32836 amit.gupta 2155
    public String getPartnerInvestment(HttpServletRequest request,
2156
                                       @RequestParam(name = ProfitMandiConstants.FOFO_ID) int fofoId, Model model) throws Exception {
31751 tejbeer 2157
        Map<Integer, PartnerDetailModel> partnerStats = adminUser.getPartnersStatDataFromFile();
2158
        PartnerDetailModel partnerDetailModel = partnerStats.get(fofoId);
2159
        CustomRetailer customRetailer = retailerService.getFofoRetailer(fofoId);
2160
        model.addAttribute("partnerDetailModel", partnerDetailModel);
2161
        model.addAttribute("customRetailer", customRetailer);
2162
        return "partner-investment";
2163
    }
27727 tejbeer 2164
 
31751 tejbeer 2165
    @RequestMapping(value = "/getPartnerPendingIndentItem", method = RequestMethod.GET)
32836 amit.gupta 2166
    public String getPartnerPendingIndentItem(HttpServletRequest request, @RequestParam int warehouseId,
2167
                                              @RequestParam int itemId, Model model) throws ProfitMandiBusinessException {
31751 tejbeer 2168
        List<PartnerPendingIndentItemModel> partnerPendingIndent = fofoStoreRepository.selectPartnerPendingIndentItem(itemId, warehouseId);
27636 tejbeer 2169
 
31751 tejbeer 2170
        model.addAttribute("partnerPendingIndent", partnerPendingIndent);
2171
        return "partner-pending-indent-item";
2172
    }
27704 amit.gupta 2173
 
31751 tejbeer 2174
    @RequestMapping(value = "/getPatnerActivateStock", method = RequestMethod.GET)
32836 amit.gupta 2175
    public String getPartnerActivateStockItem(HttpServletRequest request,
2176
                                              @RequestParam(name = ProfitMandiConstants.FOFO_ID) int fofoId, Model model) throws Exception {
31751 tejbeer 2177
        List<ActivateItemModel> activateStocks = new ArrayList<>();
2178
        List<InventoryItem> inventoryItems = inventoryItemRepository.selectByActivatedNotSold(fofoId);
2179
        CustomRetailer customRetailer = retailerService.getFofoRetailer(fofoId);
27636 tejbeer 2180
 
31751 tejbeer 2181
        for (InventoryItem inventoryItem : inventoryItems) {
2182
            TagListing tagListing = tagListingRepository.selectByItemId(inventoryItem.getItemId());
2183
            Item item = itemRepository.selectById(inventoryItem.getItemId());
2184
            ActivateItemModel aim = new ActivateItemModel();
2185
            aim.setFofoId(inventoryItem.getFofoId());
2186
            aim.setQuantity(inventoryItem.getGoodQuantity());
2187
            aim.setAmount(tagListing.getSellingPrice());
2188
            aim.setItemDescription(item.getItemDescription());
2189
            aim.setItemId(inventoryItem.getItemId());
2190
            activateStocks.add(aim);
2191
        }
27636 tejbeer 2192
 
31751 tejbeer 2193
        model.addAttribute("activateStocks", activateStocks);
2194
        model.addAttribute("customRetailer", customRetailer);
2195
        return "partner-activate-stock";
2196
    }
27636 tejbeer 2197
 
31751 tejbeer 2198
    @RequestMapping(value = "/getPatnerBrandWiseMTDSale", method = RequestMethod.GET)
32836 amit.gupta 2199
    public String getPatnerBrandWiseMTDSale(HttpServletRequest request,
2200
                                            @RequestParam(name = ProfitMandiConstants.FOFO_ID) int fofoId, Model model) throws Exception {
31751 tejbeer 2201
        LocalDateTime curDate = LocalDate.now().atStartOfDay();
2202
        CustomRetailer customRetailer = retailerService.getFofoRetailer(fofoId);
2203
        Map<String, Double> brandMtdAmount = fofoOrderItemRepository.selectSumAmountGroupByBrand(curDate.withDayOfMonth(1), curDate.with(LocalTime.MAX), fofoId);
2204
        Map<String, Long> brandMtdQty = fofoOrderItemRepository.selectSumQuantityGroupByBrand(curDate.withDayOfMonth(1), curDate.with(LocalTime.MAX), fofoId);
2205
        Double accesoriesmtdsale = fofoOrderRepository.selectSumSaleGroupByFofoIdsForMobileOrAccessories(fofoId, curDate.withDayOfMonth(1), curDate.with(LocalTime.MAX), Optional.of(false)).get(fofoId);
2206
        Long accesoriesmtdqty = fofoOrderRepository.selectSumSaleQuantityGroupByFofoIdsForMobileOrAccessories(fofoId, curDate.withDayOfMonth(1), curDate.with(LocalTime.MAX), Optional.of(false)).get(fofoId);
27638 tejbeer 2207
 
31751 tejbeer 2208
        LOGGER.info("accesoriesmtdsale" + accesoriesmtdsale);
2209
        model.addAttribute("brandMtdAmount", brandMtdAmount);
2210
        model.addAttribute("brandMtdQty", brandMtdQty);
2211
        model.addAttribute("accesoriesmtdsale", accesoriesmtdsale);
2212
        model.addAttribute("accesoriesmtdqty", accesoriesmtdqty);
27638 tejbeer 2213
 
31751 tejbeer 2214
        model.addAttribute("customRetailer", customRetailer);
2215
        return "partner-brand-mtd-sale";
2216
    }
27636 tejbeer 2217
 
31751 tejbeer 2218
    @RequestMapping(value = "/getPatnerBrandWiseLMTDSale", method = RequestMethod.GET)
32836 amit.gupta 2219
    public String getPatnerBrandWiseLMTDSale(HttpServletRequest request,
2220
                                             @RequestParam(name = ProfitMandiConstants.FOFO_ID) int fofoId, Model model) throws Exception {
31751 tejbeer 2221
        LocalDateTime curDate = LocalDate.now().atStartOfDay();
2222
        CustomRetailer customRetailer = retailerService.getFofoRetailer(fofoId);
2223
        Map<String, Double> brandLMtdAmount = fofoOrderItemRepository.selectSumAmountGroupByBrand(
2224
                curDate.withDayOfMonth(1).minusMonths(1), curDate.with(LocalTime.MAX).minusMonths(1), fofoId);
2225
        Map<String, Long> brandLmtdQty = fofoOrderItemRepository.selectSumQuantityGroupByBrand(
2226
                curDate.withDayOfMonth(1).minusMonths(1), curDate.with(LocalTime.MAX).minusMonths(1), fofoId);
27637 tejbeer 2227
 
31751 tejbeer 2228
        Double accesorieslmtdsale = fofoOrderRepository.selectSumSaleGroupByFofoIdsForMobileOrAccessories(fofoId, curDate.withDayOfMonth(1).minusMonths(1), curDate.with(LocalTime.MAX).minusMonths(1), Optional.of(false)).get(fofoId);
2229
        Long accesorieslmtdqty = fofoOrderRepository.selectSumSaleQuantityGroupByFofoIdsForMobileOrAccessories(fofoId, curDate.withDayOfMonth(1).minusMonths(1), curDate.with(LocalTime.MAX).minusMonths(1), Optional.of(false)).get(fofoId);
27638 tejbeer 2230
 
31751 tejbeer 2231
        model.addAttribute("brandLMtdAmount", brandLMtdAmount);
2232
        model.addAttribute("brandLmtdQty", brandLmtdQty);
2233
        model.addAttribute("accesorieslmtdqty", accesorieslmtdqty);
2234
        model.addAttribute("accesorieslmtdsale", accesorieslmtdsale);
2235
        model.addAttribute("customRetailer", customRetailer);
2236
        return "partner-brand-lmtd-sale";
2237
    }
27637 tejbeer 2238
 
31751 tejbeer 2239
    @RequestMapping(value = "/getPatnerBrandWiseLMSSale", method = RequestMethod.GET)
32836 amit.gupta 2240
    public String getPatnerBrandWiseLMSSale(HttpServletRequest request,
2241
                                            @RequestParam(name = ProfitMandiConstants.FOFO_ID) int fofoId, Model model) throws Exception {
31751 tejbeer 2242
        LocalDateTime curDate = LocalDate.now().atStartOfDay();
2243
        CustomRetailer customRetailer = retailerService.getFofoRetailer(fofoId);
2244
        int lengthOfMonth = YearMonth.from(curDate.minusMonths(1)).lengthOfMonth();
27660 tejbeer 2245
 
31751 tejbeer 2246
        Map<String, Double> brandLMSAmount = fofoOrderItemRepository.selectSumAmountGroupByBrand(
2247
                curDate.withDayOfMonth(1).minusMonths(1), curDate.withDayOfMonth(1), fofoId);
2248
        Map<String, Long> brandLmsQty = fofoOrderItemRepository.selectSumQuantityGroupByBrand(
2249
                curDate.withDayOfMonth(1).minusMonths(1), curDate.withDayOfMonth(1), fofoId);
27660 tejbeer 2250
 
31751 tejbeer 2251
        Double accesorieslmssale = fofoOrderRepository.selectSumSaleGroupByFofoIdsForMobileOrAccessories(fofoId, curDate.withDayOfMonth(1).minusMonths(1), curDate.withDayOfMonth(1), Optional.of(false)).get(fofoId);
2252
        Long accesorieslmsqty = fofoOrderRepository.selectSumSaleQuantityGroupByFofoIdsForMobileOrAccessories(fofoId, curDate.withDayOfMonth(1).minusMonths(1), curDate.withDayOfMonth(1), Optional.of(false)).get(fofoId);
27660 tejbeer 2253
 
31751 tejbeer 2254
        model.addAttribute("brandLMSAmount", brandLMSAmount);
2255
        model.addAttribute("brandLmsQty", brandLmsQty);
2256
        model.addAttribute("accesorieslmssale", accesorieslmssale);
2257
        model.addAttribute("accesorieslmsqty", accesorieslmsqty);
2258
        model.addAttribute("customRetailer", customRetailer);
2259
        return "partner-brand-lms-sale";
2260
    }
27660 tejbeer 2261
 
31751 tejbeer 2262
    @RequestMapping(value = "/getPatnerInStock", method = RequestMethod.GET)
32836 amit.gupta 2263
    public String getPatnerInStock(HttpServletRequest request,
2264
                                   @RequestParam(name = ProfitMandiConstants.FOFO_ID) int fofoId, Model model) throws Exception {
27640 tejbeer 2265
 
31751 tejbeer 2266
        CustomRetailer customRetailer = retailerService.getFofoRetailer(fofoId);
27640 tejbeer 2267
 
31751 tejbeer 2268
        List<InStockBrandModel> mobileStocks = currentInventorySnapshotRepository.selectSumInStockMobileGroupByBrand(fofoId);
2269
        List<InStockBrandModel> accesStock = currentInventorySnapshotRepository.selectSumInStockAccessoriesGroupByBrand(fofoId);
27640 tejbeer 2270
 
31751 tejbeer 2271
        List<InStockBrandItemModel> stockItemlist = currentInventorySnapshotRepository.selectInStockItemsByBrand(fofoId);
27660 tejbeer 2272
 
31751 tejbeer 2273
        Map<String, List<InStockBrandItemModel>> stockItemMap = stockItemlist.stream().collect(Collectors.groupingBy(InStockBrandItemModel::getBrand));
27660 tejbeer 2274
 
31751 tejbeer 2275
        model.addAttribute("stockItemMap", stockItemMap);
2276
        model.addAttribute("mobileStock", mobileStocks);
2277
        model.addAttribute("accesStock", accesStock);
2278
        model.addAttribute("customRetailer", customRetailer);
2279
        return "partner-instock-item";
2280
    }
27640 tejbeer 2281
 
31751 tejbeer 2282
    @RequestMapping(value = "/getOpenTicketByFofoId", method = RequestMethod.GET)
32836 amit.gupta 2283
    public String getOpenTicketByFofoId(HttpServletRequest request,
2284
                                        @RequestParam(name = ProfitMandiConstants.FOFO_ID) int fofoId, Model model) throws Exception {
31751 tejbeer 2285
        Map<Integer, AuthUser> ticketIdAuthUser = new HashMap<>();
2286
        CustomRetailer customRetailer = retailerService.getFofoRetailer(fofoId);
2287
        List<Integer> ticketIds = ticketRepository.selectAllOpenTicketByRetailer(fofoId).stream().map(x -> x.getId()).collect(Collectors.toList());
2288
        List<TicketAssigned> ticketAssigns = ticketAssignedRepository.selectByTicketIds(ticketIds);
27660 tejbeer 2289
 
35395 amit 2290
        if (!ticketAssigns.isEmpty()) {
2291
            // Batch fetch AuthUsers to avoid N+1 queries
2292
            Set<Integer> assigneeIds = ticketAssigns.stream()
2293
                    .map(TicketAssigned::getAssineeId)
2294
                    .collect(Collectors.toSet());
2295
 
2296
            Map<Integer, AuthUser> authUserMap = authRepository.selectByIds(new ArrayList<>(assigneeIds)).stream()
2297
                    .collect(Collectors.toMap(AuthUser::getId, au -> au));
2298
 
2299
            for (TicketAssigned ticketAssign : ticketAssigns) {
2300
                AuthUser authUser = authUserMap.get(ticketAssign.getAssineeId());
2301
                if (authUser != null) {
2302
                    ticketIdAuthUser.put(ticketAssign.getTicketId(), authUser);
2303
                }
2304
            }
31751 tejbeer 2305
        }
2306
        model.addAttribute("ticketIdAuthUser", ticketIdAuthUser);
2307
        model.addAttribute("ticketAssigns", ticketAssigns);
2308
        model.addAttribute("customRetailer", customRetailer);
2309
        return "open-ticket";
2310
    }
27660 tejbeer 2311
 
31751 tejbeer 2312
    @RequestMapping(value = "/getPartnerSecondarySale", method = RequestMethod.GET)
32836 amit.gupta 2313
    public String getPartnerSecondarySale(HttpServletRequest request,
2314
                                          @RequestParam(name = ProfitMandiConstants.FOFO_ID) int fofoId, @RequestParam String timeValue, Model model) throws
2315
            Exception {
31751 tejbeer 2316
        LocalDateTime curDate = LocalDate.now().atStartOfDay();
2317
        CustomRetailer customRetailer = retailerService.getFofoRetailer(fofoId);
2318
        int lengthOfMonth = YearMonth.from(curDate.minusMonths(1)).lengthOfMonth();
2319
        LocalDateTime startDate = null;
2320
        LocalDateTime endDate = null;
2321
        List<InStockBrandModel> secondarySale = null;
2322
        Map<String, List<InStockBrandItemModel>> secondaryItemSale = null;
27893 tejbeer 2323
 
31751 tejbeer 2324
        if (timeValue.equals("mtd")) {
2325
            startDate = curDate.withDayOfMonth(1);
2326
            endDate = curDate.with(LocalTime.MAX);
2327
            secondarySale = orderRepository.selectAllBilledOrderBrandByFofoId(startDate, endDate, fofoId);
2328
            secondaryItemSale = orderRepository.selectAllBilledOrderBrandItemByFofoId(startDate, endDate, fofoId).stream().collect(Collectors.groupingBy(InStockBrandItemModel::getBrand));
2329
            LOGGER.info("secondarySalemtd" + secondarySale);
2330
        } else if (timeValue.equals("lmtd")) {
2331
            startDate = curDate.withDayOfMonth(1).minusMonths(1);
2332
            endDate = curDate.with(LocalTime.MAX).minusMonths(1);
2333
            secondaryItemSale = orderRepository.selectAllBilledOrderBrandItemByFofoId(startDate, endDate, fofoId).stream().collect(Collectors.groupingBy(InStockBrandItemModel::getBrand));
27893 tejbeer 2334
 
31751 tejbeer 2335
            secondarySale = orderRepository.selectAllBilledOrderBrandByFofoId(startDate, endDate, fofoId);
2336
            LOGGER.info("secondarySalelmtd" + secondarySale);
27893 tejbeer 2337
 
31751 tejbeer 2338
        } else {
2339
            startDate = curDate.withDayOfMonth(1).minusMonths(1);
2340
            endDate = curDate.withDayOfMonth(1);
2341
            secondaryItemSale = orderRepository.selectAllBilledOrderBrandItemByFofoId(startDate, endDate, fofoId).stream().collect(Collectors.groupingBy(InStockBrandItemModel::getBrand));
27893 tejbeer 2342
 
31751 tejbeer 2343
            secondarySale = orderRepository.selectAllBilledOrderBrandByFofoId(startDate, endDate, fofoId);
2344
            LOGGER.info("secondarySalelms" + secondarySale);
27893 tejbeer 2345
 
31751 tejbeer 2346
        }
27893 tejbeer 2347
 
31751 tejbeer 2348
        LOGGER.info("secondarySale" + secondarySale);
2349
        model.addAttribute("secondarySale", secondarySale);
2350
        model.addAttribute("secondaryItemSale", secondaryItemSale);
2351
        model.addAttribute("customRetailer", customRetailer);
27893 tejbeer 2352
 
31751 tejbeer 2353
        return "partner-secondary-order";
2354
    }
27893 tejbeer 2355
 
31751 tejbeer 2356
    @RequestMapping(value = "/getMobileBrandWise", method = RequestMethod.GET)
2357
    public String getMobileBrandWise(HttpServletRequest request, Model model) throws Exception {
2358
        LoginDetails loginDetails = cookiesProcessor.getCookiesObject(request);
2359
        String email = loginDetails.getEmailId();
28451 tejbeer 2360
 
31751 tejbeer 2361
        AuthUser authUser = authRepository.selectByEmailOrMobile(email);
2362
        Set<Integer> fofoIds = csService1.getAuthFofoIds(email, true);
28451 tejbeer 2363
 
31751 tejbeer 2364
        Map<String, BrandWisePartnerSaleModel> partnersBrandSaleMap = null;
2365
        partnersBrandSaleMap = fofoStoreRepository.selectGroupByBrandWarehousePartnerSale(new ArrayList<>(fofoIds)).stream().collect(Collectors.toMap(x -> x.getBrand(), x -> x));
28451 tejbeer 2366
 
31751 tejbeer 2367
        List<BrandWiseUnbilledActivateStockModel> unbilledActivatedStock = fofoStoreRepository.selectUnbilledActivateStockGroupByBrand(new ArrayList<>(fofoIds));
2368
        for (BrandWiseUnbilledActivateStockModel un : unbilledActivatedStock) {
2369
            BrandWisePartnerSaleModel bpt = partnersBrandSaleMap.get(un.getBrand());
2370
            if (bpt != null) {
2371
                bpt.setAmtd(un.getUnbilledMtd());
2372
                bpt.setUamtdQty(un.getUnbilledMTDQty());
2373
            } else {
2374
                bpt = new BrandWisePartnerSaleModel();
2375
                bpt.setBrand(un.getBrand());
2376
                bpt.setAmtd(un.getUnbilledMtd());
2377
                bpt.setUamtdQty(un.getUnbilledMTDQty());
2378
                bpt.setLms(0);
2379
                bpt.setLmtd(0);
2380
                bpt.setMtd(0);
2381
                bpt.setMtdQty(0);
2382
                bpt.setLmtd(0);
2383
                bpt.setLmtdQty(0);
2384
                partnersBrandSaleMap.put(un.getBrand(), bpt);
2385
            }
2386
        }
28451 tejbeer 2387
 
31751 tejbeer 2388
        model.addAttribute("brandSalesMap", partnersBrandSaleMap);
28451 tejbeer 2389
 
31751 tejbeer 2390
        return "mobile-brand-wise-report";
2391
    }
28451 tejbeer 2392
 
31751 tejbeer 2393
    @RequestMapping(value = "/getAccessoriesBrandWise", method = RequestMethod.GET)
2394
    public String getAccessoriesBrandWise(HttpServletRequest request, Model model) throws Exception {
2395
        LoginDetails loginDetails = cookiesProcessor.getCookiesObject(request);
2396
        String email = loginDetails.getEmailId();
28451 tejbeer 2397
 
31751 tejbeer 2398
        Set<Integer> fofoIds = csService1.getAuthFofoIds(email, true);
28451 tejbeer 2399
 
31751 tejbeer 2400
        List<BrandWisePartnerSaleModel> accessoriesBrandSales = null;
28451 tejbeer 2401
 
31751 tejbeer 2402
        accessoriesBrandSales = fofoStoreRepository.selectGroupByBrandAccesoriesWarehousePartnerSale(new ArrayList<>(fofoIds));
28451 tejbeer 2403
 
31751 tejbeer 2404
        model.addAttribute("accessoriesBrandSales", accessoriesBrandSales);
2405
        return "accessories-brand-wise-report";
2406
    }
28451 tejbeer 2407
 
34973 aman 2408
    @PostMapping("/getMobileLMSGraph")
2409
    public String getMobileLMSGraph(@RequestBody LMSGraphRequest lmsGraphRequest, Model model) throws Exception {
2410
        LocalDate startDate = lmsGraphRequest.getDate().toLocalDate();
2411
        LocalDate endLocalDate = lmsGraphRequest.getEndDate().toLocalDate();
28451 tejbeer 2412
 
34973 aman 2413
        Map<Integer, List<Integer>> warehouseIdFofoIdMap = fofoStoreRepository.selectActivePartnersByRetailerIds(lmsGraphRequest.getFofoIds())
2414
                .stream()
2415
                .collect(Collectors.groupingBy(FofoStore::getWarehouseId,
2416
                        Collectors.mapping(FofoStore::getId, Collectors.toList())));
2417
 
31751 tejbeer 2418
        ChartModel cm;
34973 aman 2419
        if (lmsGraphRequest.getWarehouseId() != 0) {
2420
            cm = adminUser.getBrandWiseLms(
2421
                    Arrays.asList(lmsGraphRequest.getWarehouseId()),
2422
                    lmsGraphRequest.getFofoIds(),
2423
                    startDate,
2424
                    endLocalDate,
2425
                    lmsGraphRequest.getFilterType()
2426
            );
31751 tejbeer 2427
        } else {
34973 aman 2428
            cm = adminUser.getBrandWiseLms(
2429
                    new ArrayList<>(warehouseIdFofoIdMap.keySet()),
2430
                    lmsGraphRequest.getFofoIds(),
2431
                    startDate,
2432
                    endLocalDate,
2433
                    lmsGraphRequest.getFilterType()
2434
            );
31751 tejbeer 2435
        }
28451 tejbeer 2436
 
34973 aman 2437
        LOGGER.info("chartMap: " + gson.toJson(cm));
31751 tejbeer 2438
        model.addAttribute("chartMap", gson.toJson(cm));
34973 aman 2439
 
31751 tejbeer 2440
        return "brand-wise-mobile-lms-chart";
2441
    }
28451 tejbeer 2442
 
34973 aman 2443
 
31751 tejbeer 2444
    @RequestMapping(value = "/getMobileLMSFilter", method = RequestMethod.GET)
32836 amit.gupta 2445
    public String getMobileLMSFilter(HttpServletRequest request,
2446
                                     @RequestParam(required = false, defaultValue = "0") int warehouseId,
2447
                                     @RequestParam(required = false) LocalDateTime date, @RequestParam(required = false) LocalDateTime endDate, Model
2448
                                             model) throws Exception {
28461 tejbeer 2449
 
31751 tejbeer 2450
        LoginDetails loginDetails = cookiesProcessor.getCookiesObject(request);
2451
        String email = loginDetails.getEmailId();
28461 tejbeer 2452
 
31751 tejbeer 2453
        if (date == null) {
2454
            LocalDateTime curDate = LocalDate.now().atStartOfDay();
28461 tejbeer 2455
 
31751 tejbeer 2456
            LocalDateTime startOfMonth = curDate.withDayOfMonth(1).minusMonths(6);
2457
            date = startOfMonth.toLocalDate().atStartOfDay();
2458
        }
28461 tejbeer 2459
 
31751 tejbeer 2460
        if (endDate == null) {
2461
            LocalDateTime curDate = LocalDate.now().atTime(LocalTime.MAX);
30279 tejbeer 2462
 
31751 tejbeer 2463
            endDate = curDate;
30279 tejbeer 2464
 
31751 tejbeer 2465
        }
30279 tejbeer 2466
 
31751 tejbeer 2467
        Map<String, Object> map = adminUser.getFilter(warehouseId, email, date, endDate);
2468
        model.addAttribute("warehouseId", warehouseId);
2469
        model.addAllAttributes(map);
28461 tejbeer 2470
 
31751 tejbeer 2471
        return "chart-filter-lms";
2472
    }
28461 tejbeer 2473
 
35514 amit 2474
    @PostMapping("/getMobileLMPGraph")
2475
    public String getMobileLMPGraph(@RequestBody LMSGraphRequest lmpGraphRequest, Model model) throws Exception {
2476
        LocalDate startDate = lmpGraphRequest.getDate().toLocalDate();
2477
        LocalDate endLocalDate = lmpGraphRequest.getEndDate().toLocalDate();
28461 tejbeer 2478
 
35514 amit 2479
        Map<Integer, List<Integer>> warehouseIdFofoIdMap = fofoStoreRepository.selectActivePartnersByRetailerIds(lmpGraphRequest.getFofoIds())
2480
                .stream()
2481
                .collect(Collectors.groupingBy(FofoStore::getWarehouseId,
2482
                        Collectors.mapping(FofoStore::getId, Collectors.toList())));
2483
 
31751 tejbeer 2484
        ChartModel cm;
35514 amit 2485
        if (lmpGraphRequest.getWarehouseId() != 0) {
2486
            cm = adminUser.getBrandWiseLmp(
2487
                    Arrays.asList(lmpGraphRequest.getWarehouseId()),
2488
                    lmpGraphRequest.getFofoIds(),
2489
                    startDate,
2490
                    endLocalDate,
2491
                    lmpGraphRequest.getFilterType()
2492
            );
31751 tejbeer 2493
        } else {
35514 amit 2494
            cm = adminUser.getBrandWiseLmp(
2495
                    new ArrayList<>(warehouseIdFofoIdMap.keySet()),
2496
                    lmpGraphRequest.getFofoIds(),
2497
                    startDate,
2498
                    endLocalDate,
2499
                    lmpGraphRequest.getFilterType()
2500
            );
31751 tejbeer 2501
        }
28461 tejbeer 2502
 
35514 amit 2503
        LOGGER.info("chartMap: " + gson.toJson(cm));
31751 tejbeer 2504
        model.addAttribute("chartMap", gson.toJson(cm));
2505
        return "brand-wise-mobile-lmp-chart";
2506
    }
28461 tejbeer 2507
 
31751 tejbeer 2508
    @RequestMapping(value = "/getSaleCountByMilestone", method = RequestMethod.GET)
32836 amit.gupta 2509
    public String getSaleCountByMilestone(HttpServletRequest request,
2510
                                          @RequestParam(required = false, defaultValue = "0") int warehouseId, Model model) throws Exception {
31259 tejbeer 2511
 
31751 tejbeer 2512
        LoginDetails loginDetails = cookiesProcessor.getCookiesObject(request);
2513
        String email = loginDetails.getEmailId();
2514
        Set<Integer> authFofoIds = csService1.getAuthFofoIds(email, true);
31259 tejbeer 2515
 
31751 tejbeer 2516
        Set<Integer> fofoIdlist = fofoStoreRepository.selectActiveStores().stream().filter(x -> !x.isInternal()).map(x -> x.getId()).collect(Collectors.toSet());
32792 shampa 2517
        Set<Integer> fofoIds = null;
34176 tejus.loha 2518
        if (authFofoIds != null) {
32792 shampa 2519
            fofoIds = authFofoIds.stream().filter(x -> fofoIdlist.contains(x)).collect(Collectors.toSet());
2520
        }
31267 tejbeer 2521
 
32792 shampa 2522
 
31751 tejbeer 2523
        Map<Integer, Double> last3MonthSale = fofoOrderItemRepository.selectSumMopGroupByRetailer(
2524
                LocalDateTime.now().withDayOfMonth(1).minusMonths(2), LocalDateTime.now(), 0, false);
31318 tejbeer 2525
 
31751 tejbeer 2526
        if (fofoIds != null && fofoIds.size() > 0) {
2527
            if (warehouseId != 0) {
2528
                fofoIds = fofoStoreRepository.selectPartnerByfofoIdAndWarehouse(new ArrayList<>(fofoIds), warehouseId).stream().map(x -> x).collect(Collectors.toSet());
2529
            }
2530
            Map<Integer, PartnerDetailModel> partnerStats = adminUser.getPartnersStatDataFromFile();
2531
            if (partnerStats != null) {
2532
                List<PartnerDetailModel> partnerDetails = fofoIds.stream().filter(x -> partnerStats.containsKey(x)).map(x -> partnerStats.get(x)).collect(Collectors.toList());
2533
                Map<Milestone, List<Integer>> avg3Monthlms = new HashMap<>();
2534
                if (!last3MonthSale.isEmpty()) {
2535
                    int days = 60 + LocalDateTime.now().getDayOfMonth();
2536
                    for (Entry<Integer, Double> last3MonthEntry : last3MonthSale.entrySet()) {
2537
                        if (fofoIds.contains(last3MonthEntry.getKey())) {
2538
                            Double monthSale = last3MonthEntry.getValue();
2539
                            if (monthSale == null) {
2540
                                monthSale = (double) 0;
31319 tejbeer 2541
 
31751 tejbeer 2542
                            }
2543
                            double avg3MonthSale = (monthSale / days) * 30;
2544
                            Milestone milestone = Milestone.get((int) avg3MonthSale);
31318 tejbeer 2545
 
31751 tejbeer 2546
                            List<Integer> values = null;
31318 tejbeer 2547
 
31751 tejbeer 2548
                            if (avg3Monthlms.containsKey(milestone)) {
31319 tejbeer 2549
 
31751 tejbeer 2550
                                values = avg3Monthlms.get(milestone);
2551
                                values.add(last3MonthEntry.getKey());
2552
                                avg3Monthlms.put(milestone, values);
31267 tejbeer 2553
 
31751 tejbeer 2554
                            } else {
2555
                                values = new ArrayList<>();
31267 tejbeer 2556
 
31751 tejbeer 2557
                                values.add(last3MonthEntry.getKey());
2558
                                avg3Monthlms.put(milestone, values);
31267 tejbeer 2559
 
31751 tejbeer 2560
                            }
2561
                        }
31267 tejbeer 2562
 
31751 tejbeer 2563
                    }
31263 tejbeer 2564
 
31751 tejbeer 2565
                }
31285 tejbeer 2566
 
31751 tejbeer 2567
                if (partnerDetails != null) {
31318 tejbeer 2568
 
31751 tejbeer 2569
                    Map<Milestone, List<Integer>> mtdMap = partnerDetails.stream().collect(Collectors.groupingBy(x -> Milestone.get(x.getMtd()), Collectors.mapping(x -> x.getFofoId(), Collectors.toList())));
2570
                    Map<Milestone, List<Integer>> lmtdMap = partnerDetails.stream().collect(Collectors.groupingBy(x -> Milestone.get(x.getLmtd()), Collectors.mapping(x -> x.getFofoId(), Collectors.toList())));
31260 tejbeer 2571
 
31751 tejbeer 2572
                    Map<Milestone, List<Integer>> lmsMap = partnerDetails.stream().collect(Collectors.groupingBy(x -> Milestone.get(x.getLms()), Collectors.mapping(x -> x.getFofoId(), Collectors.toList())));
31259 tejbeer 2573
 
31751 tejbeer 2574
                    model.addAttribute("mtdMap", mtdMap);
2575
                    model.addAttribute("lmtdMap", lmtdMap);
2576
                    model.addAttribute("avg3Monthlms", avg3Monthlms);
2577
                    model.addAttribute("lmsMap", lmsMap);
2578
                }
31267 tejbeer 2579
 
31751 tejbeer 2580
            }
2581
        }
31273 tejbeer 2582
 
31751 tejbeer 2583
        model.addAttribute("warehouseMap", ProfitMandiConstants.WAREHOUSE_MAP);
2584
        model.addAttribute("warehouseId", warehouseId);
2585
        model.addAttribute("milestones", Milestone.values());
31273 tejbeer 2586
 
31751 tejbeer 2587
        return "sale-milestone";
31273 tejbeer 2588
 
31751 tejbeer 2589
    }
31273 tejbeer 2590
 
31751 tejbeer 2591
    @RequestMapping(value = "/getPurchaseCountByMileStone", method = RequestMethod.GET)
32836 amit.gupta 2592
    public String getPurchaseCountByMileStone(HttpServletRequest request,
2593
                                              @RequestParam(required = false, defaultValue = "0") int warehouseId, Model model) throws Exception {
31273 tejbeer 2594
 
31751 tejbeer 2595
        LoginDetails loginDetails = cookiesProcessor.getCookiesObject(request);
2596
        String email = loginDetails.getEmailId();
31320 tejbeer 2597
 
31751 tejbeer 2598
        Set<Integer> authFofoIds = csService1.getAuthFofoIds(email, true);
31320 tejbeer 2599
 
31751 tejbeer 2600
        Set<Integer> fofoIdlist = fofoStoreRepository.selectActiveStores().stream().filter(x -> !x.isInternal()).map(x -> x.getId()).collect(Collectors.toSet());
32792 shampa 2601
        Set<Integer> fofoIds = null;
34176 tejus.loha 2602
        if (authFofoIds != null) {
32792 shampa 2603
            fofoIds = authFofoIds.stream().filter(x -> fofoIdlist.contains(x)).collect(Collectors.toSet());
2604
        }
31273 tejbeer 2605
 
31751 tejbeer 2606
        Map<Integer, Double> last3MonthS = orderRepository.selectBillingDatesBetweenSumGroupByRetailerId(
2607
                LocalDateTime.now().withDayOfMonth(1).minusMonths(2), LocalDateTime.now());
31320 tejbeer 2608
 
31751 tejbeer 2609
        if (fofoIds != null && fofoIds.size() > 0) {
2610
            if (warehouseId != 0) {
2611
                fofoIds = fofoStoreRepository.selectPartnerByfofoIdAndWarehouse(new ArrayList<>(fofoIds), warehouseId).stream().map(x -> x).collect(Collectors.toSet());
2612
            }
2613
            Map<Integer, PartnerDetailModel> partnerStats = adminUser.getPartnersStatDataFromFile();
2614
            if (partnerStats != null) {
2615
                List<PartnerDetailModel> partnerDetails = fofoIds.stream().filter(x -> partnerStats.containsKey(x)).map(x -> partnerStats.get(x)).collect(Collectors.toList());
2616
                Map<Milestone, List<Integer>> avg3MonthS = new HashMap<>();
2617
                if (!last3MonthS.isEmpty()) {
2618
                    int days = 60 + LocalDateTime.now().getDayOfMonth();
2619
                    for (Entry<Integer, Double> last3MonthSEntry : last3MonthS.entrySet()) {
2620
                        if (fofoIds.contains(last3MonthSEntry.getKey())) {
2621
                            Double monthSec = last3MonthSEntry.getValue();
2622
                            if (monthSec == null) {
2623
                                monthSec = (double) 0;
31320 tejbeer 2624
 
31751 tejbeer 2625
                            }
2626
                            double avg3MonthSale = (monthSec / days) * 30;
2627
                            Milestone milestone = Milestone.get((int) avg3MonthSale);
31320 tejbeer 2628
 
31751 tejbeer 2629
                            List<Integer> values = null;
2630
                            if (avg3MonthS.containsKey(milestone)) {
2631
                                values = avg3MonthS.get(milestone);
2632
                                values.add(last3MonthSEntry.getKey());
31273 tejbeer 2633
 
31751 tejbeer 2634
                                avg3MonthS.put(milestone, values);
2635
                            } else {
31273 tejbeer 2636
 
31751 tejbeer 2637
                                values = new ArrayList<>();
31273 tejbeer 2638
 
31751 tejbeer 2639
                                values.add(last3MonthSEntry.getKey());
31273 tejbeer 2640
 
31751 tejbeer 2641
                                avg3MonthS.put(milestone, values);
31273 tejbeer 2642
 
31751 tejbeer 2643
                            }
2644
                        }
31273 tejbeer 2645
 
31751 tejbeer 2646
                    }
31267 tejbeer 2647
 
31751 tejbeer 2648
                }
31259 tejbeer 2649
 
31751 tejbeer 2650
                if (partnerDetails != null) {
2651
                    Map<Milestone, List<Integer>> smtdMap = partnerDetails.stream().collect(Collectors.groupingBy(x -> Milestone.get(x.getSecondarymtd()), Collectors.mapping(x -> x.getFofoId(), Collectors.toList())));
2652
                    Map<Milestone, List<Integer>> slmtdMap = partnerDetails.stream().collect(Collectors.groupingBy(x -> Milestone.get(x.getSecondarylmtd()), Collectors.mapping(x -> x.getFofoId(), Collectors.toList())));
2653
                    Map<Milestone, List<Integer>> lmsMap = partnerDetails.stream().collect(Collectors.groupingBy(x -> Milestone.get(x.getSecondarylms()), Collectors.mapping(x -> x.getFofoId(), Collectors.toList())));
31259 tejbeer 2654
 
31751 tejbeer 2655
                    model.addAttribute("smtdMap", smtdMap);
2656
                    model.addAttribute("slmtdMap", slmtdMap);
2657
                    model.addAttribute("avg3MonthS", avg3MonthS);
2658
                    model.addAttribute("lmsMap", lmsMap);
31259 tejbeer 2659
 
31751 tejbeer 2660
                }
28825 tejbeer 2661
 
31751 tejbeer 2662
            }
2663
        }
28825 tejbeer 2664
 
31751 tejbeer 2665
        model.addAttribute("warehouseMap", ProfitMandiConstants.WAREHOUSE_MAP);
2666
        model.addAttribute("warehouseId", warehouseId);
2667
        model.addAttribute("milestones", Milestone.values());
28825 tejbeer 2668
 
31751 tejbeer 2669
        return "purchase-milestone";
28825 tejbeer 2670
 
31751 tejbeer 2671
    }
31152 tejbeer 2672
 
31751 tejbeer 2673
    @RequestMapping(value = "/getActivatedModelWarehouseWise", method = RequestMethod.GET)
32836 amit.gupta 2674
    public String getActivatedModelWarehouseWise(HttpServletRequest request, Model model, @RequestParam String
2675
            brand) throws Exception {
31751 tejbeer 2676
        LoginDetails loginDetails = cookiesProcessor.getCookiesObject(request);
2677
        List<Integer> fofoIds = getFofoIds(loginDetails);
2678
        List<WarehouseWiseActivatedModel> warehouseWiseActivatedModels = activatedImeiRepository.selectActivatedModelGroupByWarehouse(brand, fofoIds);
2679
        Map<Integer, String> warehouseMap = ProfitMandiConstants.WAREHOUSE_MAP;
28825 tejbeer 2680
 
31751 tejbeer 2681
        List<DBObject> mobileBrands = mongoClient.getAllBrandsToDisplay(3);
28825 tejbeer 2682
 
31751 tejbeer 2683
        List<String> brands = mobileBrands.stream().map(x -> (String) x.get("name")).collect(Collectors.toList());
2684
        LOGGER.info("brands" + brands.add("Redmi"));
28825 tejbeer 2685
 
31751 tejbeer 2686
        model.addAttribute("warehouseWiseActivatedModels", warehouseWiseActivatedModels);
2687
        model.addAttribute("warehouseMap", warehouseMap);
2688
        model.addAttribute("brands", brands);
2689
        model.addAttribute("selectedbrand", brand);
2690
        return "warehousewise_activated_model";
2691
    }
28825 tejbeer 2692
 
31751 tejbeer 2693
    @RequestMapping(value = "/getActivatedModelByBrand", method = RequestMethod.GET)
2694
    public String getActivatedModelByBrand(HttpServletRequest request, Model model) throws Exception {
2695
        LoginDetails loginDetails = cookiesProcessor.getCookiesObject(request);
2696
        Set<Integer> fofoIds = csService1.getAuthFofoIds(loginDetails.getEmailId(), true);
28825 tejbeer 2697
 
31751 tejbeer 2698
        List<BrandWiseActivatedModel> activatedModels = activatedImeiRepository.selectActivatedModelGroupByBrand(new ArrayList<>(fofoIds));
2699
        model.addAttribute("activatedModels", activatedModels);
2700
        return "activation-brandwise-report";
2701
    }
28825 tejbeer 2702
 
31751 tejbeer 2703
    @RequestMapping(value = "/getWarehouseBrandWiseItemActivatedModel", method = RequestMethod.GET)
32836 amit.gupta 2704
    public String getWarehouseBrandWiseItemActivatedModel(HttpServletRequest request, Model
2705
            model, @RequestParam List<Integer> warehouseId, @RequestParam String brand) throws Exception {
31751 tejbeer 2706
        LoginDetails loginDetails = cookiesProcessor.getCookiesObject(request);
2707
        List<Integer> fofoIds = getFofoIds(loginDetails);
28825 tejbeer 2708
 
31751 tejbeer 2709
        Map<Integer, String> warehouseMap = ProfitMandiConstants.WAREHOUSE_MAP;
2710
        List<WarehouseBrandWiseItemActivatedModel> activatedItems = activatedImeiRepository.selectWarehouseBrandActivatedItem(warehouseId, brand, fofoIds);
2711
        model.addAttribute("warehouseMap", warehouseMap);
2712
        model.addAttribute("activatedItems", activatedItems);
2713
        return "warehouse-activated-itemwise-model";
28825 tejbeer 2714
 
31751 tejbeer 2715
    }
28825 tejbeer 2716
 
31751 tejbeer 2717
    @RequestMapping(value = "/getActivatedImeiUpdationDate", method = RequestMethod.GET)
2718
    public String getActivatedImeiUpdationDate(HttpServletRequest request, Model model) throws Exception {
28825 tejbeer 2719
 
31751 tejbeer 2720
        Map<Integer, String> warehouseMap = ProfitMandiConstants.WAREHOUSE_MAP;
35466 amit 2721
        List<String> brands = ProfitMandiConstants.BRANDS;
28825 tejbeer 2722
 
31751 tejbeer 2723
        List<ActivationImeiUpdationModel> activationImeiUpdations = activatedImeiRepository.selectActivatedUpdationDate();
35466 amit 2724
 
2725
        // Create a map for quick lookup of existing results
2726
        Map<String, ActivationImeiUpdationModel> resultMap = activationImeiUpdations.stream()
2727
                .collect(Collectors.toMap(
2728
                        m -> m.getWarehouseId() + "_" + m.getBrand(),
2729
                        m -> m
2730
                ));
2731
 
2732
        // Merge with master data - add missing combinations with null timestamp
2733
        List<ActivationImeiUpdationModel> completeList = new ArrayList<>();
2734
        for (Integer warehouseId : warehouseMap.keySet()) {
2735
            for (String brand : brands) {
2736
                String key = warehouseId + "_" + brand;
2737
                ActivationImeiUpdationModel existing = resultMap.get(key);
2738
                if (existing != null) {
2739
                    completeList.add(existing);
2740
                } else {
2741
                    completeList.add(new ActivationImeiUpdationModel(warehouseId, brand, null));
2742
                }
2743
            }
2744
        }
2745
 
31751 tejbeer 2746
        model.addAttribute("warehouseMap", warehouseMap);
35466 amit 2747
        model.addAttribute("activationImeiUpdations", completeList);
31751 tejbeer 2748
        return "activation-updation-timestamp";
28825 tejbeer 2749
 
31751 tejbeer 2750
    }
31285 tejbeer 2751
 
31751 tejbeer 2752
    private List<Integer> getFofoIds(LoginDetails loginDetails) throws ProfitMandiBusinessException {
2753
        String email = loginDetails.getEmailId();
31287 tejbeer 2754
 
31751 tejbeer 2755
        AuthUser authUser = authRepository.selectByEmailOrMobile(email);
2756
        Map<String, Set<Integer>> storeGuyMap = csService.getAuthUserPartnerIdMapping();
31287 tejbeer 2757
 
31751 tejbeer 2758
        Set<Integer> fofoIds = storeGuyMap.get(authUser.getEmailId());
2759
        if (emails.contains(authUser.getEmailId())) {
2760
            fofoIds = storeGuyMap.get("tarun.verma@smartdukaan.com");
2761
            LOGGER.info("fofoIds" + fofoIds);
2762
        }
31287 tejbeer 2763
 
31751 tejbeer 2764
        if (fofoIds == null) {
35395 amit 2765
            List<Position> positions1 = positionRepository.selectAllByAuthUserId(authUser.getId());
31751 tejbeer 2766
            if (positions1.stream().filter(x -> x.getCategoryId() == ProfitMandiConstants.TICKET_CATEGORY_MASTER).count() > 0) {
2767
                fofoIds = csService.getPositionCustomRetailerMap(positions1).values().stream().flatMap(x -> x.stream()).map(x -> x.getPartnerId()).collect(Collectors.toSet());
2768
            }
2769
        }
2770
        return new ArrayList<>(fofoIds);
2771
    }
31287 tejbeer 2772
 
31751 tejbeer 2773
    @RequestMapping(value = "/getMonthWiseSale", method = RequestMethod.GET)
32836 amit.gupta 2774
    public String getPartnerSaleByMonth(HttpServletRequest request, @RequestParam List<Integer> fofoIds, Model
2775
            model) throws Exception {
31287 tejbeer 2776
 
31751 tejbeer 2777
        YearMonth now = YearMonth.now();
2778
        YearMonth ym = YearMonth.now().minusMonths(12);
2779
        List<YearMonth> list = new ArrayList<>();
2780
        while (!now.isBefore(ym)) {
2781
            list.add(now);
2782
            now = now.minusMonths(1);
2783
        }
31287 tejbeer 2784
 
31751 tejbeer 2785
        model.addAttribute("yearMonth", list);
31287 tejbeer 2786
 
31751 tejbeer 2787
        List<PartnerMonthlySaleModel> partnerMonthlySaleModels = fofoOrderItemRepository.selectPartnerMonthlySale(fofoIds, LocalDateTime.now().minusMonths(12).withDayOfMonth(1));
2788
        DateTimeFormatter dateTimeFormatter = DateTimeFormatter.ofPattern("MM-yyyy");
2789
        Map<Integer, Map<YearMonth, Double>> partnerMonthSaleMap = new HashMap<>();
2790
        if (!partnerMonthlySaleModels.isEmpty()) {
31287 tejbeer 2791
 
31751 tejbeer 2792
            partnerMonthSaleMap = partnerMonthlySaleModels.stream().collect(Collectors.groupingBy(x -> x.getFofoId(), Collectors.toMap(
2793
                    x -> YearMonth.parse(x.getYearMonth(), dateTimeFormatter), x -> (double) x.getAmount())));
2794
        }
31297 tejbeer 2795
 
31751 tejbeer 2796
        Map<Integer, CustomRetailer> customRetailerMap = retailerService.getAllFofoRetailers().entrySet().stream().filter(x -> fofoIds.contains(x.getKey())).collect(Collectors.toMap(x -> x.getKey(), x -> x.getValue()));
31297 tejbeer 2797
 
31751 tejbeer 2798
        model.addAttribute("customRetailerMap", customRetailerMap);
31297 tejbeer 2799
 
31751 tejbeer 2800
        model.addAttribute("customRetailerMap", customRetailerMap);
31297 tejbeer 2801
 
31751 tejbeer 2802
        model.addAttribute("partnerMonthSaleMap", partnerMonthSaleMap);
2803
        return "monthly-partner-sale";
31297 tejbeer 2804
 
31751 tejbeer 2805
    }
31297 tejbeer 2806
 
35541 amit 2807
    @RequestMapping(value = "/getMonthWisePurchase", method = RequestMethod.POST)
35543 amit 2808
    public String getMonthWisePurchase(HttpServletRequest request, @RequestBody List<Integer> fofoIds, Model
32836 amit.gupta 2809
            model) throws Exception {
31751 tejbeer 2810
 
2811
        YearMonth now = YearMonth.now();
2812
        YearMonth ym = YearMonth.now().minusMonths(12);
2813
        List<YearMonth> list = new ArrayList<>();
2814
        while (!now.isBefore(ym)) {
2815
            list.add(now);
2816
            now = now.minusMonths(1);
2817
        }
2818
 
2819
        model.addAttribute("yearMonth", list);
2820
 
2821
        List<PartnerMonthlySaleModel> partnerMonthlySaleModels = orderRepository.selectSecondaryGroupByYearMonth(
32445 amit.gupta 2822
                fofoIds, LocalDate.now().withDayOfMonth(1).atStartOfDay().minusMonths(12), LocalDateTime.now());
31751 tejbeer 2823
        Map<Integer, Map<YearMonth, Double>> partnerMonthPurchaseMap = partnerMonthlySaleModels.stream().collect(Collectors.groupingBy(x -> x.getFofoId(), Collectors.groupingBy(
2824
                y -> YearMonth.parse(y.getYearMonth(), DateTimeFormatter.ofPattern("MM-yyyy")), Collectors.summingDouble(x -> x.getAmount()))));
2825
 
2826
        Map<Integer, CustomRetailer> customRetailerMap = retailerService.getAllFofoRetailers().entrySet().stream().filter(x -> fofoIds.contains(x.getKey())).collect(Collectors.toMap(x -> x.getKey(), x -> x.getValue()));
2827
        model.addAttribute("customRetailerMap", customRetailerMap);
2828
        model.addAttribute("partnerMonthPurchaseMap", partnerMonthPurchaseMap);
2829
        return "monthly-partner-purchase";
2830
 
2831
    }
32407 amit.gupta 2832
 
32336 jai.hind 2833
    @GetMapping("/restartServer")
32407 amit.gupta 2834
    public String RestartServer(HttpServletRequest request, Model model) throws Exception {
2835
        LoginDetails loginDetails = cookiesProcessor.getCookiesObject(request);
2836
        if (Arrays.asList("amit.gupta@smartdukaan.com", "shivam.gupta@smartdukaan.com", "vinay.p@smartdukaan.com").contains(loginDetails.getEmailId())) {
2837
            String ipAddress = "45.79.106.95";
2838
            int port = 22;
2839
            String username = "root";
2840
            String password = "spic@2015shop2020";
32408 amit.gupta 2841
            String restartServices = "./restart-services.sh";
2842
            sshService.executeCommand(ipAddress, port, username, password, restartServices);
32407 amit.gupta 2843
            model.addAttribute("response1", mvcResponseSender.createResponseString(true));
2844
        } else {
2845
            model.addAttribute("response1", mvcResponseSender.createResponseString(false));
2846
        }
32337 jai.hind 2847
        return "response";
2848
    }
32336 jai.hind 2849
 
32337 jai.hind 2850
    @GetMapping("/rebootServer")
32407 amit.gupta 2851
    public String rebootServer(HttpServletRequest request, Model model) throws Exception {
2852
        LoginDetails loginDetails = cookiesProcessor.getCookiesObject(request);
2853
        if (Arrays.asList("amit.gupta@smartdukaan.com", "shivam.gupta@smartdukaan.com", "vinay.p@smartdukaan.com").contains(loginDetails.getEmailId())) {
2854
            String ipAddress = "45.79.106.95";
2855
            int port = 22;
2856
            String username = "root";
2857
            String password = "spic@2015shop2020";
2858
            String rebootCommand = "reboot";
32337 jai.hind 2859
 
32408 amit.gupta 2860
            sshService.executeCommand(ipAddress, port, username, password, rebootCommand);
32407 amit.gupta 2861
            model.addAttribute("response1", mvcResponseSender.createResponseString(true));
2862
        } else {
2863
            model.addAttribute("response1", mvcResponseSender.createResponseString(false));
2864
        }
32336 jai.hind 2865
        return "response";
2866
    }
32407 amit.gupta 2867
 
32336 jai.hind 2868
    @GetMapping("/getRestartServer")
32407 amit.gupta 2869
    public String getRestartServer(HttpServletRequest request, Model model) {
2870
        return "restart-server-page";
32336 jai.hind 2871
    }
21615 kshitij.so 2872
}