Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cherry pick #3

Open
wants to merge 1 commit into
base: 8.0
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions l10n_nl_xaf_auditfile_export/models/xaf_auditfile_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,12 @@ def check_periods(self):
@api.multi
def button_generate(self):
self.date_generated = fields.Datetime.now(self)
auditfile_template = self._get_auditfile_template()
xml = auditfile_template.render(values={
'self': self,
})

xml = self.env.ref('l10n_nl_xaf_auditfile_export.auditfile_template')\
.render(values={
'self': self.sudo(),
})

# the following is dealing with the fact that qweb templates don't like
# namespaces, but we need the correct namespaces for validation
# we inject them at parse time in order not to traverse the document
Expand Down