Fixed consume page location dropdown handling (fixes #2328)

This commit is contained in:
Bernd Bestel
2023-09-02 10:17:43 +02:00
parent b2295ce6d2
commit b0d6e24bd4
2 changed files with 77 additions and 11 deletions

View File

@@ -389,27 +389,36 @@ Grocy.Components.ProductPicker.GetPicker().on('change', function(e)
{
var setDefault = 0;
var stockAmountAtDefaultLocation = 0;
var addedLocations = [];
stockLocations.forEach(stockLocation =>
{
if (stockLocation.location_id == defaultLocationId)
{
$("#location_id").append($("<option>", {
value: stockLocation.location_id,
text: stockLocation.location_name + " (" + __t("Default location") + ")"
}));
$("#location_id").val(defaultLocationId);
$("#location_id").trigger('change');
setDefault = 1;
if (!addedLocations.includes(stockLocation.location_id))
{
$("#location_id").append($("<option>", {
value: stockLocation.location_id,
text: stockLocation.location_name + " (" + __t("Default location") + ")"
}));
$("#location_id").val(defaultLocationId);
$("#location_id").trigger('change');
setDefault = 1;
}
stockAmountAtDefaultLocation += stockLocation.amount;
}
else
{
$("#location_id").append($("<option>", {
value: stockLocation.location_id,
text: stockLocation.location_name
}));
if (!addedLocations.includes(stockLocation.location_id))
{
$("#location_id").append($("<option>", {
value: stockLocation.location_id,
text: stockLocation.location_name
}));
}
}
addedLocations.push(stockLocation.location_id);
if (setDefault == 0)
{
$("#location_id").val(defaultLocationId);