mirror of
https://github.com/grocy/grocy.git
synced 2025-04-28 17:23:56 +00:00
- Only refresh contextual number/datetime info/formatting where needed (closes #513) - Also refresh correlated stock journal entries on undo (closes #471) - Prefill "New amount" with the current stock amount on the inventory page (closes #434) - Ensure that the location_id of the stock and stock_log tables is never empty after migration 95 (references #421) - Load initial values of the /stockedit form server side to improve loading performance (references #421) - Use more or less the same input ordering as on the purchase page for the /stockedit page (references #421) - Also display the "Compact view" button on the shopping list page when FEATURE_FLAG_SHOPPINGLIST_MULTIPLE_LISTS is disabled (references #453) - Ensure that the currently active sidebar menu item is visible - Optimized sidebar menu item grouping/spacing - Properly order the API documentation route groups and put the "by-barcode" routes into a separate group - Updated dependencies - Pulled translations from Transifex - Prepared changelog for next release
207 lines
6.8 KiB
JavaScript
207 lines
6.8 KiB
JavaScript
Grocy.Components.ProductCard = { };
|
|
|
|
Grocy.Components.ProductCard.Refresh = function(productId)
|
|
{
|
|
Grocy.Api.Get('stock/products/' + productId,
|
|
function(productDetails)
|
|
{
|
|
var stockAmount = productDetails.stock_amount || '0';
|
|
var stockAmountOpened = productDetails.stock_amount_opened || '0';
|
|
$('#productcard-product-name').text(productDetails.product.name);
|
|
$('#productcard-product-description').html(productDetails.product.description);
|
|
$('#productcard-product-stock-amount').text(stockAmount);
|
|
$('#productcard-product-stock-qu-name').text(__n(stockAmount, productDetails.quantity_unit_stock.name, productDetails.quantity_unit_stock.name_plural));
|
|
$('#productcard-product-last-purchased').text((productDetails.last_purchased || '2999-12-31').substring(0, 10));
|
|
$('#productcard-product-last-purchased-timeago').attr("datetime", productDetails.last_purchased || '2999-12-31');
|
|
$('#productcard-product-last-used').text((productDetails.last_used || '2999-12-31').substring(0, 10));
|
|
$('#productcard-product-last-used-timeago').attr("datetime", productDetails.last_used || '2999-12-31');
|
|
if (productDetails.location != null)
|
|
{
|
|
$('#productcard-product-location').text(productDetails.location.name);
|
|
}
|
|
$('#productcard-product-spoil-rate').text((parseFloat(productDetails.spoil_rate_percent) / 100).toLocaleString(undefined, { style: "percent" }));
|
|
|
|
if (productDetails.is_aggregated_amount == 1)
|
|
{
|
|
$('#productcard-product-stock-amount-aggregated').text(productDetails.stock_amount_aggregated);
|
|
$('#productcard-product-stock-qu-name-aggregated').text(__n(productDetails.stock_amount_aggregated, productDetails.quantity_unit_stock.name, productDetails.quantity_unit_stock.name_plural));
|
|
|
|
if (productDetails.stock_amount_opened_aggregated > 0)
|
|
{
|
|
$('#productcard-product-stock-opened-amount-aggregated').text(__t('%s opened', productDetails.stock_amount_opened_aggregated));
|
|
}
|
|
else
|
|
{
|
|
$('#productcard-product-stock-opened-amount-aggregated').text("");
|
|
}
|
|
|
|
$("#productcard-aggregated-amounts").removeClass("d-none");
|
|
}
|
|
else
|
|
{
|
|
$("#productcard-aggregated-amounts").addClass("d-none");
|
|
}
|
|
|
|
if (productDetails.product.description != null && !productDetails.product.description.isEmpty())
|
|
{
|
|
$("#productcard-product-description-wrapper").removeClass("d-none");
|
|
}
|
|
else
|
|
{
|
|
$("#productcard-product-description-wrapper").addClass("d-none");
|
|
}
|
|
|
|
if (productDetails.average_shelf_life_days == -1)
|
|
{
|
|
$('#productcard-product-average-shelf-life').text(__t("Unknown"));
|
|
}
|
|
else if (parseInt(productDetails.average_shelf_life_days) > 73000) // > 200 years aka forever
|
|
{
|
|
$('#productcard-product-average-shelf-life').text(__t("Unlimited"));
|
|
}
|
|
else
|
|
{
|
|
$('#productcard-product-average-shelf-life').text(moment.duration(productDetails.average_shelf_life_days, "days").humanize());
|
|
}
|
|
|
|
if (stockAmountOpened > 0)
|
|
{
|
|
$('#productcard-product-stock-opened-amount').text(__t('%s opened', stockAmountOpened));
|
|
}
|
|
else
|
|
{
|
|
$('#productcard-product-stock-opened-amount').text("");
|
|
}
|
|
|
|
$('#productcard-product-edit-button').attr("href", U("/product/" + productDetails.product.id.toString() + '?' + 'returnto=' + encodeURIComponent(Grocy.CurrentUrlRelative)));
|
|
$('#productcard-product-journal-button').attr("href", U("/stockjournal?embedded&product=" + productDetails.product.id.toString()));
|
|
$('#productcard-product-edit-button').removeClass("disabled");
|
|
$('#productcard-product-journal-button').removeClass("disabled");
|
|
|
|
if (productDetails.last_price !== null)
|
|
{
|
|
$('#productcard-product-last-price').text(Number.parseFloat(productDetails.last_price).toLocaleString() + ' ' + Grocy.Currency);
|
|
}
|
|
else
|
|
{
|
|
$('#productcard-product-last-price').text(__t('Unknown'));
|
|
}
|
|
|
|
if (productDetails.product.picture_file_name !== null && !productDetails.product.picture_file_name.isEmpty())
|
|
{
|
|
$("#productcard-product-picture").removeClass("d-none");
|
|
$("#productcard-product-picture").attr("src", U('/api/files/productpictures/' + btoa(productDetails.product.picture_file_name) + '?force_serve_as=picture&best_fit_width=400'));
|
|
}
|
|
else
|
|
{
|
|
$("#productcard-product-picture").addClass("d-none");
|
|
}
|
|
|
|
EmptyElementWhenMatches('#productcard-product-last-purchased-timeago', __t('timeago_nan'));
|
|
EmptyElementWhenMatches('#productcard-product-last-used-timeago', __t('timeago_nan'));
|
|
RefreshContextualTimeago(".productcard");
|
|
},
|
|
function(xhr)
|
|
{
|
|
console.error(xhr);
|
|
}
|
|
);
|
|
|
|
if (Grocy.FeatureFlags.GROCY_FEATURE_FLAG_STOCK_PRICE_TRACKING)
|
|
{
|
|
Grocy.Api.Get('stock/products/' + productId + '/price-history',
|
|
function(priceHistoryDataPoints)
|
|
{
|
|
if (priceHistoryDataPoints.length > 0)
|
|
{
|
|
$("#productcard-product-price-history-chart").removeClass("d-none");
|
|
$("#productcard-no-price-data-hint").addClass("d-none");
|
|
|
|
Grocy.Components.ProductCard.ReInitPriceHistoryChart();
|
|
priceHistoryDataPoints.forEach((dataPoint) =>
|
|
{
|
|
Grocy.Components.ProductCard.PriceHistoryChart.data.labels.push(moment(dataPoint.date).toDate());
|
|
|
|
var dataset = Grocy.Components.ProductCard.PriceHistoryChart.data.datasets[0];
|
|
dataset.data.push(dataPoint.price);
|
|
});
|
|
Grocy.Components.ProductCard.PriceHistoryChart.update();
|
|
}
|
|
else
|
|
{
|
|
$("#productcard-product-price-history-chart").addClass("d-none");
|
|
$("#productcard-no-price-data-hint").removeClass("d-none");
|
|
}
|
|
},
|
|
function(xhr)
|
|
{
|
|
console.error(xhr);
|
|
}
|
|
);
|
|
}
|
|
};
|
|
|
|
Grocy.Components.ProductCard.ReInitPriceHistoryChart = function()
|
|
{
|
|
if (typeof Grocy.Components.ProductCard.PriceHistoryChart !== "undefined")
|
|
{
|
|
Grocy.Components.ProductCard.PriceHistoryChart.destroy();
|
|
}
|
|
|
|
var format = 'YYYY-MM-DD';
|
|
Grocy.Components.ProductCard.PriceHistoryChart = new Chart(document.getElementById("productcard-product-price-history-chart"), {
|
|
type: "line",
|
|
data: {
|
|
labels: [ //Date objects
|
|
// Will be populated in Grocy.Components.ProductCard.Refresh
|
|
],
|
|
datasets: [{
|
|
data: [
|
|
// Will be populated in Grocy.Components.ProductCard.Refresh
|
|
],
|
|
fill: false,
|
|
borderColor: '%s7a2b8'
|
|
}]
|
|
},
|
|
options: {
|
|
scales: {
|
|
xAxes: [{
|
|
type: 'time',
|
|
time: {
|
|
parser: format,
|
|
round: 'day',
|
|
tooltipFormat: format,
|
|
unit: 'day',
|
|
unitStepSize: 10,
|
|
displayFormats: {
|
|
'day': format
|
|
}
|
|
},
|
|
ticks: {
|
|
autoSkip: true,
|
|
maxRotation: 0
|
|
}
|
|
}],
|
|
yAxes: [{
|
|
ticks: {
|
|
beginAtZero: true
|
|
}
|
|
}]
|
|
},
|
|
legend: {
|
|
display: false
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
$("#productcard-product-description").on("shown.bs.collapse", function()
|
|
{
|
|
$(".expandable-text").find("a[data-toggle='collapse']").text(__t("Show less"));
|
|
})
|
|
|
|
$("#productcard-product-description").on("hidden.bs.collapse", function()
|
|
{
|
|
$(".expandable-text").find("a[data-toggle='collapse']").text(__t("Show more"));
|
|
})
|