Fineract-CN-mobile icon indicating copy to clipboard operation
Fineract-CN-mobile copied to clipboard

Feature LoanAccount Task to update status of loan

Open therajanmaurya opened this issue 7 years ago • 3 comments

Summary:

From web app, we can update the status of the loan easily but in the mobile app there no feature to update the status of the task.

This feature should be added and It is a most important feature.

therajanmaurya avatar Aug 05 '17 15:08 therajanmaurya

Loan Status

CREATED Then Open For Generating form we need the Cost GET = http://pilot.kuelap.io/api/portfolio/v1/products/aaabbb/cases/TestLoan/actions/OPEN/costcomponent

For Opening, the Loan here is post request POST = http://pilot.kuelap.io/api/portfolio/v1/products/aaabbb/cases/TestLoan/commands/OPEN with data

{
  "note": "Open",
  "paymentSize": 0
}

therajanmaurya avatar Aug 11 '17 05:08 therajanmaurya

Loan Status

PENDING Then APPROVE or DENY For Generating APPROVE form, we need the Cost GET = http://pilot.kuelap.io/api/portfolio/v1/products/aaabbb/cases/TestLoan/actions/APPROVE/costcompon

For Generating DENY form, we need the Cost GET = http://pilot.kuelap.io/api/portfolio/v1/products/aaabbb/cases/TestLoan/actions/DENY/costcomponent

For Opening, the Loan here is post request POST = http://pilot.kuelap.io/api/portfolio/v1/products/aaabbb/cases/TestLoan/commands/APPROVE

{
  "note": "Approve",
  "paymentSize": 0
}

therajanmaurya avatar Aug 11 '17 05:08 therajanmaurya

Loan Status

APPROVED Then CLOSE For Generating form we need the Cost GET = http://pilot.kuelap.io/api/portfolio/v1/products/aaabbb/cases/TestLoan/actions/CLOSE/costcomponents

For Opening, the Loan here is post request POST = http://pilot.kuelap.io/api/portfolio/v1/products/aaabbb/cases/TestLoan/commands/CLOSE

{
  "note": "Close",
  "paymentSize": 0
}

therajanmaurya avatar Aug 11 '17 05:08 therajanmaurya