Subversion Repositories SmartDukaan

Rev

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

Rev 37236 Rev 37238
Line 865... Line 865...
865
    public void cancelMarginDnIrns(YearMonth yearMonth, boolean dryRun) throws Exception {
865
    public void cancelMarginDnIrns(YearMonth yearMonth, boolean dryRun) throws Exception {
866
        LOGGER.info("Running cancelMarginDnIrns for {} (dryRun={})", yearMonth.toString(), dryRun);
866
        LOGGER.info("Running cancelMarginDnIrns for {} (dryRun={})", yearMonth.toString(), dryRun);
867
        creditNoteService.cancelMarginDnIrns(yearMonth, dryRun);
867
        creditNoteService.cancelMarginDnIrns(yearMonth, dryRun);
868
    }
868
    }
869
 
869
 
-
 
870
    public void regenMarginIrns(YearMonth yearMonth, boolean dryRun) throws Exception {
-
 
871
        LOGGER.info("Running regenMarginIrns for {} (dryRun={})", yearMonth.toString(), dryRun);
-
 
872
        creditNoteService.regenerateMarginIrns(yearMonth, dryRun);
-
 
873
    }
-
 
874
 
870
    public void genDNs(YearMonth yearMonth) throws Exception {
875
    public void genDNs(YearMonth yearMonth) throws Exception {
871
        LOGGER.info("Running genDNs for {}", yearMonth.toString());
876
        LOGGER.info("Running genDNs for {}", yearMonth.toString());
872
        creditNoteService.generateDebitNotesForCancelled(yearMonth);
877
        creditNoteService.generateDebitNotesForCancelled(yearMonth);
873
    }
878
    }
874
 
879