Subversion Repositories SmartDukaan

Rev

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

Rev 37173 Rev 37232
Line 855... Line 855...
855
    public void sendCreditNote(YearMonth yearMonth, boolean dryRun) throws Exception {
855
    public void sendCreditNote(YearMonth yearMonth, boolean dryRun) throws Exception {
856
        LOGGER.info("Running SendCreditNote for {} (dryRun={})", yearMonth.toString(), dryRun);
856
        LOGGER.info("Running SendCreditNote for {} (dryRun={})", yearMonth.toString(), dryRun);
857
        creditNoteService.issueMonthlyMarginsCN(yearMonth, dryRun);
857
        creditNoteService.issueMonthlyMarginsCN(yearMonth, dryRun);
858
    }
858
    }
859
 
859
 
-
 
860
    public void corrMarginCNs(YearMonth yearMonth, boolean dryRun) throws Exception {
-
 
861
        LOGGER.info("Running corrMarginCNs for {} (dryRun={})", yearMonth.toString(), dryRun);
-
 
862
        creditNoteService.issueCorrectiveMarginCNs(yearMonth, dryRun);
-
 
863
    }
-
 
864
 
860
    public void genDNs(YearMonth yearMonth) throws Exception {
865
    public void genDNs(YearMonth yearMonth) throws Exception {
861
        LOGGER.info("Running genDNs for {}", yearMonth.toString());
866
        LOGGER.info("Running genDNs for {}", yearMonth.toString());
862
        creditNoteService.generateDebitNotesForCancelled(yearMonth);
867
        creditNoteService.generateDebitNotesForCancelled(yearMonth);
863
    }
868
    }
864
 
869