Fix last purchased quantity not set when adding loose item

This commit is contained in:
James Chapman 2024-10-14 15:09:54 +01:00
parent d089065208
commit e5478a426b
Signed by: jamsch0
GPG Key ID: 765FE58130277547

View File

@ -51,7 +51,7 @@ export default class TransactionItemFormController extends Controller {
if (!price.value) {
price.value = option.getAttribute("data-price");
}
if (quantity.value || (!unit.value && quantity.value === "1")) {
if (!quantity.value || (!unit.value && quantity.value === "1")) {
quantity.value = option.getAttribute("data-quantity") || (!unit.value ? "1" : "");
}
}