Skip to content

Commit

Permalink
[FIX] printing_auto_base: collect all attachments
Browse files Browse the repository at this point in the history
  • Loading branch information
jbaudoux committed Sep 19, 2023
1 parent 6edf253 commit fd51a2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion printing_auto_base/models/printing_auto.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def _get_content(self, records):
if generate_data_func:
records = self._get_record(records)
for record in records:
content.append(generate_data_func(record)[0])
content += generate_data_func(record)
return content

def _prepare_attachment_domain(self, record):
Expand Down

0 comments on commit fd51a2a

Please sign in to comment.