mirror of
https://github.com/openMF/community-app.git
synced 2026-02-06 09:37:29 +00:00
262 lines
14 KiB
JavaScript
Executable File
262 lines
14 KiB
JavaScript
Executable File
(function (module) {
|
|
mifosX.controllers = _.extend(module, {
|
|
NewLoanAccAppController: function (scope, routeParams, resourceFactory, location, dateFilter, uiConfigService) {
|
|
scope.previewRepayment = false;
|
|
scope.clientId = routeParams.clientId;
|
|
scope.groupId = routeParams.groupId;
|
|
scope.restrictDate = new Date();
|
|
scope.formData = {};
|
|
scope.chargeFormData = {}; //For charges
|
|
scope.collateralFormData = {}; //For collaterals
|
|
scope.inparams = {resourceType: 'template', activeOnly: 'true'};
|
|
scope.date = {};
|
|
|
|
scope.date.first = new Date();
|
|
if (scope.clientId) {
|
|
scope.inparams.clientId = scope.clientId;
|
|
scope.formData.clientId = scope.clientId;
|
|
}
|
|
|
|
|
|
if (scope.groupId) {
|
|
scope.inparams.groupId = scope.groupId;
|
|
scope.formData.groupId = scope.groupId;
|
|
}
|
|
|
|
if (scope.clientId && scope.groupId) {
|
|
scope.inparams.templateType = 'jlg';
|
|
}
|
|
else if (scope.groupId) {
|
|
scope.inparams.templateType = 'group';
|
|
}
|
|
else if (scope.clientId) {
|
|
scope.inparams.templateType = 'individual';
|
|
}
|
|
|
|
scope.inparams.staffInSelectedOfficeOnly = true;
|
|
|
|
resourceFactory.loanResource.get(scope.inparams, function (data) {
|
|
scope.products = data.productOptions;
|
|
if (data.clientName) {
|
|
scope.clientName = data.clientName;
|
|
}
|
|
if (data.group) {
|
|
scope.groupName = data.group.name;
|
|
}
|
|
});
|
|
|
|
scope.loanProductChange = function (loanProductId) {
|
|
scope.inparams.productId = loanProductId;
|
|
resourceFactory.loanResource.get(scope.inparams, function (data) {
|
|
scope.loanaccountinfo = data;
|
|
scope.previewClientLoanAccInfo();
|
|
});
|
|
|
|
resourceFactory.loanResource.get({resourceType: 'template', templateType: 'collateral', productId: loanProductId, fields: 'id,loanCollateralOptions'}, function (data) {
|
|
scope.collateralOptions = data.loanCollateralOptions || [];
|
|
});
|
|
}
|
|
|
|
scope.previewClientLoanAccInfo = function () {
|
|
scope.previewRepayment = false;
|
|
scope.charges = scope.loanaccountinfo.charges || [];
|
|
scope.formData.disbursementData = scope.loanaccountinfo.disbursementDetails || [];
|
|
scope.collaterals = [];
|
|
|
|
if (scope.loanaccountinfo.calendarOptions) {
|
|
scope.formData.syncRepaymentsWithMeeting = true;
|
|
scope.formData.syncDisbursementWithMeeting = true;
|
|
}
|
|
scope.multiDisburseLoan = scope.loanaccountinfo.multiDisburseLoan
|
|
scope.formData.productId = scope.loanaccountinfo.loanProductId;
|
|
scope.formData.fundId = scope.loanaccountinfo.fundId;
|
|
scope.formData.principal = scope.loanaccountinfo.principal;
|
|
scope.formData.loanTermFrequency = scope.loanaccountinfo.termFrequency;
|
|
scope.formData.loanTermFrequencyType = scope.loanaccountinfo.termPeriodFrequencyType.id;
|
|
scope.formData.numberOfRepayments = scope.loanaccountinfo.numberOfRepayments;
|
|
scope.formData.repaymentEvery = scope.loanaccountinfo.repaymentEvery;
|
|
scope.formData.repaymentFrequencyType = scope.loanaccountinfo.repaymentFrequencyType.id;
|
|
scope.formData.interestRatePerPeriod = scope.loanaccountinfo.interestRatePerPeriod;
|
|
scope.formData.amortizationType = scope.loanaccountinfo.amortizationType.id;
|
|
scope.formData.interestType = scope.loanaccountinfo.interestType.id;
|
|
scope.formData.interestCalculationPeriodType = scope.loanaccountinfo.interestCalculationPeriodType.id;
|
|
scope.formData.inArrearsTolerance = scope.loanaccountinfo.inArrearsTolerance;
|
|
scope.formData.graceOnPrincipalPayment = scope.loanaccountinfo.graceOnPrincipalPayment;
|
|
scope.formData.graceOnInterestPayment = scope.loanaccountinfo.graceOnInterestPayment;
|
|
scope.formData.graceOnArrearsAgeing = scope.loanaccountinfo.graceOnArrearsAgeing;
|
|
scope.formData.transactionProcessingStrategyId = scope.loanaccountinfo.transactionProcessingStrategyId;
|
|
scope.formData.graceOnInterestCharged = scope.loanaccountinfo.graceOnInterestCharged;
|
|
scope.formData.fixedEmiAmount = scope.loanaccountinfo.fixedEmiAmount;
|
|
scope.formData.maxOutstandingLoanBalance = scope.loanaccountinfo.maxOutstandingLoanBalance;
|
|
|
|
if (scope.loanaccountinfo.isInterestRecalculationEnabled && scope.loanaccountinfo.interestRecalculationData.recalculationRestFrequencyDate) {
|
|
scope.date.recalculationRestFrequencyDate = new Date(scope.loanaccountinfo.interestRecalculationData.recalculationRestFrequencyDate);
|
|
}
|
|
}
|
|
|
|
scope.addCharge = function () {
|
|
if (scope.chargeFormData.chargeId) {
|
|
resourceFactory.chargeResource.get({chargeId: this.chargeFormData.chargeId, template: 'true'}, function (data) {
|
|
data.chargeId = data.id;
|
|
scope.charges.push(data);
|
|
scope.chargeFormData.chargeId = undefined;
|
|
});
|
|
}
|
|
}
|
|
|
|
scope.deleteCharge = function (index) {
|
|
scope.charges.splice(index, 1);
|
|
}
|
|
|
|
|
|
scope.addTranches = function () {
|
|
scope.formData.disbursementData.push({
|
|
});
|
|
};
|
|
scope.deleteTranches = function (index) {
|
|
scope.formData.disbursementData.splice(index, 1);
|
|
}
|
|
|
|
scope.syncRepaymentsWithMeetingchange = function () {
|
|
if (!scope.formData.syncRepaymentsWithMeeting) {
|
|
scope.formData.syncDisbursementWithMeeting = false;
|
|
}
|
|
};
|
|
|
|
scope.syncDisbursementWithMeetingchange = function () {
|
|
if (scope.formData.syncDisbursementWithMeeting) {
|
|
scope.formData.syncRepaymentsWithMeeting = true;
|
|
}
|
|
};
|
|
|
|
scope.addCollateral = function () {
|
|
if (scope.collateralFormData.collateralIdTemplate && scope.collateralFormData.collateralValueTemplate) {
|
|
scope.collaterals.push({type: scope.collateralFormData.collateralIdTemplate.id, name: scope.collateralFormData.collateralIdTemplate.name, value: scope.collateralFormData.collateralValueTemplate, description: scope.collateralFormData.collateralDescriptionTemplate});
|
|
scope.collateralFormData.collateralIdTemplate = undefined;
|
|
scope.collateralFormData.collateralValueTemplate = undefined;
|
|
scope.collateralFormData.collateralDescriptionTemplate = undefined;
|
|
}
|
|
};
|
|
|
|
scope.deleteCollateral = function (index) {
|
|
scope.collaterals.splice(index, 1);
|
|
};
|
|
|
|
scope.previewRepayments = function () {
|
|
// Make sure charges and collaterals are empty before initializing.
|
|
delete scope.formData.charges;
|
|
delete scope.formData.collateral;
|
|
|
|
var reqFirstDate = dateFilter(scope.date.first, scope.df);
|
|
var reqSecondDate = dateFilter(scope.date.second, scope.df);
|
|
var reqThirdDate = dateFilter(scope.date.third, scope.df);
|
|
var reqFourthDate = dateFilter(scope.date.fourth, scope.df);
|
|
if (scope.charges.length > 0) {
|
|
scope.formData.charges = [];
|
|
for (var i in scope.charges) {
|
|
scope.formData.charges.push({ chargeId: scope.charges[i].chargeId, amount: scope.charges[i].amount, dueDate: dateFilter(scope.charges[i].dueDate, scope.df) });
|
|
}
|
|
}
|
|
|
|
if (scope.formData.disbursementData.length > 0) {
|
|
for (var i in scope.formData.disbursementData) {
|
|
scope.formData.disbursementData[i].expectedDisbursementDate = dateFilter(scope.formData.disbursementData[i].expectedDisbursementDate, scope.df);
|
|
}
|
|
}
|
|
|
|
if (scope.collaterals.length > 0) {
|
|
scope.formData.collateral = [];
|
|
for (var i in scope.collaterals) {
|
|
scope.formData.collateral.push({type: scope.collaterals[i].type, value: scope.collaterals[i].value, description: scope.collaterals[i].description});
|
|
}
|
|
;
|
|
}
|
|
|
|
if (this.formData.syncRepaymentsWithMeeting) {
|
|
this.formData.calendarId = scope.loanaccountinfo.calendarOptions[0].id;
|
|
scope.syncRepaymentsWithMeeting = this.formData.syncRepaymentsWithMeeting;
|
|
}
|
|
delete this.formData.syncRepaymentsWithMeeting;
|
|
|
|
this.formData.interestChargedFromDate = reqThirdDate;
|
|
this.formData.repaymentsStartingFromDate = reqFourthDate;
|
|
this.formData.locale = scope.optlang.code;
|
|
this.formData.dateFormat = scope.df;
|
|
this.formData.loanType = scope.inparams.templateType;
|
|
this.formData.expectedDisbursementDate = reqSecondDate;
|
|
this.formData.submittedOnDate = reqFirstDate;
|
|
resourceFactory.loanResource.save({command: 'calculateLoanSchedule'}, this.formData, function (data) {
|
|
scope.repaymentscheduleinfo = data;
|
|
scope.previewRepayment = true;
|
|
scope.formData.syncRepaymentsWithMeeting = scope.syncRepaymentsWithMeeting;
|
|
});
|
|
|
|
}
|
|
|
|
uiConfigService.appendConfigToScope(scope);
|
|
|
|
scope.submit = function () {
|
|
// Make sure charges and collaterals are empty before initializing.
|
|
delete scope.formData.charges;
|
|
delete scope.formData.collateral;
|
|
var reqFirstDate = dateFilter(scope.date.first, scope.df);
|
|
var reqSecondDate = dateFilter(scope.date.second, scope.df);
|
|
var reqThirdDate = dateFilter(scope.date.third, scope.df);
|
|
var reqFourthDate = dateFilter(scope.date.fourth, scope.df);
|
|
var reqFifthDate = dateFilter(scope.date.fifth, scope.df);
|
|
|
|
if (scope.charges.length > 0) {
|
|
scope.formData.charges = [];
|
|
for (var i in scope.charges) {
|
|
scope.formData.charges.push({ chargeId: scope.charges[i].chargeId, amount: scope.charges[i].amount, dueDate: dateFilter(scope.charges[i].dueDate, scope.df) });
|
|
}
|
|
}
|
|
|
|
if (scope.formData.disbursementData.length > 0) {
|
|
for (var i in scope.formData.disbursementData) {
|
|
scope.formData.disbursementData[i].expectedDisbursementDate = dateFilter(scope.formData.disbursementData[i].expectedDisbursementDate, scope.df);
|
|
}
|
|
}
|
|
if (scope.collaterals.length > 0) {
|
|
scope.formData.collateral = [];
|
|
for (var i in scope.collaterals) {
|
|
scope.formData.collateral.push({type: scope.collaterals[i].type, value: scope.collaterals[i].value, description: scope.collaterals[i].description});
|
|
}
|
|
;
|
|
}
|
|
|
|
if (this.formData.syncRepaymentsWithMeeting) {
|
|
this.formData.calendarId = scope.loanaccountinfo.calendarOptions[0].id;
|
|
}
|
|
delete this.formData.syncRepaymentsWithMeeting;
|
|
this.formData.interestChargedFromDate = reqThirdDate;
|
|
this.formData.repaymentsStartingFromDate = reqFourthDate;
|
|
this.formData.locale = scope.optlang.code;
|
|
this.formData.dateFormat = scope.df;
|
|
this.formData.loanType = scope.inparams.templateType;
|
|
this.formData.expectedDisbursementDate = reqSecondDate;
|
|
this.formData.submittedOnDate = reqFirstDate;
|
|
this.formData.createStandingInstructionAtDisbursement = scope.formData.createStandingInstructionAtDisbursement;
|
|
if (scope.date.recalculationRestFrequencyDate) {
|
|
var restFrequencyDate = dateFilter(scope.date.recalculationRestFrequencyDate, scope.df);
|
|
scope.formData.recalculationRestFrequencyDate = restFrequencyDate;
|
|
}
|
|
resourceFactory.loanResource.save(this.formData, function (data) {
|
|
location.path('/viewloanaccount/' + data.loanId);
|
|
});
|
|
};
|
|
|
|
scope.cancel = function () {
|
|
if (scope.groupId) {
|
|
location.path('/viewgroup/' + scope.groupId);
|
|
} else if (scope.clientId) {
|
|
location.path('/viewclient/' + scope.clientId);
|
|
}
|
|
}
|
|
}
|
|
});
|
|
mifosX.ng.application.controller('NewLoanAccAppController', ['$scope', '$routeParams', 'ResourceFactory', '$location', 'dateFilter', 'UIConfigService', mifosX.controllers.NewLoanAccAppController]).run(function ($log) {
|
|
$log.info("NewLoanAccAppController initialized");
|
|
});
|
|
}(mifosX.controllers || {}));
|