Subversion Repositories SmartDukaan

Rev

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

Rev 34844 Rev 34846
Line 167... Line 167...
167
        System.out.println("test end");
167
        System.out.println("test end");
168
 
168
 
169
    }
169
    }
170
 
170
 
171
    public void generateBiReport() throws Exception {
171
    public void generateBiReport() throws Exception {
172
        LOGGER.info("bi report started {-----}");
172
        System.out.println("bi report started");
173
        this.generateBiReportExcel();
173
        this.generateBiReportExcel();
174
        LOGGER.info("bi report ended {-----}");
174
        System.out.println("bi report ended {-----}");
175
    }
175
    }
176
 
176
 
177
    public void createLoanForBillingByTransactionIdAndInvoiceNumber(int transactionId, double invoiceAmount, String invoiceNumber) throws Exception {
177
    public void createLoanForBillingByTransactionIdAndInvoiceNumber(int transactionId, double invoiceAmount, String invoiceNumber) throws Exception {
178
        sdCreditService.createLoanForBilling(transactionId, invoiceAmount, invoiceNumber);
178
        sdCreditService.createLoanForBilling(transactionId, invoiceAmount, invoiceNumber);
179
 
179