-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(journal): ensure col aggregates are displayed
This commit ensures that the column aggregates for debits, credits, descriptions, and dates are shown on the grid group headers. Because of careless cell template design, these values were not substituted into the templates in a previous iteration. Closes #626.
- Loading branch information
Jonathan Niles
committed
Aug 15, 2016
1 parent
8c1a5de
commit 2ab5ff2
Showing
6 changed files
with
47 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
<div class="ui-grid-cell-contents"> | ||
{{ row.entity.credit_equiv | currency:row.entity.currency_id }} | ||
<div class="ui-grid-cell-contents" title="TOOLTIP" ng-if="!row.groupHeader"> | ||
{{ row.entity.credit | currency:row.entity.currency_id }} | ||
</div> | ||
|
||
<div class="ui-grid-cell-contents" title="TOOLTIP" ng-if="row.groupHeader"> | ||
{{ COL_FIELD CUSTOM_FILTERS }} | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
<div class="ui-grid-cell-contents"> | ||
<div class="ui-grid-cell-contents" title="TOOLTIP" ng-if="!row.groupHeader"> | ||
{{ row.entity.credit_equiv | currency:grid.appScope.enterprise.currency_id }} | ||
</div> | ||
|
||
<div class="ui-grid-cell-contents" title="TOOLTIP" ng-if="row.groupHeader"> | ||
{{ COL_FIELD CUSTOM_FILTERS }} | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
<div class="ui-grid-cell-contents"> | ||
{{ row.entity.debit_equiv | currency:row.entity.currency_id }} | ||
<div class="ui-grid-cell-contents" title="TOOLTIP" ng-if="!row.groupHeader"> | ||
{{ row.entity.debit | currency:row.entity.currency_id }} | ||
</div> | ||
|
||
<div class="ui-grid-cell-contents" title="TOOLTIP" ng-if="row.groupHeader"> | ||
{{COL_FIELD CUSTOM_FILTERS}} | ||
</div> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
<div class="ui-grid-cell-contents"> | ||
<div class="ui-grid-cell-contents" title="TOOLTIP" ng-if="!row.groupHeader"> | ||
{{ row.entity.debit_equiv | currency:grid.appScope.enterprise.currency_id }} | ||
</div> | ||
|
||
<div class="ui-grid-cell-contents" title="TOOLTIP" ng-if="row.groupHeader"> | ||
{{ COL_FIELD CUSTOM_FILTERS }} | ||
</div> |