mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 09:39:57 +00:00
* Stockjournal: Add "Done by" * Add API for Stock-Journal * Add "Journal-Summary" * Use ALTER TABLE * Moved the "Jounral summary" button to the stock journal page * Changed icon & context menu position for new stock journal summary page Co-authored-by: Bernd Bestel <bernd@berrnd.de>
7 lines
215 B
JavaScript
7 lines
215 B
JavaScript
var journalSummaryTable = $('#journal-summary-table').DataTable({
|
|
'paginate': true,
|
|
'order': [[0, 'desc']]
|
|
});
|
|
$('#journal-summary-table tbody').removeClass("d-none");
|
|
journalSummaryTable.columns.adjust().draw();
|