Skip to content

Commit 44ca153

Browse files
xisparamonski
andauthored
Report "Analysis per Service" is always creating the same PDF file (#1602)
Co-authored-by: Ramon Bartl <[email protected]>
1 parent 1d22038 commit 44ca153

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGES.rst

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ Changelog
2424

2525
**Fixed**
2626

27+
- #1602 Fix Report "Analysis per Service" is always creating the same PDF file
2728
- #1601 Fix Wrong url in client's sample templates listing
2829
- #1594 Fix System does not validate values from Results Options to be different
2930
- #1596 Fix Reports page shows the Display/State/Add menu

bika/lims/browser/reports/selection_macros/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ def select_state(self, workflow_id, field_id, field_title, style=None):
436436

437437
@ram.cache(_cache_key_select_state)
438438
def select_state_analysis(self, workflow_id, field_id, field_title, style=None):
439-
return self._select_state(workflow_id, field_title, field_title, style)
439+
return self._select_state(workflow_id, field_id, field_title, style)
440440

441441
def parse_state(self, request, workflow_id, field_id, field_title):
442442
val = request.form.get(field_id, "")

0 commit comments

Comments
 (0)