Skip to content

Commit

Permalink
MIFOSX-1833 & MIFOSX-1590
Browse files Browse the repository at this point in the history
1833 - In the Add journal entry - Drop down accounts should be sorted with respect to gl code
Sorted.
1590 - Moving icons on Accounting Menu page distracting - Resolved, icons are static now.
  • Loading branch information
Muciojad committed Jan 12, 2015
1 parent 0c424f1 commit 748d9e1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions app/views/accounting/accounting.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="col-sm-6 col-md-6">
<div class="list-group">
<a class="list-group-item" href="#/freqposting" has-permission='CREATE_JOURNALENTRY'>
<h4 class="list-group-item-heading"><i class="icon-repeat icon-large icon-spin"></i>&nbsp;&nbsp;{{
<h4 class="list-group-item-heading"><i class="icon-repeat icon-large"></i>&nbsp;&nbsp;{{
'label.heading.frequentpostings' | translate}}</h4>

<p class="list-group-item-text">{{'label.thesearepredefinedpostings' | translate}}</p>
Expand Down Expand Up @@ -48,7 +48,7 @@ <h4 class="list-group-item-heading"><i class="icon-large icon-lock"></i>&nbsp;&n
<p class="list-group-item-text">{{ 'label.listsallaccountingrules' | translate}}</p>
</a>
<a class="list-group-item" href="#/run_periodic_accrual" has-permission='EXECUTE_PERIODICACCRUALACCOUNTING'>
<h4 class="list-group-item-heading"><i class="icon-cog icon-spin icon-large"></i>&nbsp;&nbsp;{{
<h4 class="list-group-item-heading"><i class="icon-cog icon-large"></i>&nbsp;&nbsp;{{
'label.heading.execute.periodic.accounting' | translate}}</h4>

<p class="list-group-item-text">{{ 'label.execute.periodic.accounting' | translate}}</p>
Expand Down
6 changes: 3 additions & 3 deletions app/views/accounting/journalentry_posting.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,16 @@
<h4><strong>{{ 'label.input.debit' | translate }}</strong>&nbsp;<a ng-click="addDebitAccount()">&nbsp;<i class="icon-plus icon-white"></i></a></h4>
<div ng-repeat="dbAccount in formData.dbAccounts" class="form-inline paddedbottom10">
<select chosen="glAccounts" ng-model="dbAccount.select"
ng-options="(debitAccount.name +'('+ debitAccount.glCode +')') for debitAccount in glAccounts" class="form-control">
ng-options="(debitAccount.name +'('+ debitAccount.glCode +')') for debitAccount in glAccounts | orderBy:'glCode'" class="form-control">
<option class="displaynone" value="">{{'label.selectdebit' | translate}}</option>
</select>&nbsp;&nbsp;
<input type="text" class="input-small form-control" ng-model="dbAccount.debitAmount">
&nbsp;<a ng-click="removeDebitAccount($index)">&nbsp;<i class="icon-remove icon-white"></i></a>
</div>
<h4><strong>{{ 'label.input.credit' | translate }}</strong>&nbsp;<a ng-click="addCrAccount()">&nbsp;<i class="icon-plus icon-white"></i></a></h4>
<div ng-repeat="crAccount in formData.crAccounts" class="form-inline paddedbottom10">
<div ng-repeat="crAccount in formData.crAccounts " class="form-inline paddedbottom10">
<select chosen="glAccounts" ng-model="crAccount.select"
ng-options="(creditAccount.name + '('+ creditAccount.glCode + ')') for creditAccount in glAccounts" class="form-control">
ng-options="(creditAccount.name + '('+ creditAccount.glCode + ')') for creditAccount in glAccounts | orderBy:'glCode'" class="form-control">
<option class="displaynone" value="">{{'label.selectcredit' | translate}}</option>
</select>&nbsp;&nbsp;
<input type="text" class="input-small form-control" ng-model="crAccount.crAmount">&nbsp;
Expand Down

0 comments on commit 748d9e1

Please sign in to comment.