Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
23755 amit.gupta 1
package com.smartdukaan.cron.migrations;
2
 
28557 amit.gupta 3
import com.google.gson.Gson;
25043 amit.gupta 4
import com.smartdukaan.cron.scheduled.ScheduledTasks;
34946 ranu 5
import com.smartdukaan.cron.scheduled.ambreports.AbmReportSender;
26095 amit.gupta 6
import com.spice.profitmandi.common.enumuration.ItemType;
36053 amit 7
import com.spice.profitmandi.common.enumuration.PurchaseReturnStatus;
26033 amit.gupta 8
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
27450 tejbeer 9
import com.spice.profitmandi.common.model.CustomRetailer;
30616 amit.gupta 10
import com.spice.profitmandi.common.model.ImeiDropSummaryModel;
35797 amit 11
import com.spice.profitmandi.common.model.InvoicePdfModel;
28840 amit.gupta 12
import com.spice.profitmandi.common.model.ProfitMandiConstants;
24819 amit.gupta 13
import com.spice.profitmandi.common.util.FileUtil;
25749 amit.gupta 14
import com.spice.profitmandi.common.util.FormattingUtils;
24819 amit.gupta 15
import com.spice.profitmandi.common.util.Utils;
31088 amit.gupta 16
import com.spice.profitmandi.dao.cart.CartService;
26033 amit.gupta 17
import com.spice.profitmandi.dao.entity.catalog.Item;
31918 amit.gupta 18
import com.spice.profitmandi.dao.entity.catalog.*;
30889 amit.gupta 19
import com.spice.profitmandi.dao.entity.dtr.*;
29945 amit.gupta 20
import com.spice.profitmandi.dao.entity.fofo.*;
24953 amit.gupta 21
import com.spice.profitmandi.dao.entity.inventory.SaholicInventorySnapshot;
28736 amit.gupta 22
import com.spice.profitmandi.dao.entity.inventory.SaholicReservationSnapshot;
29945 amit.gupta 23
import com.spice.profitmandi.dao.entity.transaction.*;
25530 amit.gupta 24
import com.spice.profitmandi.dao.entity.user.Address;
25
import com.spice.profitmandi.dao.entity.user.User;
28840 amit.gupta 26
import com.spice.profitmandi.dao.entity.warehouse.BrandRegionMapping;
27511 amit.gupta 27
import com.spice.profitmandi.dao.entity.warehouse.WarehouseInventoryItem;
28038 amit.gupta 28
import com.spice.profitmandi.dao.entity.warehouse.WarehouseScan;
25021 amit.gupta 29
import com.spice.profitmandi.dao.enumuration.catalog.AmountType;
25522 amit.gupta 30
import com.spice.profitmandi.dao.enumuration.catalog.SchemeType;
34326 amit.gupta 31
import com.spice.profitmandi.dao.enumuration.catalog.StockTransactionType;
27286 amit.gupta 32
import com.spice.profitmandi.dao.enumuration.dtr.PaymentOptionReferenceType;
29893 tejbeer 33
import com.spice.profitmandi.dao.enumuration.fofo.Gateway;
26759 amit.gupta 34
import com.spice.profitmandi.dao.enumuration.fofo.ScanType;
34710 amit.gupta 35
import com.spice.profitmandi.dao.enumuration.transaction.LoanReferenceType;
30616 amit.gupta 36
import com.spice.profitmandi.dao.enumuration.transaction.PriceDropImeiStatus;
31088 amit.gupta 37
import com.spice.profitmandi.dao.model.*;
24716 amit.gupta 38
import com.spice.profitmandi.dao.repository.GenericRepository;
29945 amit.gupta 39
import com.spice.profitmandi.dao.repository.catalog.*;
25749 amit.gupta 40
import com.spice.profitmandi.dao.repository.cs.CsService;
35610 amit 41
import com.spice.profitmandi.dao.repository.cs.TicketRepository;
42
import com.spice.profitmandi.dao.repository.cs.ActivityRepository;
43
import com.spice.profitmandi.dao.repository.auth.AuthRepository;
44
import com.spice.profitmandi.dao.entity.cs.Ticket;
45
import com.spice.profitmandi.dao.entity.cs.Activity;
46
import com.spice.profitmandi.dao.entity.auth.AuthUser;
47
import com.spice.profitmandi.dao.entity.fofo.ActivityType;
29945 amit.gupta 48
import com.spice.profitmandi.dao.repository.dtr.*;
49
import com.spice.profitmandi.dao.repository.fofo.*;
24953 amit.gupta 50
import com.spice.profitmandi.dao.repository.inventory.SaholicInventorySnapshotRepository;
26928 amit.gupta 51
import com.spice.profitmandi.dao.repository.inventory.SaholicReservationSnapshotRepository;
28708 amit.gupta 52
import com.spice.profitmandi.dao.repository.inventory.WarehouseRepository;
29945 amit.gupta 53
import com.spice.profitmandi.dao.repository.transaction.*;
25530 amit.gupta 54
import com.spice.profitmandi.dao.repository.user.AddressRepository;
31088 amit.gupta 55
import com.spice.profitmandi.dao.repository.user.CartRepository;
29863 tejbeer 56
import com.spice.profitmandi.dao.repository.user.FofoKycRepository;
24002 amit.gupta 57
import com.spice.profitmandi.dao.repository.user.UserRepository;
28840 amit.gupta 58
import com.spice.profitmandi.dao.repository.warehouse.BrandRegionMappingRepository;
27511 amit.gupta 59
import com.spice.profitmandi.dao.repository.warehouse.WarehouseInventoryItemRepository;
28038 amit.gupta 60
import com.spice.profitmandi.dao.repository.warehouse.WarehouseScanRepository;
34443 vikas.jang 61
import com.spice.profitmandi.dao.service.LiquidationService;
34770 vikas.jang 62
import com.spice.profitmandi.dao.service.LocationTrackingService;
35105 vikas 63
import com.spice.profitmandi.dao.service.SaleRewardService;
30727 amit.gupta 64
import com.spice.profitmandi.service.integrations.bharti.BAGService;
65
import com.spice.profitmandi.service.integrations.bharti.model.Sample;
30310 amit.gupta 66
import com.spice.profitmandi.service.integrations.gstpro.GstProAuthService;
67
import com.spice.profitmandi.service.integrations.gstpro.GstProService;
31047 amit.gupta 68
import com.spice.profitmandi.service.integrations.oneassist.OneAssistService;
35266 ranu 69
import com.spice.profitmandi.service.integrations.oneassist.model.CancelPlanRequestModel;
31047 amit.gupta 70
import com.spice.profitmandi.service.integrations.zest.InsuranceService;
23899 amit.gupta 71
import com.spice.profitmandi.service.inventory.InventoryService;
26033 amit.gupta 72
import com.spice.profitmandi.service.inventory.PurchaseService;
28736 amit.gupta 73
import com.spice.profitmandi.service.inventory.SaholicInventoryService;
30576 amit.gupta 74
import com.spice.profitmandi.service.offers.ItemCriteria;
27948 amit.gupta 75
import com.spice.profitmandi.service.offers.OfferService;
28557 amit.gupta 76
import com.spice.profitmandi.service.offers.PartnerCriteria;
24266 amit.gupta 77
import com.spice.profitmandi.service.order.OrderService;
24005 amit.gupta 78
import com.spice.profitmandi.service.pricing.PriceDropService;
79
import com.spice.profitmandi.service.scheme.SchemeService;
35132 amit 80
import com.spice.profitmandi.service.transaction.SDCreditService;
23899 amit.gupta 81
import com.spice.profitmandi.service.transaction.TransactionService;
30310 amit.gupta 82
import com.spice.profitmandi.service.transaction.invoicing.InvoiceService;
35179 amit 83
import com.spice.profitmandi.service.transaction.scheduled.SDCreditScheduler;
23899 amit.gupta 84
import com.spice.profitmandi.service.user.RetailerService;
31090 amit.gupta 85
import com.spice.profitmandi.service.wallet.CommonPaymentService;
23899 amit.gupta 86
import com.spice.profitmandi.service.wallet.WalletService;
37686 ranu 87
import com.spice.profitmandi.service.monitors.RbmPerformanceRankingService;
88
import com.spice.profitmandi.service.warehouse.PoStockApprovalDigestService;
28046 amit.gupta 89
import com.spice.profitmandi.service.warehouse.WarehouseInventoryService;
35179 amit 90
import com.spice.profitmandi.service.warehouse.WarehouseService;
36420 amit 91
import com.spice.profitmandi.common.web.client.HttpClientFactory;
92
import com.spice.profitmandi.common.web.client.RestClient;
24953 amit.gupta 93
import in.shop2020.model.v1.order.OrderStatus;
24002 amit.gupta 94
import in.shop2020.model.v1.order.WalletReferenceType;
36420 amit 95
import org.apache.http.client.methods.CloseableHttpResponse;
96
import org.apache.http.client.methods.HttpDelete;
97
import org.apache.http.impl.client.CloseableHttpClient;
98
import org.apache.http.util.EntityUtils;
30727 amit.gupta 99
import org.apache.commons.csv.CSVRecord;
29945 amit.gupta 100
import org.apache.commons.io.output.ByteArrayOutputStream;
101
import org.apache.commons.lang.StringUtils;
102
import org.apache.logging.log4j.LogManager;
103
import org.apache.logging.log4j.Logger;
32211 amit.gupta 104
import org.apache.poi.ss.usermodel.CellType;
105
import org.apache.poi.ss.usermodel.DataFormatter;
106
import org.apache.poi.xssf.usermodel.XSSFCell;
107
import org.apache.poi.xssf.usermodel.XSSFRow;
108
import org.apache.poi.xssf.usermodel.XSSFSheet;
109
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
29945 amit.gupta 110
import org.json.JSONArray;
111
import org.json.JSONObject;
112
import org.openqa.selenium.Dimension;
113
import org.openqa.selenium.OutputType;
114
import org.openqa.selenium.TakesScreenshot;
115
import org.openqa.selenium.WebDriver;
116
import org.openqa.selenium.chrome.ChromeDriver;
117
import org.openqa.selenium.chrome.ChromeOptions;
118
import org.springframework.beans.factory.annotation.Autowired;
119
import org.springframework.core.io.ByteArrayResource;
120
import org.springframework.mail.javamail.JavaMailSender;
121
import org.springframework.stereotype.Component;
35612 amit 122
import org.springframework.transaction.annotation.Propagation;
29945 amit.gupta 123
import org.springframework.transaction.annotation.Transactional;
24002 amit.gupta 124
 
29945 amit.gupta 125
import java.io.File;
126
import java.io.FileInputStream;
127
import java.io.IOException;
34710 amit.gupta 128
import java.math.BigDecimal;
31461 amit.gupta 129
import java.time.*;
29945 amit.gupta 130
import java.time.temporal.ChronoUnit;
131
import java.util.*;
132
import java.util.concurrent.TimeUnit;
133
import java.util.stream.Collectors;
134
 
