Skip to content

Commit

Permalink
[5.3] MSPB-379: set timezone on balance filters (#1258) (#1263)
Browse files Browse the repository at this point in the history
Co-authored-by: Ricardo Merino <[email protected]>
  • Loading branch information
pcandia and masmerino13 committed Jan 24, 2025
1 parent 9d23e61 commit 0d579fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/apps/myaccount/submodules/balance/balance.js
Original file line number Diff line number Diff line change
Expand Up @@ -437,8 +437,8 @@ define(function(require) {
monster.ui.footable(template.find('.footable'), {
getData: function(filters, callback) {
filters = $.extend(true, filters, {
created_from: monster.util.dateToBeginningOfGregorianDay(fromDate, 'UTC'),
created_to: monster.util.dateToEndOfGregorianDay(toDate, 'UTC')
created_from: monster.util.dateToBeginningOfGregorianDay(fromDate),
created_to: monster.util.dateToEndOfGregorianDay(toDate)
});

self.balanceGenericGetRows(ledgerName, parent, filters, showCredits, callback);
Expand Down

0 comments on commit 0d579fe

Please sign in to comment.