Skip to content

Commit

Permalink
feat(General Ledger): implement title summing
Browse files Browse the repository at this point in the history
This commit implements basic summing on the general ledger's title
accounts.  The summing is performed on the server in JavaScript, but
could be done on the client just as easily.
  • Loading branch information
jniles committed Jan 26, 2018
1 parent 663165a commit 22f4cc1
Show file tree
Hide file tree
Showing 6 changed files with 204 additions and 205 deletions.
5 changes: 2 additions & 3 deletions client/src/modules/accounts/AccountGrid.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ angular.module('bhima.services')
.service('AccountGridService', AccountGridService);

AccountGridService.$inject = [
'AccountStoreService', 'AccountService', 'Store',
'LanguageService', '$httpParamSerializer',
'AccountStoreService', 'AccountService', 'Store', 'LanguageService',
'$httpParamSerializer',
];

/**
Expand All @@ -15,7 +15,6 @@ AccountGridService.$inject = [
* adding and removing data.
*/
function AccountGridService(AccountStore, Accounts, Store, Languages, $httpParamSerializer) {

/**
* @constructor
*
Expand Down
Loading

0 comments on commit 22f4cc1

Please sign in to comment.