community-app/app/scripts/controllers/deposits/fixed/ViewFixedDepositAccountDetailsController.js
Nazeer Hussain Shaik f45ef35503 new skin
2017-01-24 15:33:32 +05:30

303 lines
14 KiB
JavaScript
Executable File

(function (module) {
mifosX.controllers = _.extend(module, {
ViewFixedDepositAccountDetailsController: function (scope, routeParams, resourceFactory, location, route, dateFilter,$uibModal) {
scope.isDebit = function (savingsTransactionType) {
return savingsTransactionType.withdrawal == true || savingsTransactionType.feeDeduction == true || savingsTransactionType.withholdTax == true;
};
/***
* we are using orderBy(https://docs.angularjs.org/api/ng/filter/orderBy) filter to sort fields in ui
* api returns dates in array format[yyyy, mm, dd], converting the array of dates to date object
* @param dateFieldName
*/
scope.convertDateArrayToObject = function(dateFieldName){
for(var i in scope.savingaccountdetails.transactions){
scope.savingaccountdetails.transactions[i][dateFieldName] = new Date(scope.savingaccountdetails.transactions[i].date);
}
};
scope.clickEvent = function (eventName, accountId) {
eventName = eventName || "";
switch (eventName) {
case "modifyapplication":
location.path('/editfixeddepositaccount/' + accountId);
break;
case "approve":
location.path('/fixeddepositaccount/' + accountId + '/approve');
break;
case "reject":
location.path('/fixeddepositaccount/' + accountId + '/reject');
break;
case "withdrawnbyclient":
location.path('/fixeddepositaccount/' + accountId + '/withdrawnByApplicant');
break;
case "delete":
resourceFactory.fixedDepositAccountResource.delete({accountId: accountId}, {}, function (data) {
var destination = '/viewgroup/' + data.groupId;
if (data.clientId) destination = '/viewclient/' + data.clientId;
location.path(destination);
});
break;
case "undoapproval":
location.path('/fixeddepositaccount/' + accountId + '/undoapproval');
break;
case "activate":
location.path('/fixeddepositaccount/' + accountId + '/activate');
break;
case "addcharge":
location.path('/fixeddepositaccount/' + accountId + '/charges');
break;
case "calculateInterest":
resourceFactory.fixedDepositAccountResource.save({accountId: accountId, command: 'calculateInterest'}, {}, function (data) {
route.reload();
});
break;
case "postInterest":
resourceFactory.fixedDepositAccountResource.save({accountId: accountId, command: 'postInterest'}, {}, function (data) {
route.reload();
});
break;
/* case "applyAnnualFees":
location.path('/savingaccountcharge/' + accountId + '/applyAnnualFees/' + scope.annualChargeId);
break;
case "transferFunds":
if (scope.savingaccountdetails.clientId) {
location.path('/accounttransfers/fromsavings/'+accountId);
}
break;*/
case "close":
location.path('/fixeddepositaccount/' + accountId + '/close');
break;
case "prematureClose":
location.path('/fixeddepositaccount/' + accountId + '/prematureClose');
break;
case "enableWithHoldTax":
var changes = {
withHoldTax:true
};
resourceFactory.savingsResource.update({accountId: accountId, command: 'updateWithHoldTax'}, changes, function (data) {
route.reload();
});
break;
case "disableWithHoldTax":
var changes = {
withHoldTax:false
};
resourceFactory.savingsResource.update({accountId: accountId, command: 'updateWithHoldTax'}, changes, function (data) {
route.reload();
});
break;
}
};
scope.routeTo = function (accountId, transactionId, accountTransfer, transferId) {
if (accountTransfer) {
location.path('/viewaccounttransfers/' + transferId);
} else {
location.path('/viewfixeddepositaccounttrxn/' + accountId + '/' + transactionId);
}
};
resourceFactory.fixedDepositAccountResource.get({accountId: routeParams.id, associations: 'all'}, function (data) {
scope.savingaccountdetails = data;
scope.convertDateArrayToObject('date');
scope.chartSlabs = scope.savingaccountdetails.accountChart.chartSlabs;
scope.status = data.status.value;
if (scope.status == "Submitted and pending approval" || scope.status == "Active" || scope.status == "Approved") {
scope.choice = true;
}
scope.chargeAction = data.status.value == "Submitted and pending approval" ? true : false;
if (scope.savingaccountdetails.charges) {
scope.charges = scope.savingaccountdetails.charges;
scope.chargeTableShow = true;
} else {
scope.chargeTableShow = false;
}
if (data.status.value == "Submitted and pending approval") {
scope.buttons = { singlebuttons: [
{
name: "button.modifyapplication",
icon: "fa fa-pencil "
},
{
name: "button.approve",
icon: "fa fa-check"
}
],
options: [
{
name: "button.reject"
},
{
name: "button.withdrawnbyclient"
},
{
name: "button.addcharge"
},
{
name: "button.delete"
}
]
};
}
if (data.status.value == "Approved") {
scope.buttons = { singlebuttons: [
{
name: "button.undoapproval",
icon: "fa fa-undo"
},
{
name: "button.activate",
icon: "fa fa-ok-sign"
}
]
};
}
if (data.status.value == "Active") {
scope.buttons = { singlebuttons: [
{
name: "button.prematureClose",
icon: "fa fa-arrow-left"
},
{
name: "button.calculateInterest",
icon: "fa fa-table"
}
],
options: [
{
name: "button.postInterest"
},
{
name: "button.addcharge"
}
]
};
if(data.taxGroup){
if(data.withHoldTax){
scope.buttons.options.push({
name: "button.disableWithHoldTax",
taskPermissionName:"UPDATEWITHHOLDTAX_SAVINGSACCOUNT"
});
}else{
scope.buttons.options.push({
name: "button.enableWithHoldTax",
taskPermissionName:"UPDATEWITHHOLDTAX_SAVINGSACCOUNT"
});
}
}
/*if (data.clientId) {
scope.buttons.options.push({
name:"button.transferFunds"
});
}*/
}else if (data.status.value == "Matured") {
scope.buttons = { singlebuttons: [
{
name: "button.close",
icon: "fa fa-arrow-right"
},
{
name: "button.calculateInterest",
icon: "fa fa-table"
}
],
options: [
{
name: "button.postInterest"
},
{
name: "button.addcharge"
}
]
};
/*if (data.clientId) {
scope.buttons.options.push({
name:"button.transferFunds"
});
}*/
}
});
resourceFactory.DataTablesResource.getAllDataTables({apptable: 'm_savings_account'}, function (data) {
scope.savingdatatables = data;
});
scope.dataTableChange = function (datatable) {
resourceFactory.DataTablesResource.getTableDetails({datatablename: datatable.registeredTableName,
entityId: routeParams.id, genericResultSet: 'true'}, function (data) {
scope.datatabledetails = data;
scope.datatabledetails.isData = data.data.length > 0 ? true : false;
scope.datatabledetails.isMultirow = data.columnHeaders[0].columnName == "id" ? true : false;
scope.singleRow = [];
for (var i in data.columnHeaders) {
if (scope.datatabledetails.columnHeaders[i].columnCode) {
for (var j in scope.datatabledetails.columnHeaders[i].columnValues) {
for (var k in data.data) {
if (data.data[k].row[i] == scope.datatabledetails.columnHeaders[i].columnValues[j].id) {
data.data[k].row[i] = scope.datatabledetails.columnHeaders[i].columnValues[j].value;
}
}
}
}
}
if (scope.datatabledetails.isData) {
for (var i in data.columnHeaders) {
if (!scope.datatabledetails.isMultirow) {
var row = {};
row.key = data.columnHeaders[i].columnName;
row.value = data.data[0].row[i];
scope.singleRow.push(row);
}
}
}
});
};
scope.deleteAll = function (apptableName, entityId) {
resourceFactory.DataTablesResource.delete({datatablename: apptableName, entityId: entityId, genericResultSet: 'true'}, {}, function (data) {
route.reload();
});
};
scope.modifyTransaction = function (accountId, transactionId) {
location.path('/fixeddepositaccount/' + accountId + '/modifytransaction?transactionId=' + transactionId);
};
scope.incentives = function(index){
$uibModal.open({
templateUrl: 'incentive.html',
controller: IncentiveCtrl,
resolve: {
chartSlab: function () {
return scope.savingaccountdetails.accountChart.chartSlabs[index];
}
}
});
};
var IncentiveCtrl = function ($scope, $uibModalInstance, chartSlab) {
$scope.chartSlab = chartSlab;
_.each($scope.chartSlab.incentives, function (incentive) {
if(!incentive.attributeValueDesc){
incentive.attributeValueDesc = incentive.attributeValue;
}
});
$scope.cancel = function () {
$uibModalInstance.dismiss('cancel');
};
};
}
});
mifosX.ng.application.controller('ViewFixedDepositAccountDetailsController', ['$scope', '$routeParams', 'ResourceFactory', '$location', '$route', 'dateFilter','$uibModal', mifosX.controllers.ViewFixedDepositAccountDetailsController]).run(function ($log) {
$log.info("ViewFixedDepositAccountDetailsController initialized");
});
}(mifosX.controllers || {}));