Subversion Repositories SmartDukaan

Rev

Rev 37083 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 37083 Rev 37159
Line 961... Line 961...
961
    @Scheduled(cron = "0 30 5 * * *")
961
    @Scheduled(cron = "0 30 5 * * *")
962
    public void reconcileInventorySnapshot() throws Exception {
962
    public void reconcileInventorySnapshot() throws Exception {
963
        log.info("reconcileInventorySnapshot");
963
        log.info("reconcileInventorySnapshot");
964
        warehouseStockReconciliation.reconcile();
964
        warehouseStockReconciliation.reconcile();
965
    }
965
    }
-
 
966
 
-
 
967
    @Autowired
-
 
968
    private PartnerIdentityIntegrityMonitor partnerIdentityIntegrityMonitor;
-
 
969
 
-
 
970
    @Scheduled(cron = "0 0 7 * * *")
-
 
971
    public void partnerIdentityIntegrityMonitor() throws Exception {
-
 
972
        log.info("partnerIdentityIntegrityMonitor");
-
 
973
        partnerIdentityIntegrityMonitor.monitor();
-
 
974
    }
966
}
975
}