Removed setting the redundant "entryType" dataset from the "onAddNew" and "onEdit" methods of the JournalEntryEditor class. It is not used anymore.
This commit is contained in:
parent
c9453d3023
commit
46e34bb89a
@ -463,7 +463,6 @@ class JournalEntryEditor {
|
|||||||
this.entry = null;
|
this.entry = null;
|
||||||
this.#side = side;
|
this.#side = side;
|
||||||
this.entryType = this.#side.entryType;
|
this.entryType = this.#side.entryType;
|
||||||
this.#element.dataset.entryType = side.entryType;
|
|
||||||
this.isNeedOffset = false;
|
this.isNeedOffset = false;
|
||||||
this.#originalEntryContainer.classList.add("d-none");
|
this.#originalEntryContainer.classList.add("d-none");
|
||||||
this.#originalEntryControl.classList.remove("accounting-not-empty");
|
this.#originalEntryControl.classList.remove("accounting-not-empty");
|
||||||
@ -508,7 +507,6 @@ class JournalEntryEditor {
|
|||||||
this.entry = entry;
|
this.entry = entry;
|
||||||
this.#side = entry.side;
|
this.#side = entry.side;
|
||||||
this.entryType = this.#side.entryType;
|
this.entryType = this.#side.entryType;
|
||||||
this.#element.dataset.entryType = entry.entryType;
|
|
||||||
this.isNeedOffset = entry.isOriginalEntry();
|
this.isNeedOffset = entry.isOriginalEntry();
|
||||||
if (originalEntryId === "") {
|
if (originalEntryId === "") {
|
||||||
this.#originalEntryContainer.classList.add("d-none");
|
this.#originalEntryContainer.classList.add("d-none");
|
||||||
|
Loading…
Reference in New Issue
Block a user