Fixed the JavaScript filterAccountOptions function in the transaction form so that the accounting list is not hidden when there is no account in use.
This commit is contained in:
parent
26bb16dd40
commit
5613657c8f
@ -530,17 +530,17 @@ function filterAccountOptions(prefix) {
|
|||||||
const more = document.getElementById(prefix + "-more");
|
const more = document.getElementById(prefix + "-more");
|
||||||
const queryNoResult = document.getElementById(prefix + "-option-no-result");
|
const queryNoResult = document.getElementById(prefix + "-option-no-result");
|
||||||
const codesInUse = getAccountCodeUsedInForm();
|
const codesInUse = getAccountCodeUsedInForm();
|
||||||
let hasAnyMatched = false;
|
let shouldAnyShow = false;
|
||||||
options.forEach(function (option) {
|
options.forEach(function (option) {
|
||||||
const isMatched = shouldAccountOptionShow(option, more, codesInUse, query);
|
const shouldShow = shouldAccountOptionShow(option, more, codesInUse, query);
|
||||||
if (isMatched) {
|
if (shouldShow) {
|
||||||
option.classList.remove("d-none");
|
option.classList.remove("d-none");
|
||||||
hasAnyMatched = true;
|
shouldAnyShow = true;
|
||||||
} else {
|
} else {
|
||||||
option.classList.add("d-none");
|
option.classList.add("d-none");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
if (!hasAnyMatched) {
|
if (!shouldAnyShow && more.classList.contains("d-none")) {
|
||||||
optionList.classList.add("d-none");
|
optionList.classList.add("d-none");
|
||||||
queryNoResult.classList.remove("d-none");
|
queryNoResult.classList.remove("d-none");
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user