Subversion Repositories SmartDukaan

Rev

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

Rev 32420 Rev 32579
Line 602... Line 602...
602
        Map<Integer, ScratchedGift> giftSeries = new HashMap<>();
602
        Map<Integer, ScratchedGift> giftSeries = new HashMap<>();
603
        giftSeries.put(1, ScratchedGift.MINI_CHOPPER);
603
        giftSeries.put(1, ScratchedGift.MINI_CHOPPER);
604
        giftSeries.put(2, ScratchedGift.FRUIT_JUICER);
604
        giftSeries.put(2, ScratchedGift.FRUIT_JUICER);
605
        giftSeries.put(3, ScratchedGift.STEAM_IRON);
605
        giftSeries.put(3, ScratchedGift.STEAM_IRON);
606
 
606
 
607
        LocalDate startDate = LocalDate.of(2023, 07, 22);
-
 
608
        LocalDate endDate = LocalDate.of(2023, 07, 23);
-
 
609
 
607
 
-
 
608
        List<FofoOrder> fofoOrders = fofoOrderRepository.selectByFofoIdBetweenCreatedTimeStamp(fofoId, ProfitMandiConstants.SCRATCH_OFFER_START_DATE.atStartOfDay(),
-
 
609
                ProfitMandiConstants.SCRATCH_OFFER_END_DATE.atTime(Utils.MAX_TIME));
610
 
610
 
611
        List<FofoOrder> fofoOrders = fofoOrderRepository.selectByFofoIdBetweenCreatedTimeStamp(fofoId, startDate.atStartOfDay(), endDate.atStartOfDay());
-
 
612
        ScratchedGift gift = ScratchedGift.BLNT;
611
        ScratchedGift gift = ScratchedGift.BLNT;
613
 
612
 
614
        Random random = new Random();
613
        Random random = new Random();
615
        int rand = 0;
614
        int rand = 0;
616
 
615