From 593da25cdbd4d5b76f47daa9754e00dfd3b69174 Mon Sep 17 00:00:00 2001 From: Oliver Larsson Date: Thu, 29 Aug 2024 01:44:37 +0200 Subject: [PATCH] fix: CSV export not including item notes (#180) --- backend/internal/core/services/reporting/io_sheet.go | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/internal/core/services/reporting/io_sheet.go b/backend/internal/core/services/reporting/io_sheet.go index 21d07d1b9..cc97bd9be 100644 --- a/backend/internal/core/services/reporting/io_sheet.go +++ b/backend/internal/core/services/reporting/io_sheet.go @@ -222,6 +222,7 @@ func (s *IOSheet) ReadItems(ctx context.Context, items []repo.ItemOut, GID uuid. SoldPrice: item.SoldPrice, SoldNotes: item.SoldNotes, + Notes: item.Notes, Fields: customFields, } }