mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 17:45:39 +00:00
Fixed some localization strings Reviewed/optimized product deletion handling Add option to hide products from the stock overview page (closes #906) Prefill default_due_days also on the inventory page (closes #591) Added DataTables accent chinese-string plugin (closes #872) Show costs and calories per recipe ingredient (closes #1072) Fixed user permission saving (fixes #1099) User permissions should not have an effect for demo mode (closes #972) Handle QU conversion when consuming a substituation (child) product (fixes #1118) Consume/open any child product when the parent product is not in stock (closes #899) Added a retry camera barcode scanning button to product picker workflow (closes #736)
71 lines
1.9 KiB
JavaScript
71 lines
1.9 KiB
JavaScript
var choresJournalTable = $('#chores-journal-table').DataTable({
|
|
'paginate': true,
|
|
'order': [[1, 'desc']],
|
|
'columnDefs': [
|
|
{ 'orderable': false, 'targets': 0 },
|
|
{ 'searchable': false, "targets": 0 }
|
|
].concat($.fn.dataTable.defaults.columnDefs)
|
|
});
|
|
$('#chores-journal-table tbody').removeClass("d-none");
|
|
choresJournalTable.columns.adjust().draw();
|
|
|
|
$("#chore-filter").on("change", function()
|
|
{
|
|
var value = $(this).val();
|
|
var text = $("#chore-filter option:selected").text();
|
|
if (value === "all")
|
|
{
|
|
text = "";
|
|
}
|
|
|
|
choresJournalTable.column(1).search(text).draw();
|
|
});
|
|
|
|
$("#search").on("keyup", Delay(function()
|
|
{
|
|
var value = $(this).val();
|
|
if (value === "all")
|
|
{
|
|
value = "";
|
|
}
|
|
|
|
choresJournalTable.search(value).draw();
|
|
}, 200));
|
|
|
|
$("#clear-filter-button").on("click", function()
|
|
{
|
|
$("#search").val("");
|
|
$("#chore-filter").val("all");
|
|
choresJournalTable.column(1).search("").draw();
|
|
choresJournalTable.search("").draw();
|
|
});
|
|
|
|
if (typeof GetUriParam("chore") !== "undefined")
|
|
{
|
|
$("#chore-filter").val(GetUriParam("chore"));
|
|
$("#chore-filter").trigger("change");
|
|
}
|
|
|
|
$(document).on('click', '.undo-chore-execution-button', function(e)
|
|
{
|
|
e.preventDefault();
|
|
|
|
var element = $(e.currentTarget);
|
|
var executionId = $(e.currentTarget).attr('data-execution-id');
|
|
|
|
Grocy.Api.Post('chores/executions/' + executionId.toString() + '/undo', {},
|
|
function(result)
|
|
{
|
|
element.closest("tr").addClass("text-muted");
|
|
element.parent().siblings().find("span.name-anchor").addClass("text-strike-through").after("<br>" + __t("Undone on") + " " + moment().format("YYYY-MM-DD HH:mm:ss") + " <time class='timeago timeago-contextual' datetime='" + moment().format("YYYY-MM-DD HH:mm:ss") + "'></time>");
|
|
element.closest(".undo-stock-booking-button").addClass("disabled");
|
|
RefreshContextualTimeago("#chore-execution-" + executionId + "-row");
|
|
toastr.success(__t("Chore execution successfully undone"));
|
|
},
|
|
function(xhr)
|
|
{
|
|
console.error(xhr);
|
|
}
|
|
);
|
|
});
|