openMF / community-app

This was the former default web application built on top of the Apache Fineract platform. It's now deprecated and replaced by the the Mifos X Web App (https://github.com/openMF/web-app maintained by the Mifos Initiative as a reference solution for financial inclusion. It is a Single-Page App (SPA) written in web standard technologies.
http://openmf.github.io/community-app/
Mozilla Public License 2.0
312 stars 1.02k forks source link

Details displayed in "Waiting For Checker Approval" page after creating Fixed Deposit is not proper #1676

Open santoshconflux opened 7 years ago

santoshconflux commented 7 years ago

Reported by Subramanya at https://mifosforge.jira.com/browse/MIFOSX-1241

  1. Enable the Maker Checker and in Maker checker tasks select the check box.
  2. Click on the Admin -> Products -> Fixed Deposit product -> Create Fixed deposit product - In create fixed deposit page fill all the required fields and click on the save button.
  3. Waiting for checker approval page will be displayed -> Click on the details button in that page.
  4. In details page it is displaying the enum values than displaying the actual actual texts entered while creating the Fixed deposit product.
  5. Also the in command column texts displayed is not proper - it should be same as in input page, (Create Fixed deposit page)

scr-39

gkrishnan724 commented 7 years ago

@santoshmath This is a fineract side issue. each command details is retrieved from the API. We could observe the same in controller

`resourceFactory.auditResource.get({templateResource: routeParams.id}, function (data) { var obj = JSON.parse(scope.commandAsJson); scope.jsondata = []; _.each(obj, function (value, key) { scope.jsondata.push({name: key, property: value}); });

` The jsondata is what which is getting displayed and this is retrieved from the API

santoshconflux commented 7 years ago

@nazeer1100126, let me know whether it's fineract side issue.