diff --git a/src/pages/Entry/EntryBuysTableDialog.vue b/src/pages/Entry/EntryBuysTableDialog.vue index 86a9b018f..7a6c4ac43 100644 --- a/src/pages/Entry/EntryBuysTableDialog.vue +++ b/src/pages/Entry/EntryBuysTableDialog.vue @@ -65,7 +65,7 @@ const entriesTableColumns = computed(() => [ ]); function downloadCSV(rows) { - const headers = ['id', 'itemFk', 'name', 'stickers', 'packing', 'comment']; + const headers = ['id', 'itemFk', 'name', 'stickers', 'packing', 'grouping', 'comment']; const csvRows = rows.map((row) => { const buy = row; @@ -77,6 +77,7 @@ function downloadCSV(rows) { item.name || '', buy.stickers, buy.packing, + buy.grouping, item.comment || '', ].join(','); });