Subversion Repositories SmartDukaan

Rev

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

Rev 37232 Rev 37236
Line 860... Line 860...
860
    public void corrMarginCNs(YearMonth yearMonth, boolean dryRun) throws Exception {
860
    public void corrMarginCNs(YearMonth yearMonth, boolean dryRun) throws Exception {
861
        LOGGER.info("Running corrMarginCNs for {} (dryRun={})", yearMonth.toString(), dryRun);
861
        LOGGER.info("Running corrMarginCNs for {} (dryRun={})", yearMonth.toString(), dryRun);
862
        creditNoteService.issueCorrectiveMarginCNs(yearMonth, dryRun);
862
        creditNoteService.issueCorrectiveMarginCNs(yearMonth, dryRun);
863
    }
863
    }
864
 
864
 
-
 
865
    public void cancelMarginDnIrns(YearMonth yearMonth, boolean dryRun) throws Exception {
-
 
866
        LOGGER.info("Running cancelMarginDnIrns for {} (dryRun={})", yearMonth.toString(), dryRun);
-
 
867
        creditNoteService.cancelMarginDnIrns(yearMonth, dryRun);
-
 
868
    }
-
 
869
 
865
    public void genDNs(YearMonth yearMonth) throws Exception {
870
    public void genDNs(YearMonth yearMonth) throws Exception {
866
        LOGGER.info("Running genDNs for {}", yearMonth.toString());
871
        LOGGER.info("Running genDNs for {}", yearMonth.toString());
867
        creditNoteService.generateDebitNotesForCancelled(yearMonth);
872
        creditNoteService.generateDebitNotesForCancelled(yearMonth);
868
    }
873
    }
869
 
874