Renamed the isAccountOffsetNeeded parameter to isAccountNeedOffset in the saveSummaryWithAccount method of the JournalEntryEditor class.
This commit is contained in:
parent
2239ddfad1
commit
a643d9e811
@ -361,10 +361,10 @@ class JournalEntryEditor {
|
|||||||
* @param summary {string} the summary
|
* @param summary {string} the summary
|
||||||
* @param accountCode {string} the account code
|
* @param accountCode {string} the account code
|
||||||
* @param accountText {string} the account text
|
* @param accountText {string} the account text
|
||||||
* @param isAccountOffsetNeeded {boolean} true if the journal entries in the account need offset, or false otherwise
|
* @param isAccountNeedOffset {boolean} true if the journal entries in the account need offset, or false otherwise
|
||||||
*/
|
*/
|
||||||
saveSummaryWithAccount(summary, accountCode, accountText, isAccountOffsetNeeded) {
|
saveSummaryWithAccount(summary, accountCode, accountText, isAccountNeedOffset) {
|
||||||
this.isNeedOffset = isAccountOffsetNeeded;
|
this.isNeedOffset = isAccountNeedOffset;
|
||||||
this.#accountControl.classList.add("accounting-not-empty");
|
this.#accountControl.classList.add("accounting-not-empty");
|
||||||
this.accountCode = accountCode;
|
this.accountCode = accountCode;
|
||||||
this.accountText = accountText;
|
this.accountText = accountText;
|
||||||
|
Loading…
Reference in New Issue
Block a user