GoodERP
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

55 lignes
1.9KB

  1. # © 2016 Elico Corp (www.elico-corp.com).
  2. # Copyright 2016 上海开阖软件有限公司 (http://www.osbzr.com)
  3. # © 2019 信莱德软件 (www.zhsunlight.cn).
  4. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
  5. from odoo import fields, models, api
  6. from odoo.tools.safe_eval import safe_eval
  7. from datetime import datetime
  8. class IrActionsReportXml(models.Model):
  9. _inherit = 'ir.actions.report'
  10. report_type = fields.Selection(selection_add=[('docx', 'Docx')],
  11. ondelete={'docx': 'cascade'})
  12. template_file = fields.Char('Template File')
  13. output_type = fields.Selection(
  14. [
  15. ('pdf', 'PDF'),
  16. ('docx', 'Docx'),
  17. ],
  18. 'Output Type',
  19. default='pdf',
  20. )
  21. @api.model
  22. def get_from_report_name(self, report_name, report_type):
  23. return self.search(
  24. [("report_name", "=", report_name),
  25. ("report_type", "=", report_type)])
  26. def render_docx(self, res_ids, data):
  27. self.ensure_one()
  28. if self.report_type != "docx":
  29. raise RuntimeError(
  30. "docx rendition is only available on docx report.\n"
  31. "(current: '{}', expected 'docx'".format(self.report_type))
  32. docx = self.env['gooderp.report.docx'].create({
  33. 'ir_actions_report_id': self.id
  34. })
  35. return docx.create_report(res_ids, data)
  36. def gen_report_download_filename(self, res_ids, data):
  37. """Override this function to change the name of the downloaded report
  38. """
  39. self.ensure_one()
  40. report = self.get_from_report_name(self.report_name, self.report_type)
  41. if report.print_report_name and not len(res_ids) > 1:
  42. obj = self.env[self.model].browse(res_ids)
  43. return safe_eval(report.print_report_name,
  44. {'object': obj, 'time': datetime})
  45. return "%s.%s" % (self.name, self.output_type)
上海开阖软件有限公司 沪ICP备12045867号-1