mirror of
https://github.com/openMF/community-app.git
synced 2026-02-06 14:11:54 +00:00
nice tool tips added for create/edit saving product
This commit is contained in:
parent
cc2a9d8c05
commit
064109454d
@ -1073,16 +1073,23 @@
|
||||
"label.selectpurpose": "Select purpose",
|
||||
"label.selectloanproduct": "Select loan product",
|
||||
|
||||
"#tool tip":"..",
|
||||
"label.tooltip.fundsource":"An asset account(typically Bank or cash) that is debited during repayments/payments an credited using disbursals",
|
||||
"label.tooltip.loanportfolio":"An asset account that is debited during disbursement and credited during principal repayment/writeoff",
|
||||
"label.tooltip.transfersinsuspense":"An asset account that is used a suspense account for tracking portfolios of loans under transfer",
|
||||
"label.tooltip.incomefrominterest":"An income account that is credited during interest payment",
|
||||
"label.tooltip.incomefromfees":"An income account that is credited during fee payment",
|
||||
"label.tooltip.incomefrompenalties":"An income account that is credited during penalty payment",
|
||||
"label.tooltip.loseswrittenoff":"An expense account that is debited on principal writeoff(also debited in the events of interest, fee and penalty written-off in case of accural based accounting",
|
||||
"label.tooltip.overpaymentliability":"A liability account that is credited on overpayments and credited when refunds are made to client",
|
||||
|
||||
"#tool tip for loan products":"..",
|
||||
"label.tooltip.fundsource":"an Asset account(typically Bank or cash) that is debited during repayments/payments an credited using disbursals.",
|
||||
"label.tooltip.loanportfolio":"an Asset account that is debited during disbursement and credited during principal repayment/writeoff.",
|
||||
"label.tooltip.transfersinsuspense":"an Asset account that is used a suspense account for tracking portfolios of loans under transfer.",
|
||||
"label.tooltip.incomefrominterest":"an Income account that is credited during interest payment.",
|
||||
"label.tooltip.incomefromfees":"an Income account that is credited during fee payment.",
|
||||
"label.tooltip.incomefrompenalties":"an Income account that is credited during penalty payment.",
|
||||
"label.tooltip.loseswrittenoff":"an Expense account that is debited on principal writeoff(also debited in the events of interest, fee and penalty written-off in case of accural based accounting.",
|
||||
"label.tooltip.overpaymentliability":"an Liability account that is credited on overpayments and credited when refunds are made to client.",
|
||||
|
||||
"#tool tip for saving products":"..",
|
||||
"label.tooltip.savingreference":"an Asset account (typically a Cash account), to which the amount is debited when a deposit is made by the account holder and credit when the account holder makes a withdrawal.",
|
||||
"label.tooltip.savingcontrol":"a Liability account which denotes the Savings deposit accounts portfolio and is credited when a deposit is made and debited when a withdrawal is done.",
|
||||
"label.tooltip.interestonsavings":"an Expense account, which is debited when interest is due to be paid to the customer." ,
|
||||
"label.tooltip.incomefromfees":"an Income account which is credited when a fee is paid by account holder on this account.",
|
||||
"label.tooltip.incomefrompenalties":"an Income account, which is credited when a penalty is paid by account holder on this account.",
|
||||
"label.tooltip.savingsuspense":"an Asset account that is used a suspense account for tracking Portfolio of Loans under transfer.",
|
||||
|
||||
"#Enumeration & Error Messages": "..",
|
||||
"loanTransactionType.disbursement": "Disbursement",
|
||||
|
||||
@ -219,6 +219,7 @@
|
||||
<tr class="control-group">
|
||||
<td>
|
||||
<label class="control-label">{{ 'label.input.savingreference' | translate }} </label>
|
||||
<a tooltip="{{'label.tooltip.savingreference' | translate}}"><i class="icon-question-sign icon-white"></i>
|
||||
<select id="savingsReferenceAccountId" ng-model="formData.savingsReferenceAccountId" chosen="assetAccountOptions"
|
||||
ng-options="assetAccount.id as assetAccount.name for assetAccount in assetAccountOptions"
|
||||
value="{{assetAccount.id}}">
|
||||
@ -236,6 +237,7 @@
|
||||
<tr class="control-group">
|
||||
<td>
|
||||
<label class="control-label">{{ 'label.input.savingcontrol' | translate }} </label>
|
||||
<a tooltip="{{'label.tooltip.savingcontrol' | translate}}"><i class="icon-question-sign icon-white"></i>
|
||||
<select id="savingsControlAccountId" ng-model="formData.savingsControlAccountId" chosen="liabilityAccountOptions"
|
||||
ng-options="liabilityAccount.id as liabilityAccount.name for liabilityAccount in liabilityAccountOptions"
|
||||
value="{{liabilityAccount.id}}">
|
||||
@ -245,6 +247,7 @@
|
||||
<tr class="control-group">
|
||||
<td>
|
||||
<label class="control-label">{{ 'label.input.savingstransfersinsuspenpense' | translate }} </label>
|
||||
<a tooltip="{{'label.tooltip.savingsuspense' | translate}}"><i class="icon-question-sign icon-white"></i>
|
||||
<select id="transfersInSuspenseAccountId" ng-model="formData.transfersInSuspenseAccountId" chosen="liabilityAccountOptions"
|
||||
ng-options="liabilityAccount.id as liabilityAccount.name for liabilityAccount in liabilityAccountOptions"
|
||||
value="{{liabilityAccount.id}}">
|
||||
@ -264,6 +267,7 @@
|
||||
<tr class="control-group">
|
||||
<td>
|
||||
<label class="control-label">{{ 'label.input.interestonsavings' | translate }} </label>
|
||||
<a tooltip="{{'label.tooltip.interestonsavings' | translate}}"><i class="icon-question-sign icon-white"></i>
|
||||
<select id="interestOnSavingsAccountId" ng-model="formData.interestOnSavingsAccountId" chosen="expenseAccountOptions"
|
||||
ng-options="expenseAccount.id as expenseAccount.name for expenseAccount in expenseAccountOptions"
|
||||
value="{{expenseAccount.id}}">
|
||||
@ -282,6 +286,7 @@
|
||||
<tr class="control-group">
|
||||
<td>
|
||||
<label class="control-label">{{ 'label.input.incomefromfees' | translate }} </label>
|
||||
<a tooltip="{{'label.tooltip.incomefromfees' | translate}}"><i class="icon-question-sign icon-white"></i>
|
||||
<select id="incomeFromFeeAccountId" ng-model="formData.incomeFromFeeAccountId" chosen="incomeAccountOptions"
|
||||
ng-options="incomeAccount.id as incomeAccount.name for incomeAccount in incomeAccountOptions"
|
||||
value="{{incomeAccount.id}}">
|
||||
@ -293,6 +298,7 @@
|
||||
<tr class="control-group">
|
||||
<td>
|
||||
<label class="control-label">{{ 'label.input.incomefrompenalties' | translate }} </label>
|
||||
<a tooltip="{{'label.tooltip.incomefrompenalties' | translate}}"><i class="icon-question-sign icon-white"></i>
|
||||
<select id="incomeFromPenaltyAccountId" ng-model="formData.incomeFromPenaltyAccountId" chosen="incomeAccountOptions"
|
||||
ng-options="incomeAccount.id as incomeAccount.name for incomeAccount in incomeAccountOptions"
|
||||
value="{{incomeAccount.id}}">
|
||||
|
||||
@ -223,6 +223,7 @@
|
||||
<tr class="control-group">
|
||||
<td>
|
||||
<label class="control-label">{{ 'label.input.savingreference' | translate }} </label>
|
||||
<a tooltip="{{'label.tooltip.savingreference' | translate}}"><i class="icon-question-sign icon-white"></i>
|
||||
<select id="savingsReferenceAccountId" ng-model="formData.savingsReferenceAccountId" chosen="assetAccountOptions"
|
||||
ng-options="assetAccount.id as assetAccount.name for assetAccount in assetAccountOptions"
|
||||
value="{{assetAccount.id}}">
|
||||
@ -241,6 +242,7 @@
|
||||
<tr class="control-group">
|
||||
<td>
|
||||
<label class="control-label">{{ 'label.input.savingcontrol' | translate }} </label>
|
||||
<a tooltip="{{'label.tooltip.savingcontrol' | translate}}"><i class="icon-question-sign icon-white"></i>
|
||||
<select id="savingsControlAccountId" ng-model="formData.savingsControlAccountId" chosen="liabilityAccountOptions"
|
||||
ng-options="liabilityAccount.id as liabilityAccount.name for liabilityAccount in liabilityAccountOptions"
|
||||
value="{{liabilityAccount.id}}">
|
||||
@ -250,6 +252,7 @@
|
||||
<tr class="control-group">
|
||||
<td>
|
||||
<label class="control-label">{{ 'label.input.savingstransfersinsuspenpense' | translate }} </label>
|
||||
<a tooltip="{{'label.tooltip.savingsuspense' | translate}}"><i class="icon-question-sign icon-white"></i>
|
||||
<select id="transfersInSuspenseAccountId" ng-model="formData.transfersInSuspenseAccountId" chosen="liabilityAccountOptions"
|
||||
ng-options="liabilityAccount.id as liabilityAccount.name for liabilityAccount in liabilityAccountOptions"
|
||||
value="{{liabilityAccount.id}}">
|
||||
@ -269,6 +272,7 @@
|
||||
<tr class="control-group">
|
||||
<td>
|
||||
<label class="control-label">{{ 'label.input.interestonsavings' | translate }} </label>
|
||||
<a tooltip="{{'label.tooltip.interestonsavings' | translate}}"><i class="icon-question-sign icon-white"></i>
|
||||
<select id="interestOnSavingsAccountId" ng-model="formData.interestOnSavingsAccountId" chosen="expenseAccountOptions"
|
||||
ng-options="expenseAccount.id as expenseAccount.name for expenseAccount in expenseAccountOptions"
|
||||
value="{{expenseAccount.id}}">
|
||||
@ -287,6 +291,7 @@
|
||||
<tr class="control-group">
|
||||
<td>
|
||||
<label class="control-label">{{ 'label.input.incomefromfees' | translate }} </label>
|
||||
<a tooltip="{{'label.tooltip.incomefromfees' | translate}}"><i class="icon-question-sign icon-white"></i>
|
||||
<select id="incomeFromFeeAccountId" ng-model="formData.incomeFromFeeAccountId" chosen="incomeAccountOptions"
|
||||
ng-options="incomeAccount.id as incomeAccount.name for incomeAccount in incomeAccountOptions"
|
||||
value="{{incomeAccount.id}}">
|
||||
@ -298,6 +303,7 @@
|
||||
<tr class="control-group">
|
||||
<td>
|
||||
<label class="control-label">{{ 'label.input.incomefrompenalties' | translate }} </label>
|
||||
<a tooltip="{{'label.tooltip.incomefrompenalties' | translate}}"><i class="icon-question-sign icon-white"></i>
|
||||
<select id="incomeFromPenaltyAccountId" ng-model="formData.incomeFromPenaltyAccountId" chosen="incomeAccountOptions"
|
||||
ng-options="incomeAccount.id as incomeAccount.name for incomeAccount in incomeAccountOptions"
|
||||
value="{{incomeAccount.id}}">
|
||||
|
||||
Loading…
Reference in New Issue
Block a user