Skip to content

Commit

Permalink
gitfix
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinkhao committed Nov 14, 2023
1 parent 2e74690 commit 27939b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wms_connector/models/synchronize_exportable_mixin.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def _get_export_data(self):
def synchronize_export(self):
res = self.env["attachment.queue"]
for records, data in self._get_export_data():
vals = records._format_to_exportfile(records._get_export_name, data)
vals = records._format_to_exportfile(records._get_export_name(), data)
attachment = self.env["attachment.queue"].create(vals)
records.track_export(attachment)
res += attachment
Expand Down

0 comments on commit 27939b2

Please sign in to comment.