Subversion Repositories SmartDukaan

Rev

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

Rev 36361 Rev 36511
Line 924... Line 924...
924
 
924
 
925
    @Scheduled(cron = "0 0 0 * * *")
925
    @Scheduled(cron = "0 0 0 * * *")
926
    public void syncProductsToShopify() throws Exception {
926
    public void syncProductsToShopify() throws Exception {
927
        scheduledTasks.syncProductsToShopifyByWarehouseId(ProfitMandiConstants.WAREHOUSE_NAME_MAP.get("UP-WEST/NOIDA"));
927
        scheduledTasks.syncProductsToShopifyByWarehouseId(ProfitMandiConstants.WAREHOUSE_NAME_MAP.get("UP-WEST/NOIDA"));
928
    }
928
    }
-
 
929
 
-
 
930
    @Autowired
-
 
931
    private WarehouseStockReconciliation warehouseStockReconciliation;
-
 
932
 
-
 
933
    @Scheduled(cron = "0 30 5 * * *")
-
 
934
    public void reconcileInventorySnapshot() throws Exception {
-
 
935
        log.info("reconcileInventorySnapshot");
-
 
936
        warehouseStockReconciliation.reconcile();
-
 
937
    }
929
}
938
}