From da0f5cb63c7675d2f616c34c5034bb60475abdf4 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Thu, 25 May 2017 12:20:37 -0500 Subject: [PATCH] Fix bug where batch notes weren't saved upon creation --- tailbone/views/batch/core.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tailbone/views/batch/core.py b/tailbone/views/batch/core.py index c4185182..d96d84a7 100644 --- a/tailbone/views/batch/core.py +++ b/tailbone/views/batch/core.py @@ -290,6 +290,7 @@ class BatchMasterView(MasterView): kwargs['created_by'] = batch.created_by elif batch.created_by_uuid: kwargs['created_by_uuid'] = batch.created_by_uuid + kwargs['notes'] = batch.notes if hasattr(batch, 'filename'): kwargs['filename'] = batch.filename return kwargs