mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 09:39:57 +00:00
Fixed number input min/max amount handling Only (auto) save valid user inputs More filters on the stock journal pages Save the last price per used barcode and preselect that as a total price on purchase if not empty (closes #1131) Don't apply conversions for only_check_single_unit_in_stock ingredients (fixes #1120) Render shopping list userfields (closes #1052) Fixed Focus when adding included recipes (closes #1019) Order all base objects with NOCASE (closes #1086)
81 lines
3.3 KiB
JavaScript
81 lines
3.3 KiB
JavaScript
$(".numberpicker-down-button").unbind('click').on("click", function()
|
|
{
|
|
var inputElement = $(this).parent().parent().find('input[type="number"]');
|
|
inputElement.val(parseFloat(inputElement.val()) - 1);
|
|
inputElement.trigger('keyup');
|
|
inputElement.trigger('change');
|
|
});
|
|
|
|
$(".numberpicker-up-button").unbind('click').on("click", function()
|
|
{
|
|
var inputElement = $(this).parent().parent().find('input[type="number"]');
|
|
inputElement.val(parseFloat(inputElement.val()) + 1);
|
|
inputElement.trigger('keyup');
|
|
inputElement.trigger('change');
|
|
});
|
|
|
|
$(".numberpicker").on("keyup", function()
|
|
{
|
|
if ($(this).attr("data-not-equal") && !$(this).attr("data-not-equal").toString().isEmpty() && $(this).attr("data-not-equal") == $(this).val())
|
|
{
|
|
$(this)[0].setCustomValidity("error");
|
|
}
|
|
else
|
|
{
|
|
$(this)[0].setCustomValidity("");
|
|
}
|
|
});
|
|
|
|
$(".numberpicker").each(function()
|
|
{
|
|
new MutationObserver(function(mutations)
|
|
{
|
|
mutations.forEach(function(mutation)
|
|
{
|
|
if (mutation.type == "attributes" && (mutation.attributeName == "min" || mutation.attributeName == "max" || mutation.attributeName == "data-not-equal" || mutation.attributeName == "data-initialised"))
|
|
{
|
|
var element = $(mutation.target);
|
|
var min = element.attr("min");
|
|
var decimals = element.attr("data-decimals");
|
|
|
|
var max = "";
|
|
if (element.hasAttr("max"))
|
|
{
|
|
max = element.attr("max");
|
|
}
|
|
|
|
if (element.hasAttr("data-not-equal"))
|
|
{
|
|
var notEqual = element.attr("data-not-equal");
|
|
|
|
if (notEqual != "NaN")
|
|
{
|
|
if (max.isEmpty())
|
|
{
|
|
element.parent().find(".invalid-feedback").text(__t("This cannot be lower than %1$s or equal %2$s and needs to be a valid number with max. %3$s decimal places", parseFloat(min).toLocaleString(undefined, { minimumFractionDigits: 0, maximumFractionDigits: decimals }), parseFloat(notEqual).toLocaleString(undefined, { minimumFractionDigits: 0, maximumFractionDigits: decimals }), decimals));
|
|
}
|
|
else
|
|
{
|
|
element.parent().find(".invalid-feedback").text(__t("This must be between %1$s and %2$s, cannot equal %3$s and needs to be a valid number with max. %4$s decimal places", parseFloat(min).toLocaleString(undefined, { minimumFractionDigits: 0, maximumFractionDigits: decimals }), parseFloat(max).toLocaleString(undefined, { minimumFractionDigits: 0, maximumFractionDigits: decimals }), parseFloat(notEqual).toLocaleString(undefined, { minimumFractionDigits: decimals, maximumFractionDigits: decimals }), decimals));
|
|
}
|
|
|
|
return;
|
|
}
|
|
}
|
|
|
|
if (max.isEmpty())
|
|
{
|
|
element.parent().find(".invalid-feedback").text(__t("This cannot be lower than %1$s and needs to be a valid number with max. %2$s decimal places", parseFloat(min).toLocaleString(undefined, { minimumFractionDigits: 0, maximumFractionDigits: decimals }), decimals));
|
|
}
|
|
else
|
|
{
|
|
element.parent().find(".invalid-feedback").text(__t("This must between %1$s and %2$s and needs to be a valid number with max. %3$s decimal places", parseFloat(min).toLocaleString(undefined, { minimumFractionDigits: 0, maximumFractionDigits: decimals }), parseFloat(max).toLocaleString(undefined, { minimumFractionDigits: 0, maximumFractionDigits: decimals }), decimals));
|
|
}
|
|
}
|
|
});
|
|
}).observe(this, {
|
|
attributes: true
|
|
});
|
|
});
|
|
$(".numberpicker").attr("data-initialised", "true"); // Dummy change to trigger MutationObserver above once
|