mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 01:32:38 +00:00
361 lines
11 KiB
JavaScript
361 lines
11 KiB
JavaScript
$('#save-consume-button').on('click', function(e)
|
|
{
|
|
e.preventDefault();
|
|
|
|
var jsonForm = $('#consume-form').serializeJSON();
|
|
Grocy.FrontendHelpers.BeginUiBusy("consume-form");
|
|
|
|
if ($("#use_specific_stock_entry").is(":checked"))
|
|
{
|
|
jsonForm.amount = 1;
|
|
}
|
|
|
|
var apiUrl = 'stock/products/' + jsonForm.product_id + '/consume';
|
|
|
|
var jsonData = {};
|
|
jsonData.amount = jsonForm.amount;
|
|
jsonData.spoiled = $('#spoiled').is(':checked');
|
|
|
|
if ($("#use_specific_stock_entry").is(":checked"))
|
|
{
|
|
jsonData.stock_entry_id = jsonForm.specific_stock_entry;
|
|
}
|
|
|
|
if (Grocy.FeatureFlags.GROCY_FEATURE_FLAG_RECIPES && Grocy.Components.RecipePicker.GetValue().toString().length > 0)
|
|
{
|
|
jsonData.recipe_id = Grocy.Components.RecipePicker.GetValue();
|
|
}
|
|
|
|
var bookingResponse = null;
|
|
|
|
Grocy.Api.Get('stock/products/' + jsonForm.product_id,
|
|
function(productDetails)
|
|
{
|
|
Grocy.Api.Post(apiUrl, jsonData,
|
|
function(result)
|
|
{
|
|
bookingResponse = result;
|
|
|
|
var addBarcode = GetUriParam('addbarcodetoselection');
|
|
if (addBarcode !== undefined)
|
|
{
|
|
var existingBarcodes = productDetails.product.barcode || '';
|
|
if (existingBarcodes.length === 0)
|
|
{
|
|
productDetails.product.barcode = addBarcode;
|
|
}
|
|
else
|
|
{
|
|
productDetails.product.barcode += ',' + addBarcode;
|
|
}
|
|
|
|
Grocy.Api.Put('objects/products/' + productDetails.product.id, productDetails.product,
|
|
function(result)
|
|
{
|
|
$("#flow-info-addbarcodetoselection").addClass("d-none");
|
|
$('#barcode-lookup-disabled-hint').addClass('d-none');
|
|
window.history.replaceState({ }, document.title, U("/consume"));
|
|
},
|
|
function(xhr)
|
|
{
|
|
console.error(xhr);
|
|
}
|
|
);
|
|
}
|
|
|
|
$("#specific_stock_entry").find("option").remove().end().append("<option></option>");
|
|
if ($("#use_specific_stock_entry").is(":checked"))
|
|
{
|
|
$("#use_specific_stock_entry").click();
|
|
}
|
|
|
|
if (productDetails.product.enable_tare_weight_handling == 1)
|
|
{
|
|
var successMessage = __t('Removed %1$s of %2$s from stock', Math.abs(jsonForm.amount - parseFloat(productDetails.product.tare_weight)) + " " + __n(jsonForm.amount, productDetails.quantity_unit_stock.name, productDetails.quantity_unit_stock.name_plural), productDetails.product.name) + '<br><a class="btn btn-secondary btn-sm mt-2" href="#" onclick="UndoStockBooking(' + bookingResponse.id + ')"><i class="fas fa-undo"></i> ' + __t("Undo") + '</a>';
|
|
}
|
|
else
|
|
{
|
|
var successMessage =__t('Removed %1$s of %2$s from stock', Math.abs(jsonForm.amount) + " " + __n(jsonForm.amount, productDetails.quantity_unit_stock.name, productDetails.quantity_unit_stock.name_plural), productDetails.product.name) + '<br><a class="btn btn-secondary btn-sm mt-2" href="#" onclick="UndoStockBooking(' + bookingResponse.id + ')"><i class="fas fa-undo"></i> ' + __t("Undo") + '</a>';
|
|
}
|
|
|
|
if (GetUriParam("embedded") !== undefined)
|
|
{
|
|
window.parent.postMessage(WindowMessageBag("ProductChanged", jsonForm.product_id), Grocy.BaseUrl);
|
|
window.parent.postMessage(WindowMessageBag("ShowSuccessMessage", successMessage), Grocy.BaseUrl);
|
|
window.parent.postMessage(WindowMessageBag("CloseAllModals"), Grocy.BaseUrl);
|
|
}
|
|
else
|
|
{
|
|
|
|
Grocy.FrontendHelpers.EndUiBusy("consume-form");
|
|
toastr.success(successMessage);
|
|
|
|
$("#amount").attr("min", "1");
|
|
$("#amount").attr("max", "999999");
|
|
$("#amount").attr("step", "1");
|
|
$("#amount").parent().find(".invalid-feedback").text(__t('The amount cannot be lower than %s', '1'));
|
|
$('#amount').val(Grocy.UserSettings.stock_default_consume_amount);
|
|
$('#amount_qu_unit').text("");
|
|
$("#tare-weight-handling-info").addClass("d-none");
|
|
Grocy.Components.ProductPicker.Clear();
|
|
if (Grocy.FeatureFlags.GROCY_FEATURE_FLAG_RECIPES)
|
|
{
|
|
Grocy.Components.RecipePicker.Clear();
|
|
}
|
|
Grocy.Components.ProductPicker.GetInputElement().focus();
|
|
Grocy.FrontendHelpers.ValidateForm('consume-form');
|
|
}
|
|
},
|
|
function(xhr)
|
|
{
|
|
Grocy.FrontendHelpers.EndUiBusy("consume-form");
|
|
console.error(xhr);
|
|
}
|
|
);
|
|
},
|
|
function(xhr)
|
|
{
|
|
Grocy.FrontendHelpers.EndUiBusy("consume-form");
|
|
console.error(xhr);
|
|
}
|
|
);
|
|
});
|
|
|
|
$('#save-mark-as-open-button').on('click', function(e)
|
|
{
|
|
e.preventDefault();
|
|
|
|
var jsonForm = $('#consume-form').serializeJSON();
|
|
Grocy.FrontendHelpers.BeginUiBusy("consume-form");
|
|
|
|
if ($("#use_specific_stock_entry").is(":checked"))
|
|
{
|
|
jsonForm.amount = 1;
|
|
}
|
|
|
|
var apiUrl = 'stock/products/' + jsonForm.product_id + '/open';
|
|
|
|
jsonData = { };
|
|
jsonData.amount = jsonForm.amount;
|
|
|
|
if ($("#use_specific_stock_entry").is(":checked"))
|
|
{
|
|
jsonData.stock_entry_id = jsonForm.specific_stock_entry;
|
|
}
|
|
|
|
Grocy.Api.Get('stock/products/' + jsonForm.product_id,
|
|
function(productDetails)
|
|
{
|
|
Grocy.Api.Post(apiUrl, jsonData,
|
|
function(result)
|
|
{
|
|
$("#specific_stock_entry").find("option").remove().end().append("<option></option>");
|
|
if ($("#use_specific_stock_entry").is(":checked"))
|
|
{
|
|
$("#use_specific_stock_entry").click();
|
|
}
|
|
|
|
Grocy.FrontendHelpers.EndUiBusy("consume-form");
|
|
toastr.success(__t('Marked %1$s of %2$s as opened', jsonForm.amount + " " + __n(jsonForm.amount, productDetails.quantity_unit_stock.name, productDetails.quantity_unit_stock.name_plural), productDetails.product.name) + '<br><a class="btn btn-secondary btn-sm mt-2" href="#" onclick="UndoStockBooking(' + result.id + ')"><i class="fas fa-undo"></i> ' + __t("Undo") + '</a>');
|
|
|
|
$('#amount').val(Grocy.UserSettings.stock_default_consume_amount);
|
|
Grocy.Components.ProductPicker.Clear();
|
|
Grocy.Components.ProductPicker.GetInputElement().focus();
|
|
Grocy.FrontendHelpers.ValidateForm('consume-form');
|
|
},
|
|
function(xhr)
|
|
{
|
|
Grocy.FrontendHelpers.EndUiBusy("consume-form");
|
|
console.error(xhr);
|
|
}
|
|
);
|
|
},
|
|
function(xhr)
|
|
{
|
|
Grocy.FrontendHelpers.EndUiBusy("consume-form");
|
|
console.error(xhr);
|
|
}
|
|
);
|
|
});
|
|
|
|
Grocy.Components.ProductPicker.GetPicker().on('change', function(e)
|
|
{
|
|
$("#specific_stock_entry").find("option").remove().end().append("<option></option>");
|
|
if ($("#use_specific_stock_entry").is(":checked"))
|
|
{
|
|
$("#use_specific_stock_entry").click();
|
|
}
|
|
|
|
var productId = $(e.target).val();
|
|
|
|
if (productId)
|
|
{
|
|
Grocy.Components.ProductCard.Refresh(productId);
|
|
|
|
Grocy.Api.Get('stock/products/' + productId,
|
|
function(productDetails)
|
|
{
|
|
$('#amount').attr('max', productDetails.stock_amount);
|
|
$('#amount_qu_unit').text(productDetails.quantity_unit_stock.name);
|
|
|
|
if (productDetails.product.allow_partial_units_in_stock == 1)
|
|
{
|
|
$("#amount").attr("min", "0.01");
|
|
$("#amount").attr("step", "0.01");
|
|
$("#amount").parent().find(".invalid-feedback").text(__t('The amount must be between %1$s and %2$s', 0.01.toLocaleString(), parseFloat(productDetails.stock_amount).toLocaleString()));
|
|
}
|
|
else
|
|
{
|
|
$("#amount").attr("min", "1");
|
|
$("#amount").attr("step", "1");
|
|
$("#amount").parent().find(".invalid-feedback").text(__t('The amount must be between %1$s and %2$s', "1", parseFloat(productDetails.stock_amount).toLocaleString()));
|
|
}
|
|
|
|
if (productDetails.product.enable_tare_weight_handling == 1)
|
|
{
|
|
$("#amount").attr("min", productDetails.product.tare_weight);
|
|
$('#amount').attr('max', parseFloat(productDetails.stock_amount) + parseFloat(productDetails.product.tare_weight));
|
|
$("#amount").parent().find(".invalid-feedback").text(__t('The amount must be between %1$s and %2$s', parseFloat(productDetails.product.tare_weight).toLocaleString(), (parseFloat(productDetails.stock_amount) + parseFloat(productDetails.product.tare_weight)).toLocaleString()));
|
|
$("#tare-weight-handling-info").removeClass("d-none");
|
|
}
|
|
else
|
|
{
|
|
$("#tare-weight-handling-info").addClass("d-none");
|
|
}
|
|
|
|
if ((parseFloat(productDetails.stock_amount) || 0) === 0)
|
|
{
|
|
Grocy.Components.ProductPicker.Clear();
|
|
Grocy.FrontendHelpers.ValidateForm('consume-form');
|
|
Grocy.Components.ProductPicker.ShowCustomError(__t('This product is not in stock'));
|
|
Grocy.Components.ProductPicker.GetInputElement().focus();
|
|
}
|
|
else
|
|
{
|
|
Grocy.Components.ProductPicker.HideCustomError();
|
|
Grocy.FrontendHelpers.ValidateForm('consume-form');
|
|
$('#amount').focus();
|
|
}
|
|
|
|
if (productDetails.stock_amount == productDetails.stock_amount_opened)
|
|
{
|
|
$("#save-mark-as-open-button").addClass("disabled");
|
|
}
|
|
else
|
|
{
|
|
$("#save-mark-as-open-button").removeClass("disabled");
|
|
}
|
|
},
|
|
function(xhr)
|
|
{
|
|
console.error(xhr);
|
|
}
|
|
);
|
|
|
|
Grocy.Api.Get("stock/products/" + productId + '/entries',
|
|
function(stockEntries)
|
|
{
|
|
stockEntries.forEach(stockEntry =>
|
|
{
|
|
var openTxt = __t("Not opened");
|
|
if (stockEntry.open == 1)
|
|
{
|
|
openTxt = __t("Opened");
|
|
}
|
|
|
|
for (i = 0; i < stockEntry.amount; i++)
|
|
{
|
|
// Do this only for the first 50 entries to prevent a very long loop (is more anytime needed)?
|
|
if (i > 50)
|
|
{
|
|
break;
|
|
}
|
|
|
|
$("#specific_stock_entry").append($("<option>", {
|
|
value: stockEntry.stock_id,
|
|
text: __t("Expires on %1$s; Bought on %2$s", moment(stockEntry.best_before_date).format("YYYY-MM-DD"), moment(stockEntry.purchased_date).format("YYYY-MM-DD")) + "; " + openTxt
|
|
}));
|
|
}
|
|
});
|
|
},
|
|
function(xhr)
|
|
{
|
|
console.error(xhr);
|
|
}
|
|
);
|
|
}
|
|
});
|
|
|
|
$('#amount').val(Grocy.UserSettings.stock_default_consume_amount);
|
|
Grocy.Components.ProductPicker.GetPicker().trigger('change');
|
|
Grocy.Components.ProductPicker.GetInputElement().focus();
|
|
Grocy.FrontendHelpers.ValidateForm('consume-form');
|
|
|
|
$('#amount').on('focus', function(e)
|
|
{
|
|
$(this).select();
|
|
});
|
|
|
|
$('#consume-form input').keyup(function(event)
|
|
{
|
|
Grocy.FrontendHelpers.ValidateForm('consume-form');
|
|
});
|
|
|
|
$('#consume-form select').change(function(event)
|
|
{
|
|
Grocy.FrontendHelpers.ValidateForm('consume-form');
|
|
});
|
|
|
|
$('#consume-form input').keydown(function(event)
|
|
{
|
|
if (event.keyCode === 13) //Enter
|
|
{
|
|
event.preventDefault();
|
|
|
|
if (document.getElementById('consume-form').checkValidity() === false) //There is at least one validation error
|
|
{
|
|
return false;
|
|
}
|
|
else
|
|
{
|
|
$('#save-consume-button').click();
|
|
}
|
|
}
|
|
});
|
|
|
|
$("#use_specific_stock_entry").on("change", function()
|
|
{
|
|
var value = $(this).is(":checked");
|
|
if (value)
|
|
{
|
|
$("#specific_stock_entry").removeAttr("disabled");
|
|
$("#amount").attr("disabled", "");
|
|
$("#amount").val(1);
|
|
$("#amount").removeAttr("required");
|
|
$("#specific_stock_entry").attr("required", "");
|
|
}
|
|
else
|
|
{
|
|
$("#specific_stock_entry").attr("disabled", "");
|
|
$("#amount").removeAttr("disabled");
|
|
$("#amount").attr("required", "");
|
|
$("#specific_stock_entry").removeAttr("required");
|
|
}
|
|
|
|
Grocy.FrontendHelpers.ValidateForm("consume-form");
|
|
});
|
|
|
|
function UndoStockBooking(bookingId)
|
|
{
|
|
Grocy.Api.Post('stock/bookings/' + bookingId.toString() + '/undo', { },
|
|
function(result)
|
|
{
|
|
toastr.success(__t("Booking successfully undone"));
|
|
},
|
|
function(xhr)
|
|
{
|
|
console.error(xhr);
|
|
}
|
|
);
|
|
};
|