Skip to content

Commit

Permalink
Changed how datetime was fixed for various timezones
Browse files Browse the repository at this point in the history
  • Loading branch information
Isaac-GC committed Feb 1, 2024
1 parent 9b2382a commit 64ad73b
Show file tree
Hide file tree
Showing 5 changed files with 52 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .prettierignore
@@ -1,4 +1,5 @@
**/types.ts
**/dist_electron
**/dummy/*.json
**/.github/ISSUE_TEMPLATE/*.yml
**/.github/ISSUE_TEMPLATE/*.yml
**/patches/v0_21_0/*
6 changes: 6 additions & 0 deletions backend/patches/index.ts
Expand Up @@ -5,6 +5,7 @@ import fixRoundOffAccount from './fixRoundOffAccount';
import testPatch from './testPatch';
import updateSchemas from './updateSchemas';
import setPaymentReferenceType from './setPaymentReferenceType';
import fixLedgerDateTime from './v0_21_0/fixLedgerDateTime';

export default [
{ name: 'testPatch', version: '0.5.0-beta.0', patch: testPatch },
Expand Down Expand Up @@ -34,4 +35,9 @@ export default [
version: '0.20.1',
patch: setPaymentReferenceType,
},
{
name: 'fixLedgerDateTime',
version: '0.21.1',
patch: fixLedgerDateTime,
},
] as Patch[];
34 changes: 34 additions & 0 deletions backend/patches/v0_21_0/fixLedgerDateTime.ts
@@ -0,0 +1,34 @@
import { DatabaseManager } from '../../database/manager';

/* eslint-disable */
async function execute(dm: DatabaseManager) {
await dm.db!.knex!('AccountingLedgerEntry')
.select('name', 'date')
.then((trx: Array<{name: string; date: Date;}> ) => {
trx.forEach(async entry => {
const entryDate = new Date(entry['date']);
const timeZoneOffset = entryDate.getTimezoneOffset();
const offsetMinutes = timeZoneOffset % 60;
const offsetHours = (timeZoneOffset - offsetMinutes) / 60;

let daysToAdd = 0; // If behind or at GMT/Zulu time, don't need to add a day
if (timeZoneOffset < 0) {
// If ahead of GMT/Zulu time, need to advance a day forward first
daysToAdd = 1;
}

entryDate.setDate(entryDate.getDate() + daysToAdd);
entryDate.setHours(0 - offsetHours);
entryDate.setMinutes(0 - offsetMinutes);
entryDate.setSeconds(0);
entryDate.setMilliseconds(0);

await dm.db!.knex!('AccountingLedgerEntry')
.where({ name: entry['name'] })
.update({ date: entryDate.toISOString() });
});
});
}

export default { execute, beforeMigrate: true };
/* eslint-enable */
15 changes: 9 additions & 6 deletions models/Transactional/LedgerPosting.ts
Expand Up @@ -91,18 +91,21 @@ export class LedgerPosting {
}

// Timezone inconsistency fix (very ugly code for now)
let entryDateTime = this.refDoc.date as string | Date;
const entryDateTime = this.refDoc.date as string | Date;
let dateTimeValue: Date;
if (typeof entryDateTime === 'string' || entryDateTime instanceof String) {
dateTimeValue = new Date(entryDateTime);
} else {
dateTimeValue = entryDateTime;
}
let dtFixedValue = dateTimeValue;
let dtMinutes = dtFixedValue.getTimezoneOffset() % 60;
let dtHours = (dtFixedValue.getTimezoneOffset() - dtMinutes) / 60;
dtFixedValue.setHours(dtFixedValue.getHours() - dtHours);
dtFixedValue.setMinutes(dtFixedValue.getMinutes() - dtMinutes);
const dtFixedValue = dateTimeValue;
const dtMinutes = dtFixedValue.getTimezoneOffset() % 60;
const dtHours = (dtFixedValue.getTimezoneOffset() - dtMinutes) / 60;
// Forcing the time to always be set to 00:00.000 for locale time
dtFixedValue.setHours(0 - dtHours);
dtFixedValue.setMinutes(0 - dtMinutes);
dtFixedValue.setSeconds(0);
dtFixedValue.setMilliseconds(0);

// end ugly timezone fix code

Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "frappe-books",
"version": "0.21.0",
"version": "0.21.1",
"description": "Simple book-keeping app for everyone",
"author": {
"name": "Frappe Technologies Pvt. Ltd.",
Expand Down

0 comments on commit 64ad73b

Please sign in to comment.