Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • While creating any loan product template, provision categories should be added to the response object. For this we need to add a new interface to provide organization level provision categories.
    • org.mifosplatform.portfolio.loanproduct.data.LoanProductData should have one more instance variable to hold provision categories
    • Interface New interface org.mifosplatform.portfolioorganisation.loanproductprovisioning.service.ProvisionCategoriesReadPlatformService should have a method to retrieve all provision categories.
      • The method name is List<EnumOptionData> retrieveProvisionCategories() ;
    • Provision Categories should retrieved and set to LoanProductData in org.mifosplatform.LoanProductsApiResource.handleTemplate(final LoanProductData productData)
    • Client application should read response param "provisioncategoies" if available it should display

...

    • provision categories as shown in create product mock up screen
  • While creating a loan product, the provision categories along with min age, max age, percentage to provision should be read and saved into DB. For this
    • New entity class org.mifosplatform.organisation.provisioning.domain.LoanProductProvision for 'm_loanproduct_provision_category' should be added
    • org.mifosplatform.portfolio.loanproduct.domain.LoanProduct should have set of LoanProductProvision
    • Client application should send loan product provision categories as part of the request params while creating a loan product. The parameter name is 'loanproductprovisons'
    • Provision categories should be read and added in org.mifosplatform.portfolio.loanproduct.domain.LoanProduct.assembleFromJson(...)