frappe / books

Free Accounting Software
https://frappe.io/books
GNU Affero General Public License v3.0
2.86k stars 660 forks source link

fix date (hopefully) #699

Closed 18alantom closed 1 year ago

18alantom commented 1 year ago

In Date.vue local date was being converted to UTC before using only the date component.

Due to this depending on the timezone the date portion was a day ahead or behind local date, for example:

local datetime gmt-0400 = 2023-07-19 00:00:00
  utc datetime gmt+0000 = 2023-07-18 20:00:00

hopefully this PR corrects it.

closes #689