Skip to content

Commit

Permalink
[5.4] MSPB-379: set timezone on balance filters (#1259)
Browse files Browse the repository at this point in the history
Co-authored-by: Pilar Candia <[email protected]>
  • Loading branch information
masmerino13 and pcandia committed Jan 17, 2025
1 parent dc2c270 commit b9ec866
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 b9ec866

Please sign in to comment.