Fixed so that the default date of the journal entries is calculated based on the client-side date instead of the server-side date.

This commit is contained in:
依瑪貓 2024-06-02 00:14:03 +08:00
parent 99564c02d0
commit d89f64f123
2 changed files with 7 additions and 1 deletions

View File

@ -67,7 +67,6 @@ def show_add_journal_entry_form(journal_entry_type: JournalEntryType) -> str:
form.validate() form.validate()
else: else:
form = journal_entry_op.form() form = journal_entry_op.form()
form.date.data = dt.date.today()
return journal_entry_op.render_create_template(form) return journal_entry_op.render_create_template(form)

View File

@ -135,6 +135,13 @@ class JournalEntryForm {
}; };
this.#resetDeleteCurrencyButtons(); this.#resetDeleteCurrencyButtons();
this.#initializeDragAndDropReordering(); this.#initializeDragAndDropReordering();
if (this.#date.value === "") {
const now = new Date();
const year = String(now.getFullYear()).padStart(4, "0");
const month = String(now.getMonth() + 1).padStart(2, "0");
const day = String(now.getDate()).padStart(2, "0");
this.#date.value = `${year}-${month}-${day}`;
}
this.#date.onchange = () => this.#validateDate(); this.#date.onchange = () => this.#validateDate();
this.#note.onchange = () => this.#validateNote(); this.#note.onchange = () => this.#validateNote();
this.#element.onsubmit = () => { this.#element.onsubmit = () => {