23755 amit.gupta 135
@Component
136
@Transactional(rollbackFor = Throwable.class)
137
public class RunOnceTasks {
138
 
31461 amit.gupta 139
    private static final Logger LOGGER = LogManager.getLogger(RunOnceTasks.class);
36420 amit 140
 
31461 amit.gupta 141
    @Autowired
36420 amit 142
    private RestClient restClient;
143
 
144
    @Autowired
31461 amit.gupta 145
    private LineItemRepository lineItemRepository;
24711 amit.gupta 146
 
31461 amit.gupta 147
    @Autowired
148
    private LeadRepository leadRepository;
28731 amit.gupta 149
 
31461 amit.gupta 150
    @Autowired
151
    InsuranceService insuranceService;
31047 amit.gupta 152
 
31461 amit.gupta 153
    @Autowired
154
    private WarehouseRepository warehouseRepository;
27277 amit.gupta 155
 
31461 amit.gupta 156
    @Autowired
157
    private PurchaseReturnItemRepository purchaseReturnItemRepository;
26928 amit.gupta 158
 
31461 amit.gupta 159
    @Autowired
160
    private SaholicInventorySnapshotRepository saholicInventorySnapshotRepository;
25752 amit.gupta 161
 
31461 amit.gupta 162
    @Autowired
163
    private CsService csService;
28660 amit.gupta 164
 
31461 amit.gupta 165
    @Autowired
35610 amit 166
    private TicketRepository ticketRepository;
167
 
168
    @Autowired
169
    private ActivityRepository activityRepository;
170
 
171
    @Autowired
172
    private AuthRepository authRepository;
173
 
174
    @Autowired
31461 amit.gupta 175
    private ManualPaymentRequestRepository manualPaymentRequestRepository;
28624 amit.gupta 176
 
31461 amit.gupta 177
    @Autowired
178
    private OfferRepository offerRepository;
26299 amit.gupta 179
 
31461 amit.gupta 180
    @Autowired
181
    private Mongo mongoClient;
27787 amit.gupta 182
 
31461 amit.gupta 183
    @Autowired
184
    private Gson gson;
28624 amit.gupta 185
 
31461 amit.gupta 186
    @Autowired
187
    private PaymentOptionTransactionRepository paymentOptionTransactionRepository;
26579 amit.gupta 188
 
31461 amit.gupta 189
    @Autowired
190
    private PrebookingOrderRepository prebookingOrderRepository;
24953 amit.gupta 191
 
31461 amit.gupta 192
    @Autowired
193
    private PartnerTargetRepository partnerTargetRepository;
24883 amit.gupta 194
 
31461 amit.gupta 195
    @Autowired
196
    private SellerWarehouseRepository sellerWarehouseRepository;
24814 amit.gupta 197
 
31461 amit.gupta 198
    @Autowired
199
    private FofoOrderItemRepository fofoOrderItemRepository;
27787 amit.gupta 200
 
31461 amit.gupta 201
    @Autowired
202
    private FofoLineItemRepository fofoLineItemRepository;
24814 amit.gupta 203
 
31461 amit.gupta 204
    @Autowired
205
    private FofoOrderRepository fofoOrderRepository;
24814 amit.gupta 206
 
31461 amit.gupta 207
    @Autowired
208
    private UserWalletRepository userWalletRepository;
24767 amit.gupta 209
 
31461 amit.gupta 210
    @Autowired
211
    private UserWalletHistoryRepository userWalletHistoryRepository;
24767 amit.gupta 212
 
31461 amit.gupta 213
    @Autowired
214
    private UserRepository userRepository;
24711 amit.gupta 215
 
31461 amit.gupta 216
    @Autowired
217
    private WalletService walletService;
23899 amit.gupta 218
 
31461 amit.gupta 219
    @Autowired
220
    private ItemRepository itemRepository;
25034 amit.gupta 221
 
31461 amit.gupta 222
    @Autowired
223
    private InventoryService inventoryService;
23899 amit.gupta 224
 
31461 amit.gupta 225
    @Autowired
226
    private TransactionService transactionService;
26299 amit.gupta 227
 
31461 amit.gupta 228
    @Autowired
229
    private PurchaseService purchaseService;
23899 amit.gupta 230
 
31461 amit.gupta 231
    // Service for Tertiary/Partner Orders
232
    @Autowired
233
    private OrderService orderService;
23767 amit.gupta 234
 
31461 amit.gupta 235
    @Autowired
34443 vikas.jang 236
    private LiquidationService liquidationService;
237
 
238
    @Autowired
31461 amit.gupta 239
    private SchemeRepository schemeRepository;
25516 amit.gupta 240
 
31461 amit.gupta 241
    @Autowired
242
    private AddressRepository addressRepository;
25749 amit.gupta 243
 
31461 amit.gupta 244
    @Autowired
245
    private ScheduledTasks scheduledTasks;
25034 amit.gupta 246
 
31461 amit.gupta 247
    @Autowired
248
    private SchemeItemRepository schemeItemRepository;
25021 amit.gupta 249
 
31461 amit.gupta 250
    @Autowired
251
    private ReturnOrderRepository returnOrderRepository;
24772 amit.gupta 252
 
31461 amit.gupta 253
    @Autowired
254
    private FofoStoreRepository fofoStoreRepository;
23899 amit.gupta 255
 
31461 amit.gupta 256
    @Autowired
257
    private LineItemImeisRepository lineItemImeisRepository;
24711 amit.gupta 258
 
31461 amit.gupta 259
    @Autowired
260
    private InventoryItemRepository inventoryItemRepository;
24814 amit.gupta 261
 
31461 amit.gupta 262
    @Autowired
263
    private TagListingRepository tagListingRepository;
26579 amit.gupta 264
 
31461 amit.gupta 265
    @Autowired
266
    private InvoiceNumberGenerationSequenceRepository invoiceNumberGenerationSequenceRepository;
23901 amit.gupta 267
 
31461 amit.gupta 268
    @Autowired
269
    private RetailerService retailerService;
24711 amit.gupta 270
 
31461 amit.gupta 271
    @Autowired
272
    private SchemeInOutRepository schemeInOutRepository;
24711 amit.gupta 273
 
31461 amit.gupta 274
    @Autowired
275
    private DebitNoteRepository debitNoteRepository;
28624 amit.gupta 276
 
31461 amit.gupta 277
    @Autowired
36053 amit 278
    private PurchaseReturnOrderRepository purchaseReturnOrderRepository;
279
 
280
    @Autowired
31461 amit.gupta 281
    private OfferService offerService;
23899 amit.gupta 282
 
31461 amit.gupta 283
    @Autowired
284
    private GenericRepository genericRepository;
24716 amit.gupta 285
 
31461 amit.gupta 286
    @Autowired
287
    private PurchaseRepository purchaseRepository;
24711 amit.gupta 288
 
31461 amit.gupta 289
    @Autowired
290
    private PriceDropService priceDropService;
24883 amit.gupta 291
 
31461 amit.gupta 292
    @Autowired
293
    private JavaMailSender googleMailSender;
24711 amit.gupta 294
 
31461 amit.gupta 295
    @Autowired
296
    private SchemeService schemeService;
24711 amit.gupta 297
 
31461 amit.gupta 298
    @Autowired
299
    private CurrentInventorySnapshotRepository currentInventorySnapshotRepository;
24716 amit.gupta 300
 
31461 amit.gupta 301
    @Autowired
302
    private OrderRepository orderRepository;
28731 amit.gupta 303
 
31461 amit.gupta 304
    @Autowired
305
    private ScanRecordRepository scanRecordRepository;
24716 amit.gupta 306
 
31461 amit.gupta 307
    @Autowired
36402 amit 308
    private JavaMailSender gmailRelaySender;
27451 tejbeer 309
 
34770 vikas.jang 310
    @Autowired
35105 vikas 311
    private LocationTrackingService locationTrackingService;
34946 ranu 312
 
313
    @Autowired
35105 vikas 314
    private AbmReportSender abmReportSender;
34770 vikas.jang 315
 
35105 vikas 316
    @Autowired
317
    private SaleRewardService saleRewardService;
37689 ranu 318
/*
37686 ranu 319
    @Autowired
37689 ranu 320
    private PoStockApprovalDigestService poStockApprovalDigestService;*/
37686 ranu 321
 
322
    @Autowired
323
    private RbmPerformanceRankingService rbmPerformanceRankingService;
324
 
31461 amit.gupta 325
    private static final String ACCOUNT_ID = "aZ6flHhrgPIEl18buHdPBdueEN4";
326
    private static final String SECRET_KEY = "a7rsX5B4UNNfTTx1-IJ19qdH48BT4YvBKlQJg3n3_KKNe7WWych55g";
24767 amit.gupta 327
 
31461 amit.gupta 328
    @Autowired
329
    private WarehouseInventoryItemRepository warehouseInventoryItemRepository;
27787 amit.gupta 330
 
31461 amit.gupta 331
    public void populateGrnTimestamp() {
332
        List<Purchase> allPurchases = purchaseRepository.selectAll();
333
        for (Purchase p : allPurchases) {
334
            String invoiceNumber = p.getPurchaseReference();
335
            if (p.getCompleteTimestamp() == null) {
336
                LOGGER.info("GRN for invoice {} is delivered but partially Completed.", p.getPurchaseReference());
337
            } else {
338
                List<Order> orders = orderRepository.selectByAirwayBillOrInvoiceNumber(invoiceNumber, p.getFofoId());
339
                for (Order order : orders) {
340
                    if (order.getPartnerGrnTimestamp() == null) {
341
                        order.setPartnerGrnTimestamp(p.getCompleteTimestamp());
342
                    }
343
                }
344
            }
345
        }
23899 amit.gupta 346
 
31461 amit.gupta 347
    }
23899 amit.gupta 348
 
31461 amit.gupta 349
    public void cancelOrder(List<String> invoiceNumbers) throws Exception {
350
        orderService.cancelOrder(invoiceNumbers);
351
    }
27787 amit.gupta 352
 
31461 amit.gupta 353
    @Autowired
354
    HdfcPaymentRepository hdfcPaymentRepository;
27787 amit.gupta 355
 
31461 amit.gupta 356
    public void addPayment() throws Exception {
357
        List<Integer> paymentIds = Arrays.asList(3777);
358
        for (int hdfcPaymentId : paymentIds) {
359
            HdfcPayment hdfcPayment = hdfcPaymentRepository.selectById(hdfcPaymentId);
360
            String virtualAccount = hdfcPayment.getVirtualAccount();
361
            String retailerIdString = virtualAccount.substring(6);
362
            int retailerId = Integer.parseInt(retailerIdString);
363
            String description = String.format("Advance payment received through %s, Utr# %s",
364
                    hdfcPayment.getTransferMode(), hdfcPayment.getUtr());
365
            walletService.addAmountToWallet(retailerId, hdfcPayment.getId(), WalletReferenceType.AUTOMATED_ADVANCE,
366
                    description, (float) hdfcPayment.getAmount(), hdfcPayment.getCreditTimestamp());
367
        }
368
    }
29863 tejbeer 369
 
31461 amit.gupta 370
    // Bug in original migrate purchase
371
    public void migratePurchase() throws Exception {
372
        List<Purchase> purchases = purchaseRepository.selectPurchaseAllPurchasesLessThanZero();
373
        for (Purchase purchase : purchases) {
374
            List<InventoryItem> inventoryItems = inventoryItemRepository.selectByPurchaseId(purchase.getId());
375
            for (InventoryItem ii : inventoryItems) {
376
                List<ScanRecord> scans = scanRecordRepository.selectByInventoryItemId(ii.getId());
377
                if (scans.size() == 1 && scans.get(0).getQuantity() == 0) {
378
                    scanRecordRepository.delete(scans.get(0));
379
                    purchase.setNonSerializedQuantity(purchase.getNonSerializedQuantity() - ii.getInitialQuantity());
380
                    inventoryItemRepository.delete(ii);
381
                }
29863 tejbeer 382
 
31461 amit.gupta 383
            }
29863 tejbeer 384
 
31461 amit.gupta 385
        }
386
    }
29758 amit.gupta 387
 
31461 amit.gupta 388
    public void migratePurchaseFix() throws Exception {
389
        List<Purchase> purchases = purchaseRepository.selectPurchaseAllPurchasesLessThanZero();
390
        System.out.printf("Total Purchases count is %s", purchases.size());
391
        for (Purchase purchase : purchases) {
392
            List<InventoryItem> inventoryItems = inventoryItemRepository.selectByPurchaseId(purchase.getId());
393
            Map<Integer, List<InventoryItem>> itemIdInventoryMap = inventoryItems.stream()
394
                    .collect(Collectors.groupingBy(InventoryItem::getItemId));
395
            List<Order> orders = orderRepository.selectByAirwayBillOrInvoiceNumber(purchase.getPurchaseReference(),
396
                    purchase.getFofoId());
397
            Map<Integer, Integer> ourSaleItemQtyMap = orders.stream().collect(Collectors.groupingBy(
398
                    x -> x.getLineItem().getItemId(), Collectors.summingInt(x -> x.getLineItem().getQuantity())));
399
            Map<Integer, Integer> theirPurchaseItemQtyMap = inventoryItems.stream().collect(Collectors
400
                    .groupingBy(InventoryItem::getItemId, Collectors.summingInt(InventoryItem::getInitialQuantity)));
401
            for (Map.Entry<Integer, Integer> itemQtyEntry : theirPurchaseItemQtyMap.entrySet()) {
402
                if (!ourSaleItemQtyMap.containsKey(itemQtyEntry.getKey())) {
403
                    LOGGER.info("Cannot find in Invoice {} item {}", purchase.getPurchaseReference(),
404
                            itemQtyEntry.getKey());
405
                    continue;
406
                }
407
                int ourSale = ourSaleItemQtyMap.get(itemQtyEntry.getKey());
408
                int quantityToReduce = itemQtyEntry.getValue() - ourSale;
409
                List<InventoryItem> itemIis = itemIdInventoryMap.get(itemQtyEntry.getKey());
33994 amit.gupta 410
                if (quantityToReduce > 0) {
411
                    LOGGER.info("Invoice {}, Item {}, Quantity to reduce {}", purchase.getPurchaseReference(), itemQtyEntry.getKey(), quantityToReduce);
412
                    if (itemIdInventoryMap != null) {
413
                        for (InventoryItem ii : itemIis) {
414
                            if (ii.getSerialNumber() == null && ii.getGoodQuantity() == ii.getInitialQuantity()
415
                                    && quantityToReduce >= ii.getInitialQuantity()) {
416
                                LOGGER.info("Changed in inventoryItems {}, {}, {}, {}, {}, {}",
417
                                        purchase.getPurchaseReference(), ii.getId(), ii.getItemId(),
418
                                        ii.getInitialQuantity(), ii.getGoodQuantity(), quantityToReduce);
419
                                List<ScanRecord> scanRecords = scanRecordRepository.selectByInventoryItemId(ii.getId());
420
                                for (ScanRecord scanRecord : scanRecords) {
421
                                    CurrentInventorySnapshot cis = currentInventorySnapshotRepository
422
                                            .selectByItemIdAndFofoId(itemQtyEntry.getKey(), purchase.getFofoId());
423
 
424
                                    cis.setAvailability(cis.getAvailability() - ii.getInitialQuantity());
425
                                    purchase.setUnfullfilledNonSerializedQuantity(
426
                                            purchase.getUnfullfilledNonSerializedQuantity() + quantityToReduce);
427
 
428
                                    quantityToReduce = quantityToReduce - ii.getInitialQuantity();
429
                                    inventoryItemRepository.delete(ii);
430
                                    scanRecordRepository.delete(scanRecord);
431
                                    LOGGER.info("Rectified {}, {}, {}, {}, {}, {}", purchase.getPurchaseReference(),
432
                                            ii.getId(), ii.getItemId(), ii.getInitialQuantity(), ii.getGoodQuantity(),
433
                                            quantityToReduce);
434
 
435
                                }
31461 amit.gupta 436
                            }
437
                        }
438
                    }
439
                }
440
            }
441
        }
33994 amit.gupta 442
        //throw new Exception();
31461 amit.gupta 443
    }
24767 amit.gupta 444
 
31461 amit.gupta 445
    public void migrateChallansToInvoices() throws Exception {
446
        Map<String, List<Order>> invoiceOrdersMap = orderRepository.selectAllChallans().stream()
447
                .filter(x -> !x.getLineItem().getHsnCode().equals("NOGST"))
448
                .collect(Collectors.groupingBy(Order::getInvoiceNumber, Collectors.toList()));
24814 amit.gupta 449
 
31461 amit.gupta 450
        List<List<?>> rows = new ArrayList<>();
451
        for (String invoice : invoiceOrdersMap.keySet()) {
452
            Order oneOrder = invoiceOrdersMap.get(invoice).get(0);
453
            int totalOrders = invoiceOrdersMap.get(invoice).size();
454
            LineItem lineItem = oneOrder.getLineItem();
455
            oneOrder.setBillingTimestamp(LocalDateTime.now());
456
            oneOrder.setInvoiceNumber(getInvoiceNumber(oneOrder));
457
            rows.add(Arrays.asList(oneOrder.getId(), invoice, oneOrder.getInvoiceNumber(), lineItem.getQuantity()));
458
            LOGGER.info(invoice + "\t" + oneOrder.getInvoiceNumber() + oneOrder.getId() + "\t",
459
                    "\t" + totalOrders + "\t" + lineItem.getQuantity());
460
            Purchase p = null;
461
            try {
462
                p = purchaseRepository.selectByPurchaseReferenceAndFofoId(invoice, oneOrder.getRetailerId());
463
            } catch (Exception e) {
464
                LOGGER.info("Could not find purchase for invoice {}", invoice);
465
            }
466
            if (p != null) {
467
                List<InventoryItem> inventoryItems = inventoryItemRepository.selectByPurchaseId(p.getId());
468
                for (InventoryItem inventoryItem : inventoryItems) {
469
                    LOGGER.info(inventoryItem.getItemId() + " " + inventoryItem.getGoodQuantity() + " "
470
                            + inventoryItem.getHsnCode() + " " + inventoryItem.getSerialNumber() + " "
471
                            + p.getPurchaseReference());
472
                }
473
            }
24814 amit.gupta 474
 
31461 amit.gupta 475
        }
476
        changePartnerInvoices();
477
        ByteArrayOutputStream baos = FileUtil
478
                .getCSVByteStream(Arrays.asList("Order id", "Challan", "Invoice", "Quantity"), rows);
24883 amit.gupta 479
 
31461 amit.gupta 480
        Utils.sendMailWithAttachment(googleMailSender,
37631 amit 481
                new String[]{"amit.gupta@shop2020.in"}, null,
31461 amit.gupta 482
                "Challans Converted to Invoice", "PFA", "Challans-To-Invoice.csv",
483
                new ByteArrayResource(baos.toByteArray()));
484
        throw new Exception();
485
    }
24767 amit.gupta 486
 
31461 amit.gupta 487
    private String getInvoiceNumber(Order oneOrder) {
488
        String prefix = oneOrder.getInvoiceNumber().split("-")[1].replaceAll("\\d*", "");
489
        System.out.println("Prefix is " + prefix);
490
        SellerWarehouse sellerWarehouse = sellerWarehouseRepository.selectByPrefix(prefix);
491
        int newSequence = sellerWarehouse.getInvoiceSequence() + 1;
492
        sellerWarehouse.setInvoiceSequence(newSequence);
493
        return prefix + newSequence;
494
    }
24814 amit.gupta 495
 
31461 amit.gupta 496
    private void changePartnerInvoices() throws Exception {
497
        List<FofoOrder> fofoOrders = fofoOrderRepository.selectByInvoiceNumberLike("%SEC%");
498
        for (FofoOrder fofoOrder : fofoOrders) {
499
            FofoOrderItem fofoOrderItem = fofoOrderItemRepository.selectByOrderId(fofoOrder.getId()).get(0);
500
            if (fofoOrderItem.getBrand().equals("Vivo")) {
501
                String challanString = fofoOrder.getInvoiceNumber();
502
                String storeCode = invoiceNumberGenerationSequenceRepository.selectByFofoId(fofoOrder.getFofoId())
503
                        .getPrefix();
504
                String invoiceNumber = orderService.getInvoiceNumber(fofoOrder.getFofoId(), storeCode);
505
                fofoOrder.setInvoiceNumber(invoiceNumber);
506
                fofoOrder.setCreateTimestamp(LocalDateTime.now());
507
                LOGGER.info(challanString + "\t" + invoiceNumber + "\t" + fofoOrderItem.getQuantity());
508
            }
24814 amit.gupta 509
 
31461 amit.gupta 510
        }
511
    }
24802 amit.gupta 512
 
31461 amit.gupta 513
    private Scheme getScheme() {
514
        Scheme s = new Scheme();
515
        s.setName("List Price Margin");
516
        s.setDescription("List Price Margin");
517
        s.setActiveTimestamp(null);
518
        s.setStartDateTime(LocalDate.of(2019, 6, 1).atStartOfDay());
519
        s.setEndDateTime(LocalDate.of(2019, 7, 1).atStartOfDay());
520
        s.setAmountType(AmountType.PERCENTAGE);
521
        s.setCreateTimestamp(LocalDateTime.now());
522
        s.setExpireTimestamp(null);
523
        s.setCreatedBy(175120474);
524
        return s;
525
    }
25021 amit.gupta 526
 
31461 amit.gupta 527
    public void findMismatchesInIndent() throws Exception {
32869 amit.gupta 528
        List<Order> allInProcessOrders = orderRepository.selectAllOrder(Arrays.asList(OrderStatus.SUBMITTED_FOR_PROCESSING, OrderStatus.INVENTORY_LOW));
24967 amit.gupta 529
 
31461 amit.gupta 530
        Map<String, Integer> lineItemWhQtyMap = allInProcessOrders.stream()
531
                .collect(Collectors.groupingBy(y -> y.getLineItem().getItemId() + "-" + y.getFulfilmentWarehouseId(),
532
                        Collectors.summingInt(y -> y.getLineItem().getQuantity())));
25021 amit.gupta 533
 
31461 amit.gupta 534
        lineItemWhQtyMap.forEach((key, value) -> {
25021 amit.gupta 535
 
31461 amit.gupta 536
            int itemId = Integer.parseInt(key.split("-")[0]);
537
            int warehouseId = Integer.parseInt(key.split("-")[1]);
538
            System.out.printf("%d\t%d\t%d\n", itemId, warehouseId, value);
539
            SaholicInventorySnapshot cis = saholicInventorySnapshotRepository.selectByWarehouseIdandItemId(warehouseId,
540
                    itemId);
541
            if (cis == null) {
542
                cis = new SaholicInventorySnapshot();
543
                cis.setItemId(itemId);
544
                cis.setWarehouseId(warehouseId);
545
                cis.setAvailability(0);
546
                saholicInventorySnapshotRepository.persist(cis);
547
            }
548
            cis.setReserved(value);
549
        });
550
    }
24953 amit.gupta 551
 
25530 amit.gupta 552
 
31461 amit.gupta 553
    public void fixWallet() throws Exception {
554
        List<FofoStore> fofoStores = fofoStoreRepository.selectAll();
555
        System.out.println("id\tcode\tactive\tname\tcity\tstate\twallet amount\tsum\twallet amount-sum");
556
        for (FofoStore fofoStore : fofoStores) {
557
            UserWallet uw = userWalletRepository.selectByRetailerId(fofoStore.getId());
558
            User user = userRepository.selectById(fofoStore.getId());
559
            if (user == null) {
560
                LOGGER.info("store does not exist", fofoStore.getCode());
561
                continue;
562
            }
563
            Address address = null;
564
            try {
565
                address = addressRepository.selectById(user.getAddressId());
566
            } catch (Exception e) {
567
                LOGGER.info("Could not find address for Store", fofoStore.getCode());
568
                address = new Address();
569
            }
570
            double sum = userWalletHistoryRepository.selectSumByWallet(uw.getId());
571
            int calculated = (int) sum;
572
            System.out.printf("%d\t%s\t%b\t%s\t%s\t%s\t%d\t%d\t%d%n", fofoStore.getId(), fofoStore.getCode(),
573
                    fofoStore.isActive(), address.getName(), address.getCity(), address.getState(), uw.getAmount(),
574
                    calculated, uw.getAmount() - calculated);
575
        }
576
    }
25749 amit.gupta 577
 
31461 amit.gupta 578
    public void changeWarehouse() throws Exception {
33395 amit.gupta 579
        transactionService.moveOrdersFulfimentWarehouse(7573);
31461 amit.gupta 580
    }
25749 amit.gupta 581
 
31461 amit.gupta 582
    public void mailDashboardScreenshots() throws Exception {
583
        System.setProperty("webdriver.chrome.driver", "/usr/bin/chromedriver");
25749 amit.gupta 584
 
31461 amit.gupta 585
        ChromeOptions options = new ChromeOptions();
586
        options.addArguments("--headless");
587
        options.addArguments("--no-sandbox");
588
        options.addArguments("start-maximized");
589
        options.addArguments("disable-infobars");
590
        options.addArguments("--disable-extensions");
25752 amit.gupta 591
 
31461 amit.gupta 592
        WebDriver driver = new ChromeDriver(options);
593
        driver.manage().window().setSize(new Dimension(1600, 900));
594
        driver.manage().window().maximize();
595
        // Deleting all the cookies
596
        driver.manage().deleteAllCookies();
597
        // Specifiying pageLoadTimeout and Implicit wait
598
        driver.manage().timeouts().pageLoadTimeout(40, TimeUnit.SECONDS);
599
        driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
25752 amit.gupta 600
 
31461 amit.gupta 601
        Map<String, Set<Integer>> authUserPartnerIdMapping = csService.getAuthUserPartnerIdMapping();
602
        Set<Integer> allPartners = new HashSet<>();
603
        Map<Integer, File> partnerSnapshotMap = new HashMap<>();
604
        authUserPartnerIdMapping.values().stream().forEach(x -> allPartners.addAll(x));
605
        for (int fofoId : allPartners) {
606
            driver.get("https://partners.smartdukaan.com/12dashboard34?fofoId=" + fofoId);
607
            File file = ((TakesScreenshot) driver).getScreenshotAs(OutputType.FILE);
608
            partnerSnapshotMap.put(fofoId, file);
25752 amit.gupta 609
 
31461 amit.gupta 610
        }
611
        for (Map.Entry<String, Set<Integer>> entry : authUserPartnerIdMapping.entrySet()) {
612
            String email = entry.getKey();
613
            LOGGER.info("Sending mail start to {}", email);
614
            Set<Integer> partnerIds = entry.getValue();
615
            StringBuffer body = new StringBuffer();
616
            Map<Integer, File> emailSnapshotMap = new HashMap<>();
617
            for (int fofoId : partnerIds) {
618
                body.append(String.format("<br/><img src=\"cid:%d\"/>", fofoId));
619
                emailSnapshotMap.put(fofoId, partnerSnapshotMap.get(fofoId));
620
            }
36402 amit 621
            Utils.sendEmbeddedHtmlMail(gmailRelaySender, new String[]{email}, new String[]{},
31461 amit.gupta 622
                    String.format("Franchise Screenshots - %s", FormattingUtils.formatDate(LocalDateTime.now())),
623
                    body.toString(), emailSnapshotMap);
624
            LOGGER.info("Sent mail to {}", email);
625
        }
626
        driver.quit();
627
    }
29893 tejbeer 628
 
31461 amit.gupta 629
    // Rollout prebooking orders amount in case the order is grned.
630
    public void pbfix() throws ProfitMandiBusinessException {
631
        List<PrebookingOrder> prebookingOrders = prebookingOrderRepository.selectAll();
632
        Map<Integer, Boolean> prebookingCleared = new HashMap<>();
633
        prebookingOrders = prebookingOrders.stream().collect(Collectors.toList());
634
        Map<Integer, List<PrebookingOrder>> catalogPrebookingMap = new HashMap<>();
635
        for (PrebookingOrder prebookingOrder : prebookingOrders) {
636
            if (!catalogPrebookingMap.containsKey(prebookingOrder.getCatalogId())) {
637
                catalogPrebookingMap.put(prebookingOrder.getCatalogId(), new ArrayList<>());
638
            }
639
            catalogPrebookingMap.get(prebookingOrder.getCatalogId()).add(prebookingOrder);
640
            int prebookingId = prebookingOrder.getId();
641
            List<UserWalletHistory> history = walletService.getAllByReference(prebookingOrder.getFofoId(), prebookingId,
642
                    WalletReferenceType.PREBOOKING_ORDER);
643
            long totalAmount = history.stream().collect(Collectors.summingLong(x -> x.getAmount()));
644
            // Refund is pending
645
            if (history.size() > 0) {
646
                if (totalAmount < 0) {
647
                    prebookingCleared.put(prebookingId, false);
648
                    LOGGER.info("Amount pending for prebooking id " + prebookingId + " amount is " + -totalAmount
649
                            + " catalog id - {}", prebookingOrder.getCatalogId());
650
                } else {
651
                    prebookingCleared.put(prebookingId, true);
652
                }
653
            } else {
654
                prebookingCleared.put(prebookingId, true);
655
                LOGGER.info("No entry in wallet for prebooking Id " + prebookingId);
656
            }
657
        }
658
        for (Map.Entry<Integer, List<PrebookingOrder>> entrySet : catalogPrebookingMap.entrySet()) {
659
            LOGGER.info("Catalog id {}, Size {}", entrySet.getKey(), entrySet.getValue().size());
660
            Set<Integer> itemIds = itemRepository.selectAllByCatalogItemId(entrySet.getKey()).stream()
661
                    .map(x -> x.getId()).collect(Collectors.toSet());
662
            List<PrebookingOrder> prebookings = entrySet.getValue();
663
            Map<Integer, List<PrebookingOrder>> fofoMap = prebookings.stream()
664
                    .collect(Collectors.groupingBy(x -> x.getFofoId(), Collectors.toList()));
665
            for (Map.Entry<Integer, List<PrebookingOrder>> fofoMapEntry : fofoMap.entrySet()) {
666
                int fofoId = fofoMapEntry.getKey();
667
                int totalGrnCount = inventoryItemRepository.selectByFofoIdItemIds(fofoId, itemIds).size();
668
                List<PrebookingOrder> partnerBookings = fofoMapEntry.getValue();
669
                for (PrebookingOrder partnerBooking : partnerBookings) {
670
                    if (prebookingCleared.get(partnerBooking.getId())) {
671
                        totalGrnCount--;
672
                        if (totalGrnCount < 0) {
673
                            totalGrnCount = 0;
674
                            LOGGER.info("FofoId {}, No Grn But Refunded prebooking id {}", fofoId,
675
                                    partnerBooking.getId());
676
                            break;
677
                        }
678
                    }
679
                }
29893 tejbeer 680
 
31461 amit.gupta 681
                long toBeRefunded = partnerBookings.stream().filter(x -> !prebookingCleared.get(x.getId()))
682
                        .limit(totalGrnCount).count();
683
                LOGGER.info("FofoId {}, Remaining Grn {}, toBeRefunded Prebooking {}", fofoId, totalGrnCount,
684
                        toBeRefunded);
685
                partnerBookings.stream().filter(x -> !prebookingCleared.get(x.getId()))
686
                        .filter(x -> x.getCreateTimestamp().getYear() == 2022).limit(totalGrnCount).forEach(x -> {
687
                            try {
688
                                purchaseService.sendPrebookingNotifyMessage(x);
689
                            } catch (Exception e) {
690
                                LOGGER.info("could not notify");
691
                            }
692
                        });
29893 tejbeer 693
 
31461 amit.gupta 694
            }
695
        }
696
    }
26092 amit.gupta 697
 
31461 amit.gupta 698
    public void fixGrn() throws Exception {
699
        List<Purchase> incompletePurchases = purchaseRepository.selectIncompletePurchase();
700
        for (Purchase incompletePurchase : incompletePurchases) {
701
            List<Order> orders = orderRepository.selectByAirwayBillOrInvoiceNumber(
702
                    incompletePurchase.getPurchaseReference(), incompletePurchase.getFofoId());
703
            List<InventoryItem> inventoryItems = inventoryItemRepository.selectByPurchaseId(incompletePurchase.getId());
704
            Map<Integer, Integer> grnedItems = inventoryItems.stream().collect(
705
                    Collectors.groupingBy(x -> x.getItemId(), Collectors.summingInt(x -> x.getInitialQuantity())));
706
            Map<Integer, Integer> billedItems = orders.stream().collect(Collectors.groupingBy(
707
                    x -> x.getLineItem().getItemId(), Collectors.summingInt(x -> x.getLineItem().getQuantity())));
708
            for (Integer billedItemId : billedItems.keySet()) {
709
                if (grnedItems.containsKey(billedItemId)) {
710
                    if (grnedItems.get(billedItemId) > billedItems.get(billedItemId)) {
711
                        LOGGER.info("Billed Qty {} ---- Grned {}, ItemId {}, Invoice Number {}({}), Grn Date {}",
712
                                billedItems.get(billedItemId), grnedItems.get(billedItemId), billedItemId,
713
                                incompletePurchase.getPurchaseReference(), incompletePurchase.getId(),
714
                                incompletePurchase.getCreateTimestamp());
715
                        Item item = itemRepository.selectById(billedItemId);
716
                        if (item.getType().equals(ItemType.SERIALIZED)) {
26299 amit.gupta 717
 
31461 amit.gupta 718
                        } else {
719
                            for (InventoryItem inventoryItem : inventoryItems) {
720
                                if (inventoryItem.getItemId() == billedItemId && inventoryItem.getGoodQuantity() == 0) {
721
                                    List<ScanRecord> scanRecords = scanRecordRepository
722
                                            .selectByInventoryItemId(inventoryItem.getId());
723
                                    if (scanRecords.size() == 1 && scanRecords.get(0).getQuantity() == 0) {
724
                                        LOGGER.info("Safe to remove InventoryItem Id {}", inventoryItem.getId());
725
                                        scanRecordRepository.delete(scanRecords.get(0));
726
                                        inventoryItemRepository.delete(inventoryItem);
727
                                        incompletePurchase.setUnfullfilledNonSerializedQuantity(
728
                                                incompletePurchase.getUnfullfilledNonSerializedQuantity()
729
                                                        + inventoryItem.getInitialQuantity());
730
                                    }
731
                                }
732
                            }
733
                        }
734
                    }
735
                }
736
            }
26299 amit.gupta 737
 
31461 amit.gupta 738
        }
26299 amit.gupta 739
 
31461 amit.gupta 740
    }
26265 amit.gupta 741
 
31461 amit.gupta 742
    public void fixDupGrns() throws Exception {
743
        List<Integer> duplicatePurchaseIds = Arrays.asList(14984);
744
        for (int duplicatePurchaseId : duplicatePurchaseIds) {
745
            Purchase purchase = purchaseRepository.selectById(duplicatePurchaseId);
746
            List<InventoryItem> inventoryItems = inventoryItemRepository.selectByPurchaseId(duplicatePurchaseId);
747
            if (inventoryItems.size() == 0) {
748
                LOGGER.info("Could not find InventoryItems for {}", duplicatePurchaseId);
749
                continue;
750
            }
751
            schemeService.rollbackSchemes(inventoryItems.stream().map(x -> x.getId()).collect(Collectors.toList()),
752
                    "Rolled back duplicate grn for Purchase Invoice " + purchase.getPurchaseReference());
753
            for (InventoryItem inventoryItem : inventoryItems) {
754
                inventoryItemRepository.delete(inventoryItem);
755
                List<ScanRecord> scanRecords = scanRecordRepository.selectByInventoryItemId(inventoryItem.getId());
756
                for (ScanRecord scanRecord : scanRecords) {
757
                    scanRecordRepository.delete(scanRecord);
758
                }
759
                List<SchemeInOut> sios = schemeInOutRepository
760
                        .selectByInventoryItemIds(new HashSet<>(Arrays.asList(inventoryItem.getId())));
761
                for (SchemeInOut sio : sios) {
762
                    LOGGER.info("SIO - {}", sio);
763
                    schemeInOutRepository.delete(sio);
764
                }
26299 amit.gupta 765
 
31461 amit.gupta 766
            }
767
        }
768
        // throw new Exception();
769
    }
26579 amit.gupta 770
 
33260 amit.gupta 771
    public void mongom() throws ProfitMandiBusinessException {
31461 amit.gupta 772
        List<TagListing> tls = tagListingRepository.selectAll(false);
773
        Set<Integer> itemIds = tls.stream().map(x -> x.getItemId()).collect(Collectors.toSet());
774
        Set<Integer> catalogIds = itemRepository.selectByIds(itemIds).stream().map(x -> x.getCatalogItemId())
775
                .collect(Collectors.toSet());
776
        for (int catalogId : catalogIds) {
777
            try {
778
                ContentPojo cp = mongoClient.getEntityById(catalogId);
779
                try {
780
                    cp.setIconImageUrl(cp.getIconImageUrl().replace("saholic", "smartdukaan"));
781
                } catch (Exception e) {
26759 amit.gupta 782
 
31461 amit.gupta 783
                }
26759 amit.gupta 784
 
31461 amit.gupta 785
                try {
786
                    cp.setThumbnailImageUrl(cp.getThumbnailImageUrl().replace("saholic", "smartdukaan"));
787
                } catch (Exception e) {
26759 amit.gupta 788
 
31461 amit.gupta 789
                }
26759 amit.gupta 790
 
31461 amit.gupta 791
                cp.setDefaultImageUrl(cp.getDefaultImageUrl().replace("saholic", "smartdukaan"));
792
                List<MediaPojo> mPojos = cp.getImages();
793
                if (mPojos != null) {
794
                    mPojos.stream().forEach(mPojo -> {
795
                        mPojo.setUrl(mPojo.getUrl().replace("saholic", "smartdukaan"));
796
                    });
797
                }
798
                mongoClient.persistEntity(cp);
799
            } catch (Exception e) {
800
                continue;
801
            }
802
        }
803
    }
26759 amit.gupta 804
 
36053 amit 805
    public void cancelDn(String debitNoteNumber, boolean recreatePri) throws Exception {
31461 amit.gupta 806
        DebitNote debitNote = debitNoteRepository.selectDebitNoteByNumber(debitNoteNumber);
26928 amit.gupta 807
 
31461 amit.gupta 808
        List<PurchaseReturnItem> purchaseReturnItems = purchaseReturnItemRepository
809
                .selectAllByDebitNoteId(debitNote.getId());
36053 amit 810
 
811
        // Block cancellation if any item is already refunded
812
        boolean hasReturned = purchaseReturnItems.stream()
813
                .anyMatch(x -> PurchaseReturnStatus.RETURNED.equals(x.getStatus()));
814
        if (hasReturned) {
815
            throw new Exception("Cannot cancel DN " + debitNoteNumber + " - items already returned and refunded to wallet");
816
        }
817
 
31461 amit.gupta 818
        // Select all inventory Item
819
        Set<Integer> inventoryItemIds = purchaseReturnItems.stream().map(x -> x.getInventoryItemId())
820
                .collect(Collectors.toSet());
821
        List<InventoryItem> inventoryItems = inventoryItemRepository.selectByIds(inventoryItemIds);
36053 amit 822
 
823
        // Reverse wallet refund if already processed
824
        List<PurchaseReturnOrder> purchaseReturnOrders = purchaseReturnOrderRepository.selectByDebitNoteId(debitNote.getId());
825
        for (PurchaseReturnOrder pro : purchaseReturnOrders) {
826
            if (pro.getRefundTimestamp() != null && pro.getRefundAmount() != null && pro.getRefundAmount() > 0) {
827
                walletService.consumeAmountFromWallet(debitNote.getFofoId(), debitNote.getId(),
828
                        WalletReferenceType.PURCHASE, "Reversed - DN cancelled " + debitNoteNumber,
829
                        pro.getRefundAmount(), LocalDateTime.now());
830
                LOGGER.info("Reversed wallet refund of {} for DN {}", pro.getRefundAmount(), debitNoteNumber);
831
            }
832
        }
833
 
31461 amit.gupta 834
        for (InventoryItem inventoryItem : inventoryItems) {
835
            if (!StringUtils.isEmpty(inventoryItem.getSerialNumber())) {
836
                inventoryItem.setGoodQuantity(1);
837
                inventoryItem.setLastScanType(ScanType.PURCHASE);
36053 amit 838
                scanRecordRepository.selectByInventoryItemId(inventoryItem.getId()).stream()
839
                        .filter(x -> x.getType().equals(ScanType.PURCHASE_RET)).findFirst()
840
                        .ifPresent(sr -> scanRecordRepository.delete(sr));
31461 amit.gupta 841
                CurrentInventorySnapshot cis = currentInventorySnapshotRepository
842
                        .selectByItemAndFofoId(inventoryItem.getItemId(), inventoryItem.getFofoId());
843
                if (cis == null) {
844
                    cis = new CurrentInventorySnapshot();
845
                    cis.setFofoId(inventoryItem.getFofoId());
36053 amit 846
                    cis.setItemId(inventoryItem.getItemId());
31461 amit.gupta 847
                    currentInventorySnapshotRepository.persist(cis);
848
                }
849
                cis.setAvailability(cis.getAvailability() + 1);
850
                schemeService.processSchemeIn(inventoryItem.getPurchaseId(), inventoryItem.getFofoId());
851
            }
852
        }
36053 amit 853
 
854
        if (recreatePri) {
855
            // Reset PRIs to CREATED so partner can re-initiate DN without re-requesting
856
            for (PurchaseReturnItem pri : purchaseReturnItems) {
857
                pri.setStatus(PurchaseReturnStatus.CREATED);
858
                pri.setDebitNoteId(0);
859
                pri.setApproveTimestamp(null);
860
                pri.setDenyTimestamp(null);
861
                pri.setRefundTimestamp(null);
862
                pri.setCreateTimestamp(LocalDateTime.now());
863
            }
864
        } else {
865
            purchaseReturnItems.forEach(x -> purchaseReturnItemRepository.delete(x));
866
        }
867
        LOGGER.info("Cancelled DN {} recreatePri={}", debitNoteNumber, recreatePri);
31461 amit.gupta 868
    }
26799 amit.gupta 869
 
31461 amit.gupta 870
    public void processPd(int priceDropId) throws ProfitMandiBusinessException {
871
        priceDropService.processPriceDrop(priceDropId, false);
872
    }
26928 amit.gupta 873
 
31461 amit.gupta 874
    public void fixScheme() throws Exception {
875
        LOGGER.info("Partner Types found\tPartnerType To Remove\tAmout to Rollback");
876
        final Map<Integer, Scheme> schemesMap = schemeRepository.selectAll().stream()
877
                .collect(Collectors.toMap(x -> x.getId(), x -> x));
878
        List<SchemeInOut> sios = schemeInOutRepository.selectAllByCreateDate(LocalDate.of(2019, 9, 1).atTime(0, 0),
879
                LocalDateTime.now());
880
        Map<SioTuple, Map<PartnerType, List<SchemeInOut>>> schemeTupleMap = sios.stream()
881
                .filter(x -> x.getRolledBackTimestamp() == null)
882
                .filter(x -> schemesMap.get(x.getSchemeId()).getPartnerType() != PartnerType.ALL)
883
                .collect(Collectors.groupingBy(
884
                        x -> new SioTuple(x.getInventoryItemId(), schemesMap.get(x.getSchemeId()).getType()),
885
                        Collectors.groupingBy(x -> schemesMap.get(x.getSchemeId()).getPartnerType(),
886
                                Collectors.mapping(x -> x, Collectors.toList()))));
27221 amit.gupta 887
 
31461 amit.gupta 888
        schemeTupleMap.entrySet().stream().filter(x -> x.getValue().size() > 1).forEach(x -> {
889
            Map<PartnerType, List<SchemeInOut>> partnerTypeSchemeMap = x.getValue();
890
            PartnerType partnerTypeToRemove = partnerTypeSchemeMap.keySet().stream()
891
                    .min(Comparator.comparing(y -> PartnerType.PartnerTypeRankMap.get(y))).get();
892
            LOGGER.info("{}\t{}\t{}\t{}\t{}\t{}", partnerTypeSchemeMap.keySet(), partnerTypeToRemove,
893
                    partnerTypeSchemeMap.get(partnerTypeToRemove).stream()
894
                            .collect(Collectors.summingDouble(SchemeInOut::getAmount)),
895
                    FormattingUtils.formatDate(partnerTypeSchemeMap.get(partnerTypeToRemove).stream()
896
                            .map(y -> y.getCreateTimestamp()).findFirst().get()));
27221 amit.gupta 897
 
31461 amit.gupta 898
        });
899
    }
26928 amit.gupta 900
 
31461 amit.gupta 901
    @Autowired
902
    GstProAuthService gstProAuthService;
30310 amit.gupta 903
 
31461 amit.gupta 904
    @Autowired
905
    GstProService gstProService;
30310 amit.gupta 906
 
31461 amit.gupta 907
    @Autowired
908
    InvoiceService invoiceService;
30310 amit.gupta 909
 
31461 amit.gupta 910
    public void updateIrnsToInvoices() {
911
        try {
912
            invoiceService.updateIrnsToInvoices();
913
        } catch (Throwable t) {
914
            t.printStackTrace();
915
        }
916
    }
30310 amit.gupta 917
 
37058 amit 918
    public void regenerateBilledInvoices(LocalDateTime fromTime, LocalDateTime toTime) {
919
        try {
920
            invoiceService.regenerateBilledInvoices(fromTime, toTime);
921
        } catch (Throwable t) {
922
            t.printStackTrace();
923
        }
924
    }
925
 
37326 amit 926
    /**
927
     * Recovers EWB details from NIC for invoices whose IRN came back via DUPIRN (so the EWB was
928
     * never captured) and re-renders their PDFs. NOT_SUPPORTED so the class-level transaction is
929
     * suspended — the NIC lookups must not run inside one.
930
     */
931
    @Transactional(propagation = Propagation.NOT_SUPPORTED)
932
    public void backfillMissingEwb(List<String> invoiceNumbers, boolean dryRun) {
933
        try {
934
            invoiceService.backfillMissingEwb(invoiceNumbers, dryRun);
935
        } catch (Throwable t) {
936
            t.printStackTrace();
937
        }
938
    }
939
 
32211 amit.gupta 940
    private static DataFormatter formatter = new DataFormatter();
941
 
31461 amit.gupta 942
    @Autowired
943
    OfferTargetSlabRepository offerTargetSlabRepository;
30576 amit.gupta 944
 
31461 amit.gupta 945
    @Autowired
946
    ItemCriteriaRepository itemCriteriaRepository;
30335 amit.gupta 947
 
31461 amit.gupta 948
    public void createOfferCriteria() throws Exception {
949
        Offer offer = offerRepository.selectById(1099);
950
        CreateOfferRequest createOfferRequest = offerService.getCreateOfferRequest(offer);
951
        createOfferRequest.setStartDate(LocalDate.of(2022, 7, 5).atStartOfDay());
952
        createOfferRequest.setEndDate(LocalDate.of(2022, 7, 31).atTime(LocalTime.MAX));
953
        createOfferRequest.setCreatedOn(LocalDateTime.now());
954
        offerService.addOfferService(createOfferRequest);
955
    }
30685 amit.gupta 956
 
31461 amit.gupta 957
    public void createOfferCriteria1() throws Exception {
958
        Map<Integer, List<Integer>> map = new HashMap<>();
959
        map.put(31960, Arrays.asList(57, 69));
960
        map.put(32844, Arrays.asList(57, 69));
961
        map.put(31964, Arrays.asList(65, 78));
962
        map.put(33493, Arrays.asList(70, 84));
963
        map.put(32847, Arrays.asList(65, 78));
964
        map.put(32623, Arrays.asList(72, 86));
965
        map.put(31972, Arrays.asList(74, 88));
966
        map.put(33495, Arrays.asList(78, 93));
967
        map.put(32699, Arrays.asList(78, 93));
968
        map.put(31967, Arrays.asList(78, 93));
969
        map.put(33424, Arrays.asList(86, 103));
970
        map.put(33441, Arrays.asList(94, 113));
971
        map.put(33491, Arrays.asList(102, 123));
972
        map.put(32664, Arrays.asList(94, 112));
973
        map.put(33430, Arrays.asList(159, 181));
974
        map.put(33381, Arrays.asList(172, 195));
975
        map.put(33484, Arrays.asList(184, 209));
976
        map.put(32698, Arrays.asList(171, 194));
977
        map.put(32665, Arrays.asList(171, 194));
978
        map.put(33428, Arrays.asList(146, 166));
979
        map.put(33499, Arrays.asList(196, 223));
980
        map.put(33427, Arrays.asList(184, 208));
981
        map.put(33385, Arrays.asList(203, 230));
982
        map.put(33373, Arrays.asList(196, 222));
983
        map.put(33429, Arrays.asList(171, 193));
984
        map.put(33387, Arrays.asList(215, 244));
985
        map.put(33432, Arrays.asList(208, 236));
986
        map.put(32546, Arrays.asList(196, 222));
987
        map.put(33389, Arrays.asList(227, 257));
988
        map.put(33498, Arrays.asList(233, 264));
989
        map.put(33496, Arrays.asList(202, 229));
990
        map.put(32088, Arrays.asList(233, 264));
991
        map.put(33377, Arrays.asList(233, 264));
992
        map.put(33395, Arrays.asList(327, 392));
993
        map.put(33393, Arrays.asList(344, 413));
994
        map.put(32277, Arrays.asList(360, 432));
995
        map.put(33397, Arrays.asList(377, 452));
996
        map.put(32305, Arrays.asList(393, 472));
997
        map.put(33492, Arrays.asList(409, 491));
998
        map.put(33399, Arrays.asList(409, 491));
999
        map.put(33405, Arrays.asList(442, 531));
1000
        map.put(33403, Arrays.asList(442, 531));
1001
        map.put(32854, Arrays.asList(442, 531));
1002
        map.put(32155, Arrays.asList(458, 550));
1003
        map.put(32151, Arrays.asList(458, 550));
1004
        map.put(33407, Arrays.asList(475, 570));
1005
        map.put(32855, Arrays.asList(475, 570));
1006
        map.put(33409, Arrays.asList(655, 786));
1007
        map.put(33411, Arrays.asList(688, 825));
1008
        map.put(32687, Arrays.asList(688, 825));
1009
        map.put(33413, Arrays.asList(720, 865));
1010
        map.put(33415, Arrays.asList(1032, 1238));
1011
        map.put(33417, Arrays.asList(1097, 1316));
30576 amit.gupta 1012
 
31461 amit.gupta 1013
        Offer offer = offerRepository.selectById(1099);
1014
        List<TargetSlab> targetSlabs = offerTargetSlabRepository.getByOfferId(offer.getId());
1015
        ItemCriteria itemCriteria = targetSlabs.get(0).getItemCriteriaPayouts().get(0).getItemCriteria();
30576 amit.gupta 1016
 
31461 amit.gupta 1017
        Map<List<Integer>, List<Integer>> payoutModelsMap = map.entrySet().stream().map(x ->
1018
        {
1019
            try {
1020
                int catalogId = itemRepository.selectById(x.getKey()).getCatalogItemId();
1021
                return new AbstractMap.SimpleEntry<>(catalogId, x.getValue());
1022
            } catch (Exception e) {
1023
                return new AbstractMap.SimpleEntry<>(0, new ArrayList());
1024
            }
1025
        }).collect(Collectors.groupingBy(x -> x.getValue(), Collectors.mapping(x -> x.getKey(), Collectors.toList())));
30576 amit.gupta 1026
 
31461 amit.gupta 1027
        payoutModelsMap.entrySet().stream().forEach(x ->
1028
        {
1029
            itemCriteria.setCatalogIds(x.getValue());
30576 amit.gupta 1030
 
31461 amit.gupta 1031
            com.spice.profitmandi.dao.entity.catalog.ItemCriteria itemCriteria1 = new com.spice.profitmandi.dao.entity.catalog.ItemCriteria();
1032
            itemCriteria1.setCriteria(gson.toJson(itemCriteria));
1033
            itemCriteriaRepository.persist(itemCriteria1);
31918 amit.gupta 1034
            TargetSlabEntity ts = new TargetSlabEntity();
31461 amit.gupta 1035
            ts.setOfferId(offer.getId());
1036
            ts.setAmountType(targetSlabs.get(0).getItemCriteriaPayouts().get(0).getAmountType());
1037
            ts.setPayoutTarget(25);
1038
            ts.setItemCriteriaId(itemCriteria1.getId());
1039
            ts.setPayoutValue(x.getKey().get(0));
1040
            offerTargetSlabRepository.persist(ts);
30576 amit.gupta 1041
 
31918 amit.gupta 1042
            TargetSlabEntity ts1 = new TargetSlabEntity();
31461 amit.gupta 1043
            ts1.setOfferId(offer.getId());
1044
            ts1.setAmountType(targetSlabs.get(0).getItemCriteriaPayouts().get(0).getAmountType());
1045
            ts1.setPayoutTarget(100);
1046
            ts1.setItemCriteriaId(itemCriteria1.getId());
1047
            ts1.setPayoutValue(x.getKey().get(1));
1048
            offerTargetSlabRepository.persist(ts1);
1049
        });
30576 amit.gupta 1050
 
31461 amit.gupta 1051
    }
30576 amit.gupta 1052
 
31461 amit.gupta 1053
    @Autowired
1054
    PriceDropRepository priceDropRepository;
30576 amit.gupta 1055
 
30616 amit.gupta 1056
 
31461 amit.gupta 1057
    @Autowired
1058
    PriceDropIMEIRepository priceDropIMEIRepository;
30616 amit.gupta 1059
 
31461 amit.gupta 1060
    public void fixPriceDrop() throws ProfitMandiBusinessException {
1061
        List<Integer> priceDropIds = Arrays.asList(609, 610, 611, 648, 649, 650, 651, 653, 667, 691, 692, 693, 695, 696, 697, 698, 645, 688);
1062
        for (int priceDropId : priceDropIds) {
1063
            PriceDrop pd = priceDropRepository.selectById(priceDropId);
1064
            LOGGER.info("Price Drop ---- {}", pd);
33203 amit.gupta 1065
            List<ImeiDropSummaryModel> actualList = priceDropService.getAllSerialNumbersByAffectedDate(pd.getAffectedOn(), pd.getCatalogItemId(), Optional.of(pd.getCreatedOn()));
31461 amit.gupta 1066
            Map<String, ImeiDropSummaryModel> actualMap = actualList.stream().collect(Collectors.toMap(x -> x.getSerialNumber(), x -> x));
30616 amit.gupta 1067
 
31461 amit.gupta 1068
            List<PriceDropIMEI> priceDropIMEIs = priceDropIMEIRepository.selectByPriceDropId(pd.getId());
1069
            Map<String, PriceDropIMEI> oldImeisMap = priceDropIMEIs.stream().collect(Collectors.toMap(x -> x.getImei(), x -> x));
30616 amit.gupta 1070
 
31461 amit.gupta 1071
            for (Map.Entry<String, PriceDropIMEI> entry : oldImeisMap.entrySet()) {
1072
                String imei = entry.getKey();
1073
                if (!actualMap.containsKey(imei)) {
1074
                    //This imei is invalid and need to be checked
1075
                    if (!entry.getValue().getStatus().equals(PriceDropImeiStatus.REJECTED)) {
1076
                        if (entry.getValue().getStatus().equals(PriceDropImeiStatus.PENDING)) {
1077
                            LOGGER.info("Invalid pending imei -- {} should be deleted", imei);
1078
                        } else if (entry.getValue().getStatus().equals(PriceDropImeiStatus.APPROVED)) {
1079
                            LOGGER.info("Invalid approved imei -- {} should be reversed", imei);
1080
                        }
1081
                        //These values should either be rejected or rolledBack
1082
                        LOGGER.info("Should be rejected or rolledBack -- Imei --- {}, Status --- {}", imei, entry.getValue().getStatus());
1083
                    } else {
1084
                        //Rejections can be ignored
1085
                    }
1086
                } else {
1087
                    if (entry.getValue().getStatus().equals(PriceDropImeiStatus.REJECTED)) {
1088
                        LOGGER.info("Valid but rejected imeis should be retried, marked pending --- {}", imei);
1089
                        entry.getValue().setStatus(PriceDropImeiStatus.PENDING);
1090
                    }
1091
                }
1092
            }
30616 amit.gupta 1093
 
31461 amit.gupta 1094
            for (Map.Entry<String, ImeiDropSummaryModel> entry : actualMap.entrySet()) {
1095
                ImeiDropSummaryModel imeiDropSummaryModel = entry.getValue();
1096
                String imei = entry.getKey();
1097
                if (!oldImeisMap.containsKey(imei)) {
1098
                    //this imei should be added for processing in pending state
1099
                    PriceDropIMEI priceDropIMEI = new PriceDropIMEI();
1100
                    priceDropIMEI.setPriceDropId(priceDropId);
1101
                    priceDropIMEI.setStatus(PriceDropImeiStatus.PENDING);
1102
                    priceDropIMEI.setImei(imei);
1103
                    priceDropIMEI.setPartnerId(imeiDropSummaryModel.getRetailerId());
1104
                    priceDropIMEI.setUpdateTimestamp(LocalDateTime.now());
1105
                    priceDropIMEIRepository.persist(priceDropIMEI);
1106
                    LOGGER.info("These imeis are added and were missing earlier --- {}", imei);
30616 amit.gupta 1107
 
31461 amit.gupta 1108
                }
1109
            }
30616 amit.gupta 1110
 
31461 amit.gupta 1111
        }
1112
    }
30616 amit.gupta 1113
 
31461 amit.gupta 1114
    @Autowired
1115
    private SaholicInventoryService saholicInventoryService;
30616 amit.gupta 1116
 
31461 amit.gupta 1117
    public void updateSaholicCISTable() {
1118
        saholicInventoryService.updateSaholicCIS();
1119
    }
30659 amit.gupta 1120
 
31461 amit.gupta 1121
    @Autowired
1122
    BAGService bagService;
30659 amit.gupta 1123
 
31461 amit.gupta 1124
    public void testBag() throws Exception {
1125
        //bagService.getPlans(10006, 10000f);
1126
        //bagService.getBrandsMaster();
1127
        bagService.getAllPlans();
1128
    }
30727 amit.gupta 1129
 
31461 amit.gupta 1130
    @Autowired
1131
    private OneAssistService oneAssistService;
31047 amit.gupta 1132
 
31461 amit.gupta 1133
    public void cancelOnceAssist(String invoiceNumber) throws Exception {
1134
        FofoOrder fofoOrder = fofoOrderRepository.selectByInvoiceNumber(invoiceNumber);
1135
        insuranceService.cancelInsurance(fofoOrder);
1136
    }
31047 amit.gupta 1137
 
34208 ranu 1138
    public void cancelOnceAssistByMemberShipNumber(String applicationNo, String membershipId) throws Exception {
1139
        insuranceService.cancelInsurance(applicationNo, membershipId);
1140
    }
1141
 
31461 amit.gupta 1142
    public void mapBag() throws Exception {
1143
        List<Item> items = itemRepository.selectAllItems(10006, Arrays.asList("OnePlus", "Oppo", "Realme", "Samsung", "Vivo", "Xiaomi"));
1144
        items.stream().collect(Collectors.groupingBy(x -> x.getBrand()));
30727 amit.gupta 1145
 
31461 amit.gupta 1146
        List<CSVRecord> csvRecordList = FileUtil.readFile(new File("/home/amit/Documents/sample.csv"));
1147
        for (CSVRecord csvRecord : csvRecordList) {
1148
            Sample sample = new Sample(csvRecord.get(0), csvRecord.get(1), csvRecord.get(2));
1149
            //StringUtils.getLevenshteinDistance()
1150
        }
1151
    }
30727 amit.gupta 1152
 
31461 amit.gupta 1153
    public void reverseInvalidActivation(List<Integer> inventoryItemIds) throws Exception {
1154
        orderService.reverseActivationScheme(inventoryItemIds);
1155
    }
31031 amit.gupta 1156
 
34443 vikas.jang 1157
    public void processBids(ProfitMandiConstants.BID_CRON_ENUM schedule) throws Exception {
1158
        liquidationService.processBids(schedule);
1159
    }
31088 amit.gupta 1160
 
34547 vikas.jang 1161
    public void consolidatedBiddingMessage() throws Exception {
1162
        liquidationService.consolidatedBiddingMessage();
1163
    }
1164
 
31461 amit.gupta 1165
    @Autowired
1166
    CartRepository cartRepository;
31088 amit.gupta 1167
 
31461 amit.gupta 1168
    @Autowired
1169
    CartService cartService;
31088 amit.gupta 1170
 
31461 amit.gupta 1171
    @Autowired
1172
    private CommonPaymentService commonPaymentService;
31090 amit.gupta 1173
 
1174
 
34710 amit.gupta 1175
    @Autowired
1176
    LoanRepository loanRepository;
1177
 
1178
    @Autowired
1179
    LoanStatementRepository loanStatementRepository;
1180
 
1181
 
1182
    //Reverse CD of a specified Loan
1183
    public void reverseCD() throws ProfitMandiBusinessException {
1184
        Loan loan = loanRepository.selectByLoanId(45975);
1185
        List<LoanStatement> loanStatements = loanStatementRepository.selectByLoanId(loan.getId());
1186
        loanStatements.stream().filter(x->x.getLoanReferenceType().equals(LoanReferenceType.PRINCIPAL) && x.getAmount().compareTo(BigDecimal.ZERO) > 0).forEach(x->loanStatementRepository.delete(x));
1187
        loan.setSettledOn(null);
1188
        loan.setPendingAmount(loan.getIntialAmount());
1189
        String invoiceNumber = loan.getInvoiceNumber();
1190
        Purchase purchase = purchaseRepository.selectByPurchaseReference(invoiceNumber);
1191
        List<Integer> iis = inventoryItemRepository.selectByPurchaseId(purchase.getId()).stream().map(x->x.getId()).collect(Collectors.toList());
1192
        for (Integer ii : iis) {
1193
            List<SchemeInOut> sios = schemeInOutRepository.selectAllByType(SchemeType.CASH_DISCOUNT, ii);
1194
            if(sios.size() > 0) {
1195
                schemeInOutRepository.delete(sios.get(0));
1196
            }
1197
            List<SchemeInOut> sios1 = schemeInOutRepository.selectAllByType(SchemeType.CASH_DISCOUNT1, ii);
1198
            if(sios1.size() > 0) {
1199
                schemeInOutRepository.delete(sios1.get(0));
1200
            }
1201
 
31461 amit.gupta 1202
        }
34710 amit.gupta 1203
        List<UserWalletHistory> uwhs = userWalletHistoryRepository.selectAllByreferenceIdandreferenceType(purchase.getId(), WalletReferenceType.SCHEME_IN);
1204
        for (UserWalletHistory uwh : uwhs) {
1205
            genericRepository.delete(uwh);
1206
        }
1207
 
31461 amit.gupta 1208
    }
31088 amit.gupta 1209
 
35132 amit 1210
    @Autowired
1211
    SDCreditService sdCreditService;
1212
 
1213
    @Autowired
1214
    SDCreditRequirementRepository sdCreditRequirementRepository;
1215
 
1216
    public void migrateLimit() throws ProfitMandiBusinessException {
35848 amit 1217
        // No longer needed - minimumInvestment is no longer modified for hard limits
35132 amit 1218
    }
1219
 
35146 amit 1220
    public void purchasePolicy() {
1221
        /*String invoiceNumber;
1222
        int retailerId =
1223
        insuranceService.createInsurancePolicy(invoiceNumber, retailerId, );*/
1224
    }
1225
 
35179 amit 1226
    @Autowired
1227
    WarehouseService warehouseService;
1228
 
1229
    public void moveSaleReturnScanToDoa(String serialNumber) throws Exception {
1230
        warehouseService.moveToBad(Arrays.asList(serialNumber), in.shop2020.warehouse.ScanType.DOA_IN);
1231
    }
1232
 
1233
    @Autowired
1234
    SDCreditScheduler sdCreditScheduler;
1235
    public void sendCreditExposureReport() throws Exception {
1236
        sdCreditScheduler.sendCreditExposureReport();
1237
        //sdCreditScheduler.testGetAsmBmString();
1238
    }
1239
 
31461 amit.gupta 1240
    private class SioTuple {
1241
        int inventoryId;
1242
        SchemeType schemeType;
26928 amit.gupta 1243
 
31461 amit.gupta 1244
        public SioTuple(int inventoryItemId, SchemeType schemeType) {
1245
            this.inventoryId = inventoryItemId;
1246
            this.schemeType = schemeType;
1247
        }
26928 amit.gupta 1248
 
31461 amit.gupta 1249
        public int getInventoryId() {
1250
            return inventoryId;
1251
        }
26928 amit.gupta 1252
 
31461 amit.gupta 1253
        public void setInventoryId(int inventoryId) {
1254
            this.inventoryId = inventoryId;
1255
        }
26928 amit.gupta 1256
 
31461 amit.gupta 1257
        public SchemeType getSchemeType() {
1258
            return schemeType;
1259
        }
26928 amit.gupta 1260
 
31461 amit.gupta 1261
        public void setSchemeType(SchemeType schemeType) {
1262
            this.schemeType = schemeType;
1263
        }
26928 amit.gupta 1264
 
31461 amit.gupta 1265
        @Override
1266
        public int hashCode() {
1267
            final int prime = 31;
1268
            int result = 1;
1269
            result = prime * result + getOuterType().hashCode();
1270
            result = prime * result + inventoryId;
1271
            result = prime * result + ((schemeType == null) ? 0 : schemeType.hashCode());
1272
            return result;
1273
        }
26928 amit.gupta 1274
 
31461 amit.gupta 1275
        @Override
1276
        public boolean equals(Object obj) {
1277
            if (this == obj)
1278
                return true;
1279
            if (obj == null)
1280
                return false;
1281
            if (getClass() != obj.getClass())
1282
                return false;
1283
            SioTuple other = (SioTuple) obj;
1284
            if (!getOuterType().equals(other.getOuterType()))
1285
                return false;
1286
            if (inventoryId != other.inventoryId)
1287
                return false;
1288
            if (schemeType != other.schemeType)
1289
                return false;
1290
            return true;
1291
        }
26928 amit.gupta 1292
 
31461 amit.gupta 1293
        private RunOnceTasks getOuterType() {
1294
            return RunOnceTasks.this;
1295
        }
26928 amit.gupta 1296
 
31461 amit.gupta 1297
    }
27221 amit.gupta 1298
 
31461 amit.gupta 1299
    public void printPendingLeads() {
1300
        LOGGER.info("PENDING LEADES {}", leadRepository.selectLeadsScheduledBetweenDate(null,
1301
                LocalDateTime.now().minusDays(15), LocalDateTime.now().plusHours(4)));
1302
    }
27277 amit.gupta 1303
 
31461 amit.gupta 1304
    public void removeDuplicateOrders() throws Exception {
1305
        List<String> invoiceNumbers = Arrays.asList(/*
1306
                 * "DLWE066/1108", "DLWE066/299", "DLWE066/348", "HRFB004/242",
1307
                 * "HRFB004/243", "HRFB004/514", "HRFTB155/29", "HRJND076/1146",
1308
                 * "HRJND076/966", "HRKA134/295", "HRKA134/421", "HRKK091/381",
1309
                 * "HRMGH106/576", "HRSP056/139", "HRYN030/103", "UPGZ019/395",
1310
                 * "UPHRD130/1299", "UPHRD130/456", "UPHRD130/634", "UPLKO063/897",
1311
                 * "UPMRT149/54", "UPSJP119/748", "UPSJP119/980", "UPSTP065/1218",
1312
                 * "UPSTP065/2039", "UPSTP090/437", "UPSTP120/164",
1313
                 */
1314
                "HRMGH106/1576");
27451 tejbeer 1315
 
31461 amit.gupta 1316
        int totalAmount = 0;
1317
        float saleAmount = 0;
1318
        float schemeReverseAmount = 0;
1319
        for (String invoiceNumber : invoiceNumbers) {
1320
            List<FofoOrder> orders = fofoOrderRepository.selectByInvoiceNumberLike(invoiceNumber);
1321
            orders = orders.stream().skip(1).collect(Collectors.toList());
1322
            for (FofoOrder fofoOrder : orders) {
1323
                LOGGER.info("Fofo Order Id - {}, Invoice {}", fofoOrder.getId(), invoiceNumber);
1324
                int inventoryItemId = 0;
1325
                saleAmount += fofoOrder.getTotalAmount();
1326
                fofoOrderRepository.delete(fofoOrder);
1327
                LOGGER.info("Fofo Order Id - {}, Invoice {}", fofoOrder.getId(), invoiceNumber);
1328
                List<FofoOrderItem> fofoOrderItems = fofoOrderItemRepository.selectByOrderId(fofoOrder.getId());
1329
                List<PaymentOptionTransaction> paymentOptionTransactions = paymentOptionTransactionRepository
1330
                        .selectByReferenceIdAndType(fofoOrder.getId(), PaymentOptionReferenceType.ORDER);
1331
                for (PaymentOptionTransaction paymentOptionTransaction : paymentOptionTransactions) {
1332
                    paymentOptionTransactionRepository.delete(paymentOptionTransaction);
1333
                }
1334
                for (FofoOrderItem foi : fofoOrderItems) {
1335
                    List<FofoLineItem> flis = fofoLineItemRepository.selectByFofoOrderItemId(foi.getId());
1336
                    fofoOrderItemRepository.delete(foi);
1337
                    for (FofoLineItem fli : flis) {
1338
                        inventoryItemId = fli.getInventoryItemId();
1339
                        fofoLineItemRepository.delete(fli);
1340
                    }
1341
                }
1342
                // Rollback entry with reversal reason
1343
                if (fofoOrder.getCreateTimestamp().isAfter(LocalDate.of(2020, 4, 1).atStartOfDay())) {
1344
                    float invoiceSchemeReversalAmount = 0;
1345
                    List<UserWalletHistory> userWalletHistory = userWalletHistoryRepository
1346
                            .selectAllByreferenceIdandreferenceType(fofoOrder.getId(), WalletReferenceType.SCHEME_OUT);
1347
                    float invoiceWalletAmount = userWalletHistory.stream()
1348
                            .collect(Collectors.summingInt(y -> y.getAmount()));
1349
                    totalAmount += invoiceWalletAmount;
1350
                    try {
1351
                        walletService.rollbackAmountFromWallet(fofoOrder.getFofoId(), invoiceWalletAmount,
1352
                                fofoOrder.getId(), WalletReferenceType.SCHEME_OUT,
1353
                                "Same order for Invoice-" + invoiceNumber + "created twice, duplicate invoice rollback",
1354
                                fofoOrder.getCancelledTimestamp());
1355
                    } catch (Exception e) {
1356
                        LOGGER.info("Failed wallet update Reson [{}]", e.getMessage());
1357
                    }
1358
                    LOGGER.info("inventoryItemId - {}", inventoryItemId);
1359
                    List<SchemeInOut> schemeInOuts = schemeInOutRepository
1360
                            .selectByInventoryItemIds(new HashSet<>(Arrays.asList(inventoryItemId)));
1361
                    Set<Integer> schemeIds = new HashSet<>();
1362
                    Set<Integer> schemeIdsRolledback = new HashSet<>();
1363
                    for (SchemeInOut sio : schemeInOuts) {
1364
                        if (Math.abs(sio.getCreateTimestamp().until(fofoOrder.getCreateTimestamp(),
1365
                                ChronoUnit.MINUTES)) <= 35 && sio.getRolledBackTimestamp() == null) {
1366
                            LOGGER.info(sio);
1367
                            if (!schemeIds.contains(sio.getSchemeId())) {
1368
                                schemeIds.add(sio.getSchemeId());
1369
                            } else if (!schemeIdsRolledback.contains(sio.getSchemeId())) {
1370
                                schemeIdsRolledback.add(sio.getSchemeId());
1371
                                sio.setRolledBackTimestamp(LocalDateTime.now());
1372
                                schemeReverseAmount += sio.getAmount();
1373
                                invoiceSchemeReversalAmount += sio.getAmount();
1374
                            }
1375
                        }
1376
                    }
1377
                    if (Math.abs(invoiceWalletAmount - invoiceSchemeReversalAmount) > 3) {
1378
                        LOGGER.info("No Matchhhh");
1379
                    }
1380
                    LOGGER.info("invoiceWalletAmount - {}, invoiceSchemeReversalAmount {}", invoiceWalletAmount,
1381
                            invoiceSchemeReversalAmount);
1382
                }
1383
            }
1384
        }
1385
        LOGGER.info(
1386
                "Total Sale Amount Reversal - {}, Total Wallet Amount Reversal {}, Total Scheme Reversal Amount - {}",
1387
                saleAmount, totalAmount, schemeReverseAmount);
1388
        // throw new Exception();
1389
    }
27430 amit.gupta 1390
 
31461 amit.gupta 1391
    public void createGeofence() throws IOException, ProfitMandiBusinessException {
27450 tejbeer 1392
 
31461 amit.gupta 1393
        // List<FofoStore> fofoStores = fofoStoreRepository.selectActiveStores();
1394
        // for (FofoStore fofoStore : fofoStores) {
1395
        // if (fofoStore.getLatitude() != null && fofoStore.getLongitude() != null) {
1396
        CustomRetailer customRetailer = retailerService.getFofoRetailer(175138812);
1397
        JSONObject geofe = new JSONObject();
1398
        JSONArray geofences = new JSONArray();
1399
        JSONObject geometry = new JSONObject();
1400
        JSONObject geo = new JSONObject();
1401
        JSONArray coordinates = new JSONArray();
1402
        ArrayList<Double> crds = new ArrayList<>();
1403
        crds.add(79.739197);
1404
        crds.add(27.961215);
1405
        geo.put("type", "Point");
1406
        geo.put("coordinates", crds);
1407
        geometry.put("geometry", geo);
1408
        JSONObject metadata = new JSONObject();
1409
        metadata.put("name", customRetailer.getBusinessName());
1410
        metadata.put("city", customRetailer.getAddress().getCity());
1411
        metadata.put("Code", customRetailer.getCode());
1412
        geometry.put("metadata", metadata);
1413
        geometry.put("radius", 200);
27451 tejbeer 1414
 
31461 amit.gupta 1415
        geofences.put(geometry);
1416
        geofe.put("geofences", geofences);
1417
        String authString = "Basic "
1418
                + Base64.getEncoder().encodeToString(String.format("%s:%s", ACCOUNT_ID, SECRET_KEY).getBytes());
27450 tejbeer 1419
 
36420 amit 1420
        String responseBody = restClient.postJson("https://v3.api.hypertrack.com/geofences",
1421
                geofe.toString(), Collections.singletonMap("Authorization", authString));
1422
        JSONArray ja = new JSONArray(responseBody);
31461 amit.gupta 1423
        LOGGER.info("geofence" + ja);
1424
        LOGGER.info("jalength" + ja.length());
1425
        /*
1426
         * for (int i = 0; i < ja.length(); i++) { JSONObject c = ja.getJSONObject(i);
1427
         * String geofenceId = c.getString("geofence_id"); LOGGER.info("geofenceId" +
1428
         * geofenceId); FofoStoreGeofence fsg = new FofoStoreGeofence();
1429
         * fsg.setFofoId(customRetailer.getPartnerId()); fsg.setGeofenceId(geofenceId);
1430
         * fofoStoreGeofenceRepository.persist(fsg); }
1431
         *
1432
         * }
1433
         *
1434
         * }
1435
         */
27482 tejbeer 1436
 
31461 amit.gupta 1437
    }
27462 tejbeer 1438
 
36420 amit 1439
    public void getAllGeofences() throws Exception {
31461 amit.gupta 1440
        String authString = "Basic "
1441
                + Base64.getEncoder().encodeToString(String.format("%s:%s", ACCOUNT_ID, SECRET_KEY).getBytes());
36420 amit 1442
        String body = restClient.get("https://v3.api.hypertrack.com/geofences",
1443
                null, Collections.singletonMap("Authorization", authString));
1444
        LOGGER.info("response" + body);
31461 amit.gupta 1445
    }
27450 tejbeer 1446
 
31461 amit.gupta 1447
    public void deleteGeofences(List<String> geofenceIds) throws IOException, ProfitMandiBusinessException {
1448
        String authString = "Basic "
1449
                + Base64.getEncoder().encodeToString(String.format("%s:%s", ACCOUNT_ID, SECRET_KEY).getBytes());
27457 tejbeer 1450
 
36420 amit 1451
        try (CloseableHttpClient client = HttpClientFactory.apacheHttp()) {
1452
            for (String geofenceId : geofenceIds) {
1453
                HttpDelete delete = new HttpDelete("https://v3.api.hypertrack.com/geofences/" + geofenceId);
1454
                delete.setHeader("Authorization", authString);
1455
                LOGGER.info("geofenceId" + geofenceId);
1456
                try (CloseableHttpResponse response = client.execute(delete)) {
1457
                    String body = response.getEntity() != null ? EntityUtils.toString(response.getEntity()) : "";
1458
                    LOGGER.info("response" + body);
1459
                }
1460
            }
31461 amit.gupta 1461
        }
1462
    }
27457 tejbeer 1463
 
31461 amit.gupta 1464
    public void processSchemeOut(int fofoId, int orderId) throws Exception {
1465
        schemeService.processSchemeOut(orderId, fofoId);
27451 tejbeer 1466
 
31461 amit.gupta 1467
    }
27511 amit.gupta 1468
 
31461 amit.gupta 1469
    public void createDummyInvoices() {
1470
        List<WarehouseInventoryItem> lavaInventoryItems = warehouseInventoryItemRepository.getSerialNumbers("Lava",
1471
                LocalDate.of(2020, Month.SEPTEMBER, 1).atStartOfDay(), LocalDateTime.now());
1472
        LOGGER.info("Lava Inventory Size is {}", lavaInventoryItems.size());
1473
    }
28624 amit.gupta 1474
 
31461 amit.gupta 1475
    @Autowired
1476
    private WarehouseScanRepository warehouseScanRepository;
28046 amit.gupta 1477
 
31461 amit.gupta 1478
    @Autowired
1479
    private WarehouseInventoryService warehouseInventoryService;
28624 amit.gupta 1480
 
31461 amit.gupta 1481
    public void genericCreateCurrentInventorySnapshot() throws Exception {
1482
        purchaseService.genericCreateCurrentInventorySnapshot(175138856, 32820, 2);
1483
    }
29867 tejbeer 1484
 
33260 amit.gupta 1485
    public void fixScans() throws ProfitMandiBusinessException {
31461 amit.gupta 1486
        Map<Integer, Integer> inventoryOrderMap = new HashMap<>();
1487
        inventoryOrderMap.put(348795, 1628598);
1488
        inventoryOrderMap.put(348796, 1628599);
1489
        inventoryOrderMap.put(329854, 1628600);
1490
        inventoryOrderMap.put(334197, 1628602);
1491
        inventoryOrderMap.put(330110, 1628603);
1492
        inventoryOrderMap.put(330111, 1628604);
1493
        inventoryOrderMap.put(332843, 1628605);
1494
        inventoryOrderMap.put(338067, 1628606);
1495
        inventoryOrderMap.put(338974, 1628609);
1496
        inventoryOrderMap.put(338975, 1628610);
1497
        inventoryOrderMap.put(338971, 1628612);
1498
        inventoryOrderMap.put(338588, 1628615);
1499
        inventoryOrderMap.put(368205, 1631619);
1500
        inventoryOrderMap.put(368206, 1631620);
1501
        inventoryOrderMap.put(368207, 1631621);
1502
        inventoryOrderMap.put(368208, 1631622);
1503
        inventoryOrderMap.put(368209, 1631623);
1504
        inventoryOrderMap.put(368211, 1631625);
1505
        inventoryOrderMap.put(368213, 1631627);
1506
        inventoryOrderMap.put(368214, 1631628);
1507
        inventoryOrderMap.put(368203, 1631629);
1508
        inventoryOrderMap.put(368216, 1631630);
1509
        inventoryOrderMap.put(368217, 1631631);
1510
        inventoryOrderMap.put(368218, 1631632);
1511
        inventoryOrderMap.put(368219, 1631633);
1512
        inventoryOrderMap.put(368222, 1631635);
1513
        List<WarehouseScan> scans = warehouseScanRepository
1514
                .selectAllByInventoryItemIds(new ArrayList<>(inventoryOrderMap.keySet()));
1515
        Map<Integer, List<WarehouseScan>> inventoryScansMap = scans.stream()
1516
                .collect(Collectors.groupingBy(WarehouseScan::getInventoryItemId));
28624 amit.gupta 1517
 
31461 amit.gupta 1518
        for (Map.Entry<Integer, List<WarehouseScan>> mapEntry : inventoryScansMap.entrySet()) {
1519
            int inventoryItemId = mapEntry.getKey();
1520
            List<WarehouseScan> duplicateScans = mapEntry.getValue().stream().filter(
1521
                            x -> x.getOrderId() != null && x.getOrderId().equals(inventoryOrderMap.get(inventoryItemId)))
1522
                    .collect(Collectors.toList());
1523
            WarehouseScan duplicateScan = duplicateScans.stream().skip(1).findFirst().get();
1524
            warehouseScanRepository.delete(duplicateScan);
1525
            warehouseInventoryService.addQuantity(duplicateScan.getInventoryItemId(), duplicateScan.getQuantity());
28624 amit.gupta 1526
 
31461 amit.gupta 1527
        }
28624 amit.gupta 1528
 
31461 amit.gupta 1529
    }
28038 amit.gupta 1530
 
31461 amit.gupta 1531
    public void fixOffer() throws Exception {
1532
        List<Integer> offerIds = Arrays.asList(228, 241, 242, 243, 244, 253);
1533
        List<Integer> fofoIds = fofoStoreRepository.selectAll().stream().filter(x -> x.getWarehouseId() == 7678)
1534
                .map(x -> x.getId()).collect(Collectors.toList());
1535
        LOGGER.info("UP West Partner Ids - {}", fofoIds);
1536
        for (int offerId : offerIds) {
1537
            Offer offer = offerRepository.selectById(offerId);
28624 amit.gupta 1538
 
31461 amit.gupta 1539
            PartnerCriteria partnerCriteria = gson.fromJson(offer.getPartnerCriteria(), PartnerCriteria.class);
1540
            LOGGER.info("Offer Partner Ids - {}", partnerCriteria.getFofoIds());
1541
            for (Integer fofoId : fofoIds) {
1542
                if (partnerCriteria.getFofoIds().contains(fofoId)) {
1543
                    // This shoud be removed
1544
                    LOGGER.info("This shoud be removed FofoStore Code - {}",
1545
                            fofoStoreRepository.selectByRetailerId(fofoId).getCode());
1546
                    partnerCriteria.getFofoIds().remove(fofoId);
1547
                }
1548
            }
1549
            offer.setPartnerCriteria(gson.toJson(partnerCriteria));
1550
        }
1551
    }
28624 amit.gupta 1552
 
31461 amit.gupta 1553
    public void reverseMaa() throws Exception {
1554
        Purchase purchase = purchaseRepository.selectById(28877);
1555
        Set<Integer> inventoryItemIds = inventoryItemRepository.selectByPurchaseId(28877).stream().map(x -> x.getId())
1556
                .collect(Collectors.toSet());
1557
        double totalAmount = schemeInOutRepository.selectByInventoryItemIds(inventoryItemIds).stream()
1558
                /*
1559
                 * .filter(x -> x.getRolledBackTimestamp() == null ||
1560
                 * x.getStatusDescription().contains("investment")) .map(x -> {
1561
                 * x.setRolledBackTimestamp(LocalDateTime.now());
1562
                 * x.setStatus(SchemePayoutStatus.REJECTED); x.
1563
                 * setStatusDescription("Invoice-NSLCK3350 was cancelled, hence all schemes were rolled back"
1564
                 * ); return x; })
1565
                 */
1566
                .collect(Collectors.summingDouble(x -> x.getAmount()));
1567
        WalletReferenceType walletReferenceType = WalletReferenceType.OTHERS;
1568
        ManualPaymentType paymentType = manualPaymentRequestRepository.selectByReferenceType(walletReferenceType);
1569
        if (paymentType == null) {
1570
            paymentType = new ManualPaymentType();
1571
            paymentType.setReferenceType(walletReferenceType);
1572
            manualPaymentRequestRepository.persist(paymentType);
1573
        }
1574
        paymentType.setCounter(paymentType.getCounter() + 1);
1575
        int reference = paymentType.getCounter();
1576
        walletService.consumeAmountFromWallet(purchase.getFofoId(), reference, WalletReferenceType.OTHERS,
1577
                "Invoice-NSLCK3350 was cancelled, hence all schemes were rolled back", (int) totalAmount,
1578
                LocalDateTime.now());
1579
        LOGGER.info("Total Deduction is around Rs. {}", totalAmount);
1580
    }
28557 amit.gupta 1581
 
31461 amit.gupta 1582
    public void opporeno() {
1583
        List<Integer> offerIds = Arrays.asList(270, 269, 267, 265, 264, 257, 253, 244, 243, 242, 241, 240, 239, 228,
1584
                227, 226, 225);
1585
        for (Integer offerId : offerIds) {
1586
            Offer offer = offerRepository.selectById(offerId);
1587
            com.spice.profitmandi.service.offers.ItemCriteria itemCriteria = gson.fromJson(offer.getItemCriteria(),
1588
                    com.spice.profitmandi.service.offers.ItemCriteria.class);
1589
            if (itemCriteria.getExcludeCatalogIds().contains(1022950)) {
1590
                System.out.println("Excludes reno");
1591
            } else {
1592
                System.out.println("Does not excludes reno.. excluding it");
1593
                itemCriteria.getExcludeCatalogIds().add(1022950);
1594
                offer.setItemCriteria(gson.toJson(itemCriteria));
1595
            }
28660 amit.gupta 1596
 
31461 amit.gupta 1597
        }
1598
    }
28810 amit.gupta 1599
 
31461 amit.gupta 1600
    @Autowired
1601
    SaholicReservationSnapshotRepository saholicReservationSnapshotRepository;
28810 amit.gupta 1602
 
31461 amit.gupta 1603
    public void fixReservations() throws Exception {
1604
        // Clear all Reservations
1605
        saholicInventorySnapshotRepository.selectAll().stream().forEach(x -> x.setReserved(0));
1606
        saholicReservationSnapshotRepository.selectAll().forEach(x -> saholicReservationSnapshotRepository.delete(x));
1607
        List<Order> orders = orderRepository.selectAllOrderDatesBetweenByStatus(
1608
                LocalDate.now().minusDays(40).atStartOfDay(), LocalDateTime.now(),
1609
                OrderStatus.SUBMITTED_FOR_PROCESSING);
1610
        for (Order order : orders) {
1611
            SaholicReservationSnapshot saholicReservationSnapshot = saholicReservationSnapshotRepository
1612
                    .selectByOrderId(order.getId());
1613
            if (saholicReservationSnapshot == null) {
1614
                saholicInventoryService.addReservationCount(order.getLineItem().getItemId(),
1615
                        order.getFulfilmentWarehouseId(), order.getLineItem().getQuantity(), order.getId());
1616
            }
1617
        }
1618
    }
28736 amit.gupta 1619
 
33526 amit.gupta 1620
    public void moveOrders() throws Exception {
1621
        // Clear all Reservations
1622
        for (Map.Entry<Integer, String> integerStringEntry : ProfitMandiConstants.WAREHOUSE_MAP.entrySet()) {
1623
            transactionService.moveOrdersFulfimentWarehouse(integerStringEntry.getKey());
1624
        }
1625
    }
1626
 
31461 amit.gupta 1627
    public void fixOrders() throws Exception {
1628
        List<Order> orders = orderRepository.selectAllOrderDatesBetweenByStatus(
1629
                LocalDate.now().minusDays(10).atStartOfDay(), LocalDateTime.now(),
1630
                OrderStatus.SUBMITTED_FOR_PROCESSING);
1631
        orders = orders.stream().filter(x -> x.getCreateTimestamp().isAfter(LocalDateTime.of(2021, 7, 21, 0, 0, 0)))
1632
                .collect(Collectors.toList());
1633
        for (Order order : orders) {
28731 amit.gupta 1634
 
31461 amit.gupta 1635
            LineItem lineItem = lineItemRepository.selectById(order.getLineItem().getId());
1636
            if (order.getOrderType() == null) {
1637
                order.setProductCondition(0);
1638
                order.setOrderType(0);
1639
                int itemId = order.getLineItem().getItemId();
1640
                System.out.println("Item id " + itemId);
1641
                Item item = itemRepository.selectById(itemId);
1642
                lineItem.setProductGoup(item.getProductGroup());
1643
                lineItem.setColor(item.getColor());
1644
                lineItem.setLogisticsCost(0f);
1645
                lineItem.setCodCollectionCharges(0f);
28736 amit.gupta 1646
 
31461 amit.gupta 1647
            }
28736 amit.gupta 1648
 
31461 amit.gupta 1649
            int warehouseTo = fofoStoreRepository.selectByRetailerId(order.getRetailerId()).getWarehouseId();
1650
            int itemId = order.getLineItem().getItemId();
31918 amit.gupta 1651
            /*Warehouse warehouse = transactionService.getFulfilmentWarehouseMap(Arrays.asList(itemId), warehouseTo)
1652
                    .get(itemId).entrySet().stream().findFirst().get().getKey();
31461 amit.gupta 1653
            LOGGER.info(
1654
                    "Order Id - {}, WarehouseTo - {}, Item Id - {}, Warehouse From - {}, Fulfilment Warehouse Id - {}",
1655
                    order.getId(), warehouseTo, itemId, warehouse.getBillingWarehouseId(), warehouse.getId());
1656
            order.setWarehouseId(warehouse.getBillingWarehouseId());
31918 amit.gupta 1657
            order.setFulfilmentWarehouseId(warehouse.getId());*/
28731 amit.gupta 1658
 
31461 amit.gupta 1659
        }
28731 amit.gupta 1660
 
31461 amit.gupta 1661
    }
28810 amit.gupta 1662
 
31461 amit.gupta 1663
    @Autowired
1664
    PartnerDailyInvestmentRepository partnerDailyInvestmentRepository;
28675 amit.gupta 1665
 
31461 amit.gupta 1666
    public void addInvestment() {
1667
        LocalDate currentDate = LocalDate.now();
1668
        YearMonth currentMonth = YearMonth.from(currentDate);
1669
        List<LocalDate> dates = new ArrayList<>();
1670
        for (int i = 1; i < currentDate.getDayOfMonth(); i++) {
1671
            LocalDate date = currentMonth.atDay(i);
1672
            boolean exists = partnerDailyInvestmentRepository.isDateExist(date);
32211 amit.gupta 1673
            if (!exists) {
31461 amit.gupta 1674
                dates.add(date);
1675
            }
1676
        }
1677
        for (LocalDate date : dates) {
1678
            LOGGER.info("Date - {}", date);
1679
            Map<Integer, PartnerDailyInvestment> investmentMap = partnerDailyInvestmentRepository
1680
                    .selectAll(date.plusDays(1)).stream().collect(Collectors.toMap(x -> x.getFofoId(), x -> x));
1681
            List<PartnerDailyInvestment> investments = partnerDailyInvestmentRepository.selectAll(date.minusDays(1));
1682
            for (PartnerDailyInvestment investment : investments) {
1683
                if (investmentMap.get(investment.getFofoId()) == null || (investmentMap.get(investment.getFofoId())
35848 amit 1684
                        .getShortPercentage() <= ProfitMandiConstants.OK_INVESTMENT_SHORT_PERCENTAGE) == (investment.getShortPercentage() <= ProfitMandiConstants.OK_INVESTMENT_SHORT_PERCENTAGE)) {
31461 amit.gupta 1685
                    // Do nothing add investment as is
1686
                } else {
1687
                    LOGGER.info("Problem with fofo id => {}", investment.getFofoId());
1688
                    // Lets give benefit of doubt
35848 amit 1689
                    if (investment.getShortPercentage() > ProfitMandiConstants.OK_INVESTMENT_SHORT_PERCENTAGE) {
31461 amit.gupta 1690
                        investment = investmentMap.get(investment.getFofoId());
1691
                    }
1692
                }
1693
                PartnerDailyInvestment partnerDailyInvestment = new PartnerDailyInvestment();
1694
                partnerDailyInvestment.setActivatedStockAmount(investment.getActivatedStockAmount());
1695
                partnerDailyInvestment.setDate(date);
1696
                partnerDailyInvestment.setFofoId(investment.getFofoId());
1697
                partnerDailyInvestment.setMinInvestment(investment.getMinInvestment());
1698
                partnerDailyInvestment.setGrnPendingAmount(investment.getGrnPendingAmount());
1699
                partnerDailyInvestment.setActivatedStockAmount(investment.getActivatedStockAmount());
1700
                partnerDailyInvestment.setUnbilledAmount(investment.getUnbilledAmount());
1701
                partnerDailyInvestment.setReturnInTransitAmount(investment.getReturnInTransitAmount());
1702
                partnerDailyInvestment.setSalesAmount(investment.getSalesAmount());
1703
                partnerDailyInvestment.setInStockAmount(investment.getInStockAmount());
1704
                partnerDailyInvestment.setWalletAmount(investment.getWalletAmount());
1705
                partnerDailyInvestment.setActivatedGrnPendingAmount(investment.getActivatedGrnPendingAmount());
1706
                partnerDailyInvestmentRepository.persist(partnerDailyInvestment);
1707
            }
1708
        }
1709
    }
28808 amit.gupta 1710
 
31461 amit.gupta 1711
    @Autowired
1712
    BrandRegionMappingRepository brandRegionMappingRepository;
28846 amit.gupta 1713
 
31461 amit.gupta 1714
    public void brandRegion() {
1715
        Set<Integer> warehouseIds = ProfitMandiConstants.WAREHOUSE_MAP.keySet();
1716
        Map<String, Map<Boolean, List<BrandRegionMapping>>> mapping = brandRegionMappingRepository.selectAll().stream()
1717
                .collect(Collectors.groupingBy(BrandRegionMapping::getBrand,
1718
                        Collectors.collectingAndThen(Collectors.toList(),
1719
                                x -> x.stream().collect(Collectors.groupingBy(BrandRegionMapping::isAccessory)))));
1720
        for (Map.Entry<String, Map<Boolean, List<BrandRegionMapping>>> entry : mapping.entrySet()) {
1721
            String brand = entry.getKey();
1722
            for (Map.Entry<Boolean, List<BrandRegionMapping>> isAccessoryEntry : entry.getValue().entrySet()) {
1723
                boolean isAccessory = isAccessoryEntry.getKey();
1724
                Map<Integer, List<Integer>> warehouseToIdsMap = isAccessoryEntry.getValue().stream()
1725
                        .collect(Collectors.groupingBy(BrandRegionMapping::getToWarehouseId,
1726
                                Collectors.mapping(BrandRegionMapping::getFromWarehouseId, Collectors.toList())));
1727
                for (int warehouseIdTo : warehouseIds) {
1728
                    List<Integer> warehouseIdsFrom = warehouseToIdsMap.get(warehouseIdTo);
1729
                    if (warehouseIdsFrom == null || !warehouseIdsFrom.contains(warehouseIdTo)) {
1730
                        LOGGER.info("Missing entries for brand region mapping = {}, {}, {}", brand, isAccessory,
1731
                                warehouseIdTo);
28846 amit.gupta 1732
 
31461 amit.gupta 1733
                        BrandRegionMapping brandRegionMapping = new BrandRegionMapping();
1734
                        brandRegionMapping.setAccessory(isAccessory);
1735
                        brandRegionMapping.setBrand(brand);
1736
                        brandRegionMapping.setFromWarehouseId(warehouseIdTo);
1737
                        brandRegionMapping.setToWarehouseId(warehouseIdTo);
1738
                        brandRegionMappingRepository.persist(brandRegionMapping);
28846 amit.gupta 1739
 
31461 amit.gupta 1740
                    }
1741
                }
1742
            }
1743
        }
1744
    }
28840 amit.gupta 1745
 
31461 amit.gupta 1746
    public void reverseSchemes(String invoiceNumber) throws Exception {
1747
        FofoOrder fofoOrder = fofoOrderRepository.selectByInvoiceNumber(invoiceNumber);
1748
        if (fofoOrder.getCancelledTimestamp() != null) {
1749
            orderService.reverseScheme(fofoOrder);
1750
        }
1751
    }
29556 amit.gupta 1752
 
31461 amit.gupta 1753
    @Autowired
1754
    PartnerTypeChangeService partnerTypeChangeService;
29863 tejbeer 1755
 
31461 amit.gupta 1756
    public void runMe() throws Exception {
29945 amit.gupta 1757
		/*System.out.println("runme ==== " + fofoOrderItemRepository.selectSumMopGroupByRetailer(
29863 tejbeer 1758
				LocalDate.of(2021, 11, 1).atStartOfDay(), LocalDate.of(2021, 12, 1).atStartOfDay(), 175138408, false));
29945 amit.gupta 1759
		System.out.println("change " + partnerTypeChangeService.getTypeOnDate(175138408, LocalDate.now()));*/
1760
 
31461 amit.gupta 1761
        List<Integer> catalogItemIds = Arrays.asList(1023209, 1023209, 1023208, 1023208, 1023199, 1023199, 1023198, 1023198, 1023200, 1023200, 1023197, 1023196, 1023113, 1023112, 1023194, 1023194, 1023194, 1023193, 1023193, 1023190, 1023190, 1023190, 1023189, 1023189, 1023189, 1023188, 1023188, 1023181, 1023181, 1023180, 1023180, 1023179, 1023179, 1023178, 1023178, 1023183, 1023183, 1023182, 1023182, 1022511, 1023066, 1023164, 1023163, 1023064, 1023174, 1023174, 1023173, 1023173, 1023172, 1023172, 1023171, 1023171, 1023171, 1022765, 1023170, 1023170, 1023166, 1023166, 1023166, 1023012, 1023073, 1023168, 1023167, 1023167, 1023118, 1023118, 1023118, 1023164, 1023163, 1023162, 1022971, 1023161, 1023160, 1023159, 1023158, 1023157, 1023156, 1023058, 1023142, 1023142, 1023141, 1023141, 1023145, 1023145, 1023145, 1023145, 1023144, 1023144, 1023144, 1023144, 1023143, 1023143, 1023143, 1023139, 1023137, 1023135, 1023134, 1023133, 1023130, 1023129, 1023126, 1023125, 1023124, 1023121, 1023128, 1023116, 1023077, 1023102, 1023079, 1023113, 1023113, 1023112, 1023112, 1023110, 1023110, 1023109, 1023109, 1023108, 1023108, 1023107, 1023107, 1022809, 1022871, 1023078, 1023101, 1023103, 1023102, 1023102, 1023100, 1023100, 1023099, 1023099, 1023079, 1023079, 1023078, 1023078, 1023081, 1023081, 1023080, 1023080, 1023080, 1022872, 1023077, 1023077, 1023076, 1023076, 1023076, 1022861, 1022970, 1023074, 1023073, 1023073, 1023072, 1023072, 1023071, 1023071, 1023045, 1023070, 1023070, 1023069, 1023063, 1023063, 1023062, 1023062, 1023061, 1023061, 1023057, 1023056, 1023055, 1023054, 1023053, 1023052, 1023068, 1023068, 1023067, 1023067, 1023066, 1023066, 1023065, 1023065, 1023064, 1023064, 1023059, 1023058, 1023058, 1023059, 1023050, 1023050, 1023049, 1023049, 1023048, 1023048, 1023047, 1023047, 1022845, 1023046, 1023046, 1023045, 1023045, 1022955, 1023044, 1023042, 1023043, 1023043, 1023043, 1023018, 1023017, 1023017, 1023016, 1023016, 1023015, 1023015, 1023041, 1023041, 1023041, 1023040, 1023039, 1023039, 1022769, 1023038, 1023038, 1023037, 1023037, 1023036, 1023036, 1023035, 1023035, 1023027, 1023027, 1023034, 1023034, 1023033, 1023033, 1023031, 1023031, 1023030, 1023029, 1023028, 1022630, 1022630, 1022630, 1023026, 1023013, 1022987, 1022982, 1023019, 1023019, 1022979, 1022978, 1022977, 1023023, 1023022, 1023022, 1023014, 1023014, 1023013, 1023013, 1022956, 1022816, 1023012, 1023012, 1023011, 1023011, 1023010, 1023010, 1023010, 1023009, 1023009, 1023006, 1023006, 1023006, 1023005, 1023005, 1023005, 1023004, 1023004, 1023004, 1023003, 1023003, 1023002, 1023002, 1023001, 1023001, 1022971, 1022970, 1022974, 1022973, 1022976, 1022976, 1022764, 1022782, 1022972, 1022972, 1022971, 1022970, 1022955, 1022956, 1022833, 1022967, 1022967, 1022967, 1022965, 1022965, 1022965, 1022965, 1022963, 1022963, 1022767, 1022962, 1022962, 1022960, 1022960, 1022957, 1022956, 1022956, 1022955, 1022955, 1022955, 1022950, 1022950, 1022944, 1022949, 1022949, 1022784, 1022566, 1022871, 1022947, 1022947, 1022946, 1022946, 1022946, 1022944, 1022944, 1022943, 1022943, 1022941, 1022941, 1022941, 1022800, 1022937, 1022937, 1022936, 1022936, 1022940, 1022940, 1022939, 1022939, 1022938, 1022931, 1022931, 1022930, 1022929, 1022934, 1022934, 1022932, 1022932, 1022783, 1022917, 1022897, 1022896, 1022893, 1022892, 1022888, 1022882, 1022833, 1022928, 1022928, 1022877, 1022877, 1022876, 1022876, 1022842, 1022875, 1022875, 1022874, 1022874, 1022872, 1022872, 1022871, 1022871, 1022809, 1022868, 1022868, 1022868, 1022867, 1022867, 1022867, 1022866, 1022866, 1022866, 1022862, 1022862, 1022862, 1022861, 1022861, 1022861, 1022859, 1022858, 1022808, 1022851, 1022851, 1022851, 1022850, 1022850, 1022850, 1022835, 1022846, 1022846, 1022845, 1022845, 1022844, 1022844, 1022843, 1022843, 1022842, 1022842, 1022841, 1022841, 1022840, 1022840, 1022839, 1022839, 1022799, 1022834, 1022834, 1022833, 1022833, 1022830, 1022830, 1022830, 1022825, 1022825, 1022824, 1022783, 1022817, 1022817, 1022816, 1022816, 1022815, 1022815, 1022814, 1022814, 1022401, 1022402, 1022400, 1022399, 1022813, 1022813, 1022813, 1022813, 1022812, 1022812, 1022812, 1022812, 1022811, 1022811, 1022811, 1022811, 1022811, 1022810, 1022810, 1022810, 1022810, 1022810, 1022809, 1022808, 1022808, 1022806, 1022806, 1022806, 1022805, 1022805, 1022805, 1022804, 1022804, 1022804, 1022803, 1022803, 1022803, 1022802, 1022802, 1022802, 1022802, 1022801, 1022801, 1022801, 1022801, 1022800, 1022800, 1022800, 1022799, 1022799, 1022799, 1022798, 1022798, 1022798, 1022797, 1022797, 1022797, 1022796, 1022796, 1022796, 1022794, 1022793, 1022792, 1022792, 1022792, 1022791, 1022791, 1022791, 1022790, 1022790, 1022790, 1022789, 1022789, 1022789, 1022785, 1022785, 1022788, 1022788, 1022784, 1022784, 1022783, 1022783, 1022782, 1022782, 1022546, 1022546, 1022781, 1022781, 1022781, 1022773, 1021600, 1022779, 1022779, 1022778, 1022774, 1022774, 1022774, 1022773, 1022773, 1022773, 1022770, 1022771, 1022771, 1022770, 1022770, 1022770, 1022769, 1022769, 1022769, 1022759, 1022758, 1022754, 1022753, 1022752, 1022757, 1022757, 1022756, 1022755, 1022767, 1022765, 1022743, 1022742, 1022742, 1022741, 1022741, 1022741, 1022740, 1022740, 1022740, 1022739, 1022739, 1022739, 1022738, 1022738, 1022738, 1022748, 1022748, 1022737, 1022677, 1022736, 1022736, 1022736, 1022735, 1022735, 1022735, 1022734, 1022734, 1022592, 1022705, 1022705, 1022699, 1022699, 1022694, 1022694, 1022693, 1022693, 1022629, 1022461, 1022592, 1022590, 1022590, 1022590, 1022590, 1022582, 1022582, 1022566, 1022565, 1022565, 1022559, 1022559, 1022559, 1022558, 1022558, 1022558, 1022546, 1022546, 1022542, 1022542, 1022541, 1022541, 1022541, 1022521, 1022521, 1022521, 1022521, 1022520, 1022520, 1022520, 1022518, 1022518, 1022518, 1022515, 1022515, 1022515, 1022514, 1022514, 1022514, 1022514, 1022511, 1022511, 1022511, 1022501, 1022501, 1022501, 1022500, 1022500, 1022500, 1021443, 1022467, 1022467, 1022467, 1022467, 1022461, 1022461, 1022465, 1022465, 1022465, 1022443, 1022451, 1022451, 1022451, 1022435, 1022435, 1022419, 1022419, 1022418, 1022418, 1022402, 1022402, 1022402, 1022401, 1022401, 1022401, 1022400, 1022400, 1022400, 1022399, 1022399, 1022399, 1022395, 1022395, 1022392, 1022392, 1015059, 1022361, 1022361, 1022010, 1021600, 1022017, 1022017, 1021848, 1022010, 1022009, 1021848, 1021848, 1021848, 1021958, 1021958, 1021958, 1021443, 1021431, 1021430, 1021429, 1021428, 1021427, 1021425, 1021424, 1021422, 1021421, 1021420, 1021419, 1021417, 1021600, 1015060, 1015061, 1003800, 1015061, 1015059, 1015059, 1015059, 1015060, 1015060, 1015060, 1003800, 1003800, 1003800, 1015061, 1015061);
1762
        for (Integer catalogItemId : catalogItemIds) {
1763
            try {
29947 amit.gupta 1764
 
31461 amit.gupta 1765
                ContentPojo cp = mongoClient.getEntityById(catalogItemId);
1766
                System.out.println(cp.getDefaultImageUrl());
1767
            } catch (Exception e) {
1768
                System.out.println("------");
1769
            }
1770
        }
1771
    }
29709 amit.gupta 1772
 
31461 amit.gupta 1773
    public void createOffers(FileInputStream stream) throws Exception {
1774
        offerService.createOffers(stream);
1775
    }
29709 amit.gupta 1776
 
31461 amit.gupta 1777
    @Autowired
1778
    FofoKycRepository fofoKycRepository;
29863 tejbeer 1779
 
31461 amit.gupta 1780
    @Autowired
1781
    PartnerOnBoardingPanelRepository partnerOnBoardingPanelRepository;
29863 tejbeer 1782
 
31461 amit.gupta 1783
    @Autowired
1784
    DocumentRepository documentRepository;
29863 tejbeer 1785
 
31461 amit.gupta 1786
    @Autowired
1787
    com.spice.profitmandi.dao.repository.dtr.UserRepository dtrUserRepository;
29863 tejbeer 1788
 
31461 amit.gupta 1789
    public void testIrnLive(String invoiceNumber) throws Exception {
1790
        List<Order> orders = orderRepository.selectByInvoiceNumber(invoiceNumber);
35797 amit 1791
        InvoicePdfModel invoicePdfModel = invoiceService.getInvoicePdfModel(orders);
1792
        gstProService.getEInvoice(orders, invoicePdfModel);
31461 amit.gupta 1793
    }
30209 amit.gupta 1794
 
31461 amit.gupta 1795
    public void processSchemeByIds(List<Integer> schemeIds) throws Exception {
1796
        List<Scheme> schemes = schemeRepository.selectBySchemeIds(schemeIds);
1797
        for (Scheme scheme : schemes) {
1798
            List<Integer> catalogIds = schemeItemRepository.selectBySchemeIds(new HashSet<>(Arrays.asList(scheme.getId()))).stream().map(x -> x.getCatalogId()).collect(Collectors.toList());
34326 amit.gupta 1799
            if (scheme.getType().getTransactionType().equals(StockTransactionType.OUT)) {
31461 amit.gupta 1800
                List<FofoOrder> fofoOrders = fofoOrderRepository.selectOrderByModelAndSaleBetween(catalogIds, scheme.getStartDateTime(), scheme.getEndDateTime());
1801
                for (FofoOrder fofoOrder : fofoOrders) {
1802
                    System.out.println("Processing fofoOrder --- " + fofoOrder.getInvoiceNumber());
1803
                    System.out.println("Processing fofoOrder --- " + fofoOrder.getInvoiceNumber());
1804
                    schemeService.processSchemeOut(fofoOrder.getId(), fofoOrder.getFofoId());
1805
                }
34326 amit.gupta 1806
            } else if (Arrays.asList(StockTransactionType.IN).contains(scheme.getType())) {
31461 amit.gupta 1807
                List<Purchase> purchases = purchaseRepository.selectPurchaseByCatalogsAndSaleBetween(catalogIds, scheme.getStartDateTime(), scheme.getEndDateTime());
1808
                for (Purchase purchase : purchases) {
1809
                    System.out.println("Processing purchase --- " + purchase.getPurchaseReference());
1810
                    schemeService.processSchemeIn(purchase.getId(), purchase.getFofoId());
1811
                }
30644 amit.gupta 1812
 
31461 amit.gupta 1813
            }
1814
        }
1815
    }
30642 amit.gupta 1816
 
31461 amit.gupta 1817
    @Autowired
1818
    InsurancePolicyRepository insurancePolicyRepository;
30642 amit.gupta 1819
 
34326 amit.gupta 1820
    @Autowired
1821
    CreditNoteLineRepository creditNoteLineRepository;
1822
 
1823
    @Autowired
1824
    CreditNoteRepository creditNoteRepository;
1825
 
31461 amit.gupta 1826
    public void addMissingWalletDebitsForInsurance() throws Exception {
1827
        List<InsurancePolicy> insurancePolicies = insurancePolicyRepository.selectAllByProviderId(5, Optional.empty());
1828
        for (InsurancePolicy insurancePolicy : insurancePolicies) {
1829
            FofoOrder fofoOrder = fofoOrderRepository.selectByInvoiceNumber(insurancePolicy.getInvoiceNumber());
1830
            List<UserWalletHistory> userWalletHistories = userWalletHistoryRepository.selectAllByreferenceIdandreferenceType(insurancePolicy.getId(), WalletReferenceType.DAMAGE_PROTECTION);
1831
            if (userWalletHistories.size() > 1) {
1832
                UserWalletHistory userWalletHistory = userWalletHistories.get(0);
1833
                walletService.addAmountToWallet(insurancePolicy.getRetailerId(), userWalletHistory.getReference(), WalletReferenceType.DAMAGE_PROTECTION, "Excess deduction - settled", 198, LocalDateTime.now());
1834
            }
1835
        }
1836
    }
33260 amit.gupta 1837
 
1838
    public void changeFulfillmentWarehouse(int orderId, int whId) throws ProfitMandiBusinessException {
1839
        transactionService.changeFulfillmentWarehouse(orderId, whId);
1840
    }
34326 amit.gupta 1841
 
1842
 
1843
    public void findCNDiff() throws ProfitMandiBusinessException {
1844
        LocalDate startDate = LocalDate.of(2022, 9, 01);
1845
        List<UserWalletHistory> userWalletHistories = userWalletHistoryRepository.selectAllByDateType(startDate.atStartOfDay(), startDate.plusYears(3).atStartOfDay().withMonth(Month.JANUARY.getValue()), Arrays.asList(WalletReferenceType.ACTIVATION_SCHEME, WalletReferenceType.ADDITIONAL_SCHEME, WalletReferenceType.INVESTMENT_PAYOUT
1846
                , WalletReferenceType.SPECIAL_SUPPORT, WalletReferenceType.PRICE_DROP, WalletReferenceType.SCHEME_IN, WalletReferenceType.SCHEME_OUT));
1847
 
1848
        Map<Integer, Map<YearMonth, Double>> fofoMonthAmount = userWalletHistories.stream().collect(Collectors.groupingBy(x -> x.getWalletId(),
1849
                Collectors.groupingBy(x -> YearMonth.from(x.getTimestamp()), Collectors.summingDouble(x -> x.getAmount()))));
1850
 
1851
        System.out.println("FofoId\tYearMonth\tWallet\tCN");
1852
        for (Map.Entry<Integer, Map<YearMonth, Double>> fofoMonthAmountEntry : fofoMonthAmount.entrySet()) {
1853
            int walletId = fofoMonthAmountEntry.getKey();
1854
            int fofoId = userWalletRepository.selectById(walletId).getUserId();
1855
            for (Map.Entry<YearMonth, Double> yearMonthAmountEntry : fofoMonthAmountEntry.getValue().entrySet()) {
1856
                YearMonth yearMonth = yearMonthAmountEntry.getKey();
1857
                double walletAmount = yearMonthAmountEntry.getValue();
1858
                double cnAmount = 0;
1859
                List<Integer> creditNoteIds = creditNoteRepository.selectAll(fofoId, yearMonth).stream().map(cn -> cn.getId()).collect(Collectors.toList());
34710 amit.gupta 1860
                if (creditNoteIds.size() > 0) {
34326 amit.gupta 1861
                    cnAmount = creditNoteLineRepository.selectAllByCreditNoteIds(creditNoteIds).stream().collect(Collectors.summingDouble(CreditNoteLine::getAmount));
1862
                }
34710 amit.gupta 1863
                if (cnAmount != walletAmount) {
34326 amit.gupta 1864
                    System.out.println(fofoId + "\t" + yearMonth + "\t" + walletAmount + "\t" + cnAmount);
1865
                }
1866
            }
1867
        }
1868
 
1869
    }
34770 vikas.jang 1870
 
34836 vikas 1871
    public void yesterdayTrackingReport() throws Exception{
36863 vikas 1872
        locationTrackingService.sendRedesignedReportEmails(LocalDate.now().minusDays(1).toString(),LocalDate.now().minusDays(1).toString());
34770 vikas.jang 1873
    }
34836 vikas 1874
 
1875
    public void dailyTrackingReport() throws Exception{
36863 vikas 1876
        locationTrackingService.sendRedesignedReportEmails(LocalDate.now().toString(),LocalDate.now().toString());
34836 vikas 1877
    }
34946 ranu 1878
 
37687 ranu 1879
   /* public void poStockApprovalDailyDigest() throws Exception{
37686 ranu 1880
        LOGGER.info("poStockApprovalDailyDigest startTime {}", LocalDateTime.now());
1881
        String summary = poStockApprovalDigestService.sendStockApprovalListForDate(LocalDate.now());
1882
        LOGGER.info("poStockApprovalDailyDigest result: {}", summary);
37687 ranu 1883
    }*/
37686 ranu 1884
    /** Test recipient(s) for the RBM ranking probe email. Kept here (not in a config)
1885
     *  because this whole flow is a Phase-1 probe — Phase 2 will move recipients into
1886
     *  the shipped monthly-email cron. */
1887
    private static final String[] RBM_RANK_PROBE_RECIPIENTS = {
1888
            "ranu.rajput@smartdukaan.com"
1889
    };
1890
 
1891
    /**
1892
     * Prints the composite RBM performance ranking for the given month to log
1893
     * AND sends an HTML table by email (direct via googleMailSender — bypasses
1894
     * mail_outbox so dev sends actually deliver). Read-only otherwise: no DB writes.
1895
     * Used to verify the ranking calc reproduces correctly for a completed past
1896
     * month before we wire the monthly-email cron.
1897
     */
1898
    public void printRbmRankingForMonth(java.time.YearMonth month) {
1899
        LocalDate from = month.atDay(1);
1900
        LocalDate to   = month.atEndOfMonth();
1901
        LOGGER.info("[RBM-RANK] === Composite ranking for {} ({} → {}) ===",
1902
                month, from, to);
1903
        List<RbmPerformanceDashboardModel> ranked =
1904
                rbmPerformanceRankingService.buildRanking(from, to);
1905
        LOGGER.info("[RBM-RANK] {} RBMs ranked", ranked.size());
1906
        String header = String.format(
1907
                "%-4s %-25s %6s %8s %8s %10s %8s %6s %8s %8s",
1908
                "RANK", "RBM NAME", "PART", "TALK%", "DRR%",
1909
                "AGING%", ">1L%", "RATE", "RATED%", "SCORE");
1910
        LOGGER.info("[RBM-RANK] {}", header);
1911
        for (RbmPerformanceDashboardModel dm : ranked) {
1912
            double ratedPct = dm.getPartnerCount() > 0
1913
                    ? dm.getRatingPartnerCount() * 100.0 / dm.getPartnerCount() : 0;
1914
            String rbmName = dm.getRbmName() == null ? "-" : dm.getRbmName();
1915
            if (rbmName.length() > 25) rbmName = rbmName.substring(0, 24) + "…";
1916
            LOGGER.info("[RBM-RANK] {}", String.format(
1917
                    "%-4d %-25s %6d %8.1f %8.1f %10.1f %8.1f %6.2f %8.1f %8.2f",
1918
                    dm.getRank(), rbmName, dm.getPartnerCount(),
1919
                    dm.getTalkPct(), dm.getDrrAchvPct(), dm.getAgingPct(),
1920
                    dm.getAbove1LPct(), dm.getPartnerRating(), ratedPct,
1921
                    dm.getCompositeScore()));
1922
        }
1923
        LOGGER.info("[RBM-RANK] === End ranking for {} ===", month);
1924
 
1925
        // Email the same table so the user can eyeball without tailing logs.
1926
        try {
1927
            sendRbmRankingProbeEmail(month, from, to, ranked);
1928
        } catch (Exception e) {
1929
            LOGGER.error("[RBM-RANK] Email send FAILED (log-only fallback in place): {}", e.getMessage(), e);
1930
        }
1931
    }
1932
 
1933
    /** Direct HTML send via googleMailSender — bypasses mail_outbox so dev delivers. */
1934
    private void sendRbmRankingProbeEmail(java.time.YearMonth month, LocalDate from, LocalDate to,
1935
                                          List<RbmPerformanceDashboardModel> ranked) throws Exception {
1936
        java.time.format.DateTimeFormatter fmt = java.time.format.DateTimeFormatter.ofPattern("MMMM yyyy");
1937
        String monthLabel = month.atDay(1).format(fmt);
1938
        String subject = "RBM Composite Ranking — " + monthLabel + " (" + ranked.size() + " RBMs)";
1939
 
1940
        StringBuilder body = new StringBuilder();
1941
        body.append("<p>Composite RBM ranking probe for <b>").append(monthLabel)
1942
            .append("</b> (").append(from).append(" → ").append(to).append(").</p>");
1943
        body.append("<p style='color:#555;font-size:12px'>Score formula: Talk(10%) + DRR(55%) + Aging(2%) + &gt;1L(29%) + Rating(2%) + Rated(2%).</p>");
1944
        body.append("<table border='1' cellpadding='6' cellspacing='0' style='border-collapse:collapse;font-size:12px'>");
1945
        body.append("<thead><tr style='background:#343a40;color:#fff'>")
1946
            .append("<th>Rank</th><th style='text-align:left'>RBM</th><th>Partners</th>")
1947
            .append("<th style='background:#28a745'>Talk%<br><small>(10%)</small></th>")
1948
            .append("<th style='background:#17a2b8'>DRR%<br><small>(55%)</small></th>")
1949
            .append("<th style='background:#fd7e14'>Aging%<br><small>(2%)</small></th>")
1950
            .append("<th style='background:#6f42c1'>&gt;1L%<br><small>(29%)</small></th>")
1951
            .append("<th style='background:#ffc107;color:#000'>Rating<br><small>(2%)</small></th>")
1952
            .append("<th style='background:#e67e22'>Rated%<br><small>(2%)</small></th>")
1953
            .append("<th style='background:#dc3545'>Score</th>")
1954
            .append("</tr></thead><tbody>");
1955
        for (RbmPerformanceDashboardModel dm : ranked) {
1956
            double ratedPct = dm.getPartnerCount() > 0
1957
                    ? dm.getRatingPartnerCount() * 100.0 / dm.getPartnerCount() : 0;
1958
            String rowStyle = dm.getRank() == 1 ? "background:#fff8e1" :
1959
                              dm.getRank() == 2 ? "background:#f5f5f5" :
1960
                              dm.getRank() == 3 ? "background:#fff3e0" : "";
1961
            body.append("<tr style='").append(rowStyle).append("'>")
1962
                .append("<td style='text-align:center'>").append(dm.getRank()).append("</td>")
1963
                .append("<td>").append(escapeHtml(dm.getRbmName())).append("</td>")
1964
                .append("<td style='text-align:center'>").append(dm.getPartnerCount()).append("</td>")
1965
                .append("<td style='text-align:right'>").append(String.format("%.1f%%", dm.getTalkPct())).append("</td>")
1966
                .append("<td style='text-align:right'>").append(String.format("%.1f%%", dm.getDrrAchvPct())).append("</td>")
1967
                .append("<td style='text-align:right'>").append(String.format("%.1f%%", dm.getAgingPct())).append("</td>")
1968
                .append("<td style='text-align:right'>").append(String.format("%.1f%%", dm.getAbove1LPct())).append("</td>")
1969
                .append("<td style='text-align:center'>").append(String.format("%.2f", dm.getPartnerRating())).append(" ★</td>")
1970
                .append("<td style='text-align:right'>").append(String.format("%.1f%%", ratedPct)).append("</td>")
1971
                .append("<td style='text-align:right;font-weight:600'>").append(String.format("%.2f", dm.getCompositeScore())).append("</td>")
1972
                .append("</tr>");
1973
        }
1974
        body.append("</tbody></table>");
1975
        body.append("<p style='color:#888;font-size:11px;margin-top:20px'>Phase-1 probe — sent direct (not queued). ")
1976
            .append("Note: for past months, DRR% denominator reads the current month's target snapshot (limitation of the live query).</p>");
1977
 
1978
        javax.mail.internet.MimeMessage message = googleMailSender.createMimeMessage();
1979
        org.springframework.mail.javamail.MimeMessageHelper helper =
1980
                new org.springframework.mail.javamail.MimeMessageHelper(message, false, "UTF-8");
1981
        helper.setTo(RBM_RANK_PROBE_RECIPIENTS);
1982
        helper.setSubject(subject);
1983
        helper.setText(body.toString(), true);
1984
        helper.setFrom(new javax.mail.internet.InternetAddress("sdtech@smartdukaan.com", "SmartDukaan Care"));
1985
        googleMailSender.send(message);
1986
        LOGGER.info("[RBM-RANK] Emailed probe to {}", String.join(", ", RBM_RANK_PROBE_RECIPIENTS));
1987
    }
1988
 
1989
    private static String escapeHtml(String s) {
1990
        if (s == null || s.isEmpty()) return "-";
1991
        return s.replace("&", "&amp;").replace("<", "&lt;").replace(">", "&gt;")
1992
                .replace("\"", "&quot;").replace("'", "&#39;");
1993
    }
1994
 
34946 ranu 1995
    public void setAbmReportSender() throws Exception{
1996
        abmReportSender.abmSendertest();
1997
    }
35105 vikas 1998
 
1999
    public void checkRewardsEligibility() throws Exception {
35150 vikas 2000
        saleRewardService.disburseRewardsByEligibility();
35105 vikas 2001
    }
35610 amit 2002
 
2003
    /**
2004
     * Mark all Sales Escalation (84) and RBM Escalation (83) tickets created before September 30, 2025 as resolved.
2005
     * Tickets resolved on behalf of Gaurav CRM (gaurav.sharma@smartdukaan.com)
2006
     *
2007
     * @param dryRun if true, only logs what would be done without making changes
2008
     * @return summary of the operation
2009
     */
2010
    public String resolveOldEscalationTickets(boolean dryRun) throws Exception {
2011
        StringBuilder result = new StringBuilder();
2012
        result.append(dryRun ? "=== DRY RUN MODE ===\n" : "=== EXECUTING ===\n");
2013
        LOGGER.info("Starting resolveOldEscalationTickets migration (dryRun={})...", dryRun);
2014
 
2015
        // Get Gaurav's auth user ID
2016
        AuthUser gauravUser = authRepository.selectByEmailOrMobile("gaurav.sharma@smartdukaan.com");
2017
        if (gauravUser == null) {
2018
            String error = "Gaurav CRM user not found with email gaurav.sharma@smartdukaan.com";
2019
            LOGGER.error(error);
2020
            return error;
2021
        }
2022
        int gauravAuthId = gauravUser.getId();
2023
        result.append("Gaurav CRM auth user ID: ").append(gauravAuthId).append("\n");
2024
        LOGGER.info("Gaurav CRM auth user ID: {}", gauravAuthId);
2025
 
2026
        // Define cutoff date: September 30, 2025 23:59:59
2027
        LocalDateTime cutoffDate = LocalDateTime.of(2025, 9, 30, 23, 59, 59);
2028
        LocalDateTime now = LocalDateTime.now();
2029
        result.append("Cutoff date: ").append(cutoffDate).append("\n");
2030
 
2031
        // Subcategory IDs for Sales Escalation and RBM Escalation
2032
        int salesEscalationSubCatId = ProfitMandiConstants.TICKET_SUBCATEGORY_SALES_ESCALATION; // 84
2033
        int rbmEscalationSubCatId = ProfitMandiConstants.TICKET_SUBCATEGORY_RBM_ESCALATION; // 83
2034
 
2035
        // Select all open tickets with these subcategories created before cutoff
2036
        Map<String, Object> params = new HashMap<>();
2037
        params.put("closeTimestamp", GenericRepository.IS_NULL);
2038
 
2039
        List<Ticket> allOpenTickets = genericRepository.selectAllByEqualsOrderByDesc(
2040
                Ticket.class, params, "createTimestamp");
2041
 
2042
        // Filter for escalation subcategories and before cutoff date
2043
        List<Ticket> ticketsToResolve = allOpenTickets.stream()
2044
                .filter(t -> (t.getSubCategoryId() == salesEscalationSubCatId || t.getSubCategoryId() == rbmEscalationSubCatId))
2045
                .filter(t -> t.getCreateTimestamp() != null && t.getCreateTimestamp().isBefore(cutoffDate))
2046
                .collect(Collectors.toList());
2047
 
2048
        result.append("Found ").append(ticketsToResolve.size()).append(" escalation tickets to resolve\n\n");
2049
        LOGGER.info("Found {} escalation tickets to resolve (created before {})", ticketsToResolve.size(), cutoffDate);
2050
 
2051
        // List tickets
2052
        result.append("Tickets:\n");
2053
        for (Ticket ticket : ticketsToResolve) {
2054
            String ticketInfo = String.format("ID: %d, SubCatId: %d, FofoId: %d, Created: %s",
2055
                    ticket.getId(), ticket.getSubCategoryId(), ticket.getFofoId(), ticket.getCreateTimestamp());
2056
            result.append("  ").append(ticketInfo).append("\n");
2057
        }
2058
 
2059
        if (dryRun) {
2060
            result.append("\n=== DRY RUN - No changes made ===\n");
2061
            result.append("Call with dryRun=false to execute\n");
2062
            return result.toString();
2063
        }
2064
 
2065
        // Execute resolution
2066
        int resolvedCount = 0;
2067
        int failedCount = 0;
2068
        for (Ticket ticket : ticketsToResolve) {
2069
            try {
2070
                // Update ticket
2071
                ticket.setLastActivity(ActivityType.RESOLVED);
2072
                ticket.setCloseTimestamp(now);
2073
                ticketRepository.persist(ticket);
2074
 
2075
                // Create activity record
2076
                Activity activity = new Activity();
2077
                activity.setTicketId(ticket.getId());
2078
                activity.setType(ActivityType.RESOLVED);
2079
                activity.setCreatedBy(gauravAuthId);
2080
                activity.setCreateTimestamp(now);
2081
                activity.setMessage("Bulk resolved - old escalation ticket cleanup by CRM");
2082
                activityRepository.persist(activity);
2083
 
2084
                // Update ticket's last activity ID
2085
                ticket.setLastActivityId(activity.getId());
2086
                ticketRepository.persist(ticket);
2087
 
2088
                resolvedCount++;
2089
                LOGGER.info("Resolved ticket ID: {}, subCategoryId: {}, created: {}",
2090
                        ticket.getId(), ticket.getSubCategoryId(), ticket.getCreateTimestamp());
2091
            } catch (Exception e) {
2092
                failedCount++;
2093
                LOGGER.error("Failed to resolve ticket ID: {}", ticket.getId(), e);
2094
            }
2095
        }
2096
 
2097
        result.append("\n=== COMPLETED ===\n");
2098
        result.append("Resolved: ").append(resolvedCount).append(" tickets\n");
2099
        result.append("Failed: ").append(failedCount).append(" tickets\n");
2100
        LOGGER.info("Completed resolveOldEscalationTickets migration. Resolved {} tickets, Failed {} tickets.", resolvedCount, failedCount);
2101
 
2102
        return result.toString();
2103
    }
36554 amit 2104
 
2105
    public void postCreditNoteForDuplicateInvoice(String duplicateInvoice, String activeInvoice) throws Exception {
2106
        List<Order> orders = orderRepository.selectByInvoiceNumber(activeInvoice);
2107
        if (orders.isEmpty()) throw new RuntimeException("No orders found for " + activeInvoice);
2108
 
2109
        Order firstOrder = orders.get(0);
2110
        SellerWarehouse sellerWarehouse = sellerWarehouseRepository.selectByWarehouseIdAndSellerId(
2111
                firstOrder.getWarehouseId(), firstOrder.getSellerId());
2112
 
2113
        sellerWarehouse.setCreditNoteSequence(sellerWarehouse.getCreditNoteSequence() + 1);
2114
        String cnNumber = "CN-" + sellerWarehouse.getPrefix() + sellerWarehouse.getCreditNoteSequence();
2115
 
2116
        InvoicePdfModel invoicePdfModel = invoiceService.getInvoicePdfModelForIrn(orders);
2117
 
2118
        String billingDateStr = com.spice.profitmandi.common.util.StringUtils.toString(firstOrder.getBillingTimestamp().toLocalDate());
2119
        List<String[]> invoiceRefs = java.util.Collections.singletonList(
2120
                new String[]{duplicateInvoice, billingDateStr});
2121
 
2122
        String sellerGstin = "09AACCN9802G2ZC";
2123
        String reason = "Credit Note against duplicate invoice " + duplicateInvoice;
2124
 
2125
        com.spice.profitmandi.dao.entity.transaction.CreditNote creditNote = new com.spice.profitmandi.dao.entity.transaction.CreditNote();
2126
        creditNote.setCreditNoteNumber(cnNumber);
2127
        creditNote.setFofoId(firstOrder.getRetailerId());
2128
        creditNote.setCnDate(java.time.LocalDate.now().atTime(com.spice.profitmandi.common.util.Utils.MAX_TIME));
2129
        creditNote.setType(com.spice.profitmandi.dao.entity.transaction.CreditNoteType.RETURNS);
2130
        creditNote.setOriginalInvoiceNumber(duplicateInvoice);
2131
        creditNote.setCreateTimestamp(java.time.LocalDateTime.now());
2132
        creditNoteRepository.persist(creditNote);
2133
 
2134
        for (Order order : orders) {
2135
            com.spice.profitmandi.dao.entity.transaction.CreditNoteLine cnLine = new com.spice.profitmandi.dao.entity.transaction.CreditNoteLine();
2136
            cnLine.setCreditNoteId(creditNote.getId());
2137
            cnLine.setDescription(order.getLineItem().getItem().getItemDescription());
2138
            cnLine.setQuantity(order.getLineItem().getQuantity());
2139
            cnLine.setUnitPrice(order.getLineItem().getUnitPrice());
2140
            cnLine.setAmount(order.getLineItem().getUnitPrice() * order.getLineItem().getQuantity());
2141
            cnLine.setCgst(order.getLineItem().getCgstRate());
2142
            cnLine.setSgst(order.getLineItem().getSgstRate());
2143
            cnLine.setIgst(order.getLineItem().getIgstRate());
2144
            cnLine.setHsnCode(order.getLineItem().getHsnCode());
2145
            creditNoteLineRepository.persist(cnLine);
2146
        }
2147
 
2148
        LOGGER.info("Credit Note {} created against duplicate invoice {}", cnNumber, duplicateInvoice);
2149
 
2150
        gstProService.generateCreditNoteIrn(cnNumber, java.time.LocalDate.now(), invoicePdfModel, invoiceRefs, sellerGstin, reason);
2151
        LOGGER.info("Credit Note IRN posted to NIC: CN={} against {}", cnNumber, duplicateInvoice);
2152
    }
25043 amit.gupta 2153
}
2154
 
2155
//7015845171