Browse Source

[FIX] Check constrains only if report_type == 'py3o'

14.0-report-py3o-pr-506
Laurent Mignon (ACSONE) 8 years ago
committed by default
parent
commit
7881e1f686
  1. 2
      report_py3o/models/ir_actions_report_xml.py

2
report_py3o/models/ir_actions_report_xml.py

@ -36,6 +36,8 @@ class IrActionsReportXml(models.Model):
@api.constrains("py3o_is_local_fusion", "py3o_server_id",
"py3o_filetype")
def _check_py3o_server_id(self):
if self.report_type != "py3o":
return
is_native = Formats().get_format(self.py3o_filetype).native
if ((not is_native or not self.py3o_is_local_fusion) and
not self.py3o_server_id):

Loading…
Cancel
Save