mirror of
https://github.com/openMF/community-app.git
synced 2026-02-06 14:26:51 +00:00
Merge pull request #1428 from nazeer1100126/Provisioning_Implementation
MIFOSX-2307 issue with group loan provisoning generation
This commit is contained in:
commit
2b5a4e3a7c
@ -11,7 +11,7 @@
|
||||
scope.selectedloanproducts = data.selectedLoanProducts;
|
||||
scope.allloanproducts = data.loanProducts ;
|
||||
scope.categories = data.definitions;
|
||||
scope.criterianame = data.criteriaName;
|
||||
scope.criteriaName = data.criteriaName;
|
||||
scope.criteriaId = data.criteriaId;
|
||||
scope.liabilityaccounts = data.glAccounts;
|
||||
scope.expenseaccounts = data.glAccounts;
|
||||
@ -50,7 +50,7 @@
|
||||
scope.submit = function () {
|
||||
this.formData.locale = scope.optlang.code;
|
||||
this.formData.criteriaId = scope.criteriaId ;
|
||||
this.formData.criterianame = scope.criterianame ;
|
||||
this.formData.criteriaName = scope.criteriaName ;
|
||||
this.formData.loanProducts = scope.selectedloanproducts ;
|
||||
this.formData.provisioningcriteria = scope.categories;
|
||||
resourceFactory.provisioningcriteria.put({criteriaId: routeParams.criteriaId}, this.formData, function (data) {
|
||||
|
||||
@ -530,10 +530,9 @@
|
||||
put: {method: 'PUT', params: {}},
|
||||
createJournals:{method:'POST', params:{command : 'createjournalentry'}},
|
||||
reCreateProvisioningEntries:{method:'POST', params:{command : 'recreateprovisioningentry'}},
|
||||
getJournals: {method: 'GET', params: {entryId: '@entryId'}},
|
||||
//delete: {method: 'DELETE', params: {}}
|
||||
getJournals: {method: 'GET', params: {entryId: '@entryId'}}
|
||||
}),
|
||||
provisioningjournals: defineResource(apiVer + "/provisioningentries/journalentry", {}, {
|
||||
provisioningjournals: defineResource(apiVer + "/journalentries/provisioning", {}, {
|
||||
get: {method: 'GET', params: {}}
|
||||
})
|
||||
|
||||
|
||||
@ -13,7 +13,7 @@
|
||||
class="required">*</span></label>
|
||||
|
||||
<div class="col-sm-3">
|
||||
<input name="name" type="text" id="name" ng-model="criterianame" class="form-control"
|
||||
<input name="name" type="text" id="name" ng-model="criteriaName" class="form-control"
|
||||
required late-Validate/>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
|
||||
Loading…
Reference in New Issue
Block a user