Created
May 3, 2011 12:22
-
-
Save mgenov/953233 to your computer and use it in GitHub Desktop.
Applying value added services
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
log.info("Generate bills for " + billsCount + " months."); | |
log.info("Expiration date: " + expireDate); | |
List<BillEntity> bills = planner.getNextBills(services, lastBill, billsCount, paymentDay, expireDate, installationTax); | |
filterEmptyCharges(bills); | |
/** | |
* Apply value added services over generated bills. | |
*/ | |
vasManager.applyValueAddedServices(contract, bills); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment