You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

155 lines
5.9 KiB

  1. # Author: Damien Crier
  2. # Author: Julien Coux
  3. # Copyright 2016 Camptocamp SA
  4. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
  5. from odoo import models, fields, api
  6. class OpenItemsReportWizard(models.TransientModel):
  7. """Open items report wizard."""
  8. _name = "open.items.report.wizard"
  9. _description = "Open Items Report Wizard"
  10. _inherit = 'account_financial_report_abstract_wizard'
  11. company_id = fields.Many2one(
  12. comodel_name='res.company',
  13. default=lambda self: self.env.user.company_id,
  14. required=False,
  15. string='Company'
  16. )
  17. date_at = fields.Date(required=True,
  18. default=fields.Date.context_today)
  19. date_from = fields.Date(string='Date From')
  20. target_move = fields.Selection([('posted', 'All Posted Entries'),
  21. ('all', 'All Entries')],
  22. string='Target Moves',
  23. required=True,
  24. default='posted')
  25. account_ids = fields.Many2many(
  26. comodel_name='account.account',
  27. string='Filter accounts',
  28. domain=[('reconcile', '=', True)],
  29. required=True,
  30. )
  31. hide_account_at_0 = fields.Boolean(
  32. string='Hide account ending balance at 0', default=True,
  33. help='Use this filter to hide an account or a partner '
  34. 'with an ending balance at 0. '
  35. 'If partners are filtered, '
  36. 'debits and credits totals will not match the trial balance.'
  37. )
  38. receivable_accounts_only = fields.Boolean()
  39. payable_accounts_only = fields.Boolean()
  40. partner_ids = fields.Many2many(
  41. comodel_name='res.partner',
  42. string='Filter partners',
  43. default=lambda self: self._default_partners(),
  44. )
  45. foreign_currency = fields.Boolean(
  46. string='Show foreign currency',
  47. help='Display foreign currency for move lines, unless '
  48. 'account currency is not setup through chart of accounts '
  49. 'will display initial and final balance in that currency.',
  50. default=lambda self: self._default_foreign_currency(),
  51. )
  52. show_partner_details = fields.Boolean(
  53. string='Show Partner Details',
  54. default=True,
  55. )
  56. def _default_foreign_currency(self):
  57. return self.env.user.has_group('base.group_multi_currency')
  58. @api.onchange('company_id')
  59. def onchange_company_id(self):
  60. """Handle company change."""
  61. if self.company_id and self.partner_ids:
  62. self.partner_ids = self.partner_ids.filtered(
  63. lambda p: p.company_id == self.company_id or
  64. not p.company_id)
  65. if self.company_id and self.account_ids:
  66. if self.receivable_accounts_only or self.payable_accounts_only:
  67. self.onchange_type_accounts_only()
  68. else:
  69. self.account_ids = self.account_ids.filtered(
  70. lambda a: a.company_id == self.company_id)
  71. res = {'domain': {'account_ids': [],
  72. 'partner_ids': []}}
  73. if not self.company_id:
  74. return res
  75. else:
  76. res['domain']['account_ids'] += [
  77. ('company_id', '=', self.company_id.id)]
  78. res['domain']['partner_ids'] += self._get_partner_ids_domain()
  79. return res
  80. @api.onchange('account_ids')
  81. def onchange_account_ids(self):
  82. return {'domain': {'account_ids': [('reconcile', '=', True)]}}
  83. @api.onchange('receivable_accounts_only', 'payable_accounts_only')
  84. def onchange_type_accounts_only(self):
  85. """Handle receivable/payable accounts only change."""
  86. domain = [('company_id', '=', self.company_id.id)]
  87. if self.receivable_accounts_only or self.payable_accounts_only:
  88. if self.receivable_accounts_only and self.payable_accounts_only:
  89. domain += [('internal_type', 'in', ('receivable', 'payable'))]
  90. elif self.receivable_accounts_only:
  91. domain += [('internal_type', '=', 'receivable')]
  92. elif self.payable_accounts_only:
  93. domain += [('internal_type', '=', 'payable')]
  94. self.account_ids = self.env['account.account'].search(domain)
  95. else:
  96. self.account_ids = None
  97. @api.multi
  98. def _print_report(self, report_type):
  99. self.ensure_one()
  100. data = self._prepare_report_open_items()
  101. if report_type == 'xlsx':
  102. report_name = 'a_f_r.report_open_items_xlsx'
  103. else:
  104. report_name = 'account_financial_report.open_items'
  105. return self.env['ir.actions.report'].search(
  106. [('report_name', '=', report_name),
  107. ('report_type', '=', report_type)], limit=1).report_action(
  108. self, data=data)
  109. @api.multi
  110. def button_export_html(self):
  111. self.ensure_one()
  112. report_type = 'qweb-html'
  113. return self._export(report_type)
  114. @api.multi
  115. def button_export_pdf(self):
  116. self.ensure_one()
  117. report_type = 'qweb-pdf'
  118. return self._export(report_type)
  119. @api.multi
  120. def button_export_xlsx(self):
  121. self.ensure_one()
  122. report_type = 'xlsx'
  123. return self._export(report_type)
  124. def _prepare_report_open_items(self):
  125. self.ensure_one()
  126. return {
  127. 'wizard_id': self.id,
  128. 'date_at': fields.Date.to_string(self.date_at),
  129. 'date_from': self.date_from or False,
  130. 'only_posted_moves': self.target_move == 'posted',
  131. 'hide_account_at_0': self.hide_account_at_0,
  132. 'foreign_currency': self.foreign_currency,
  133. 'show_partner_details': self.show_partner_details,
  134. 'company_id': self.company_id.id,
  135. 'target_move': self.target_move,
  136. 'account_ids': self.account_ids.ids,
  137. 'partner_ids': self.partner_ids.ids or [],
  138. }
  139. def _export(self, report_type):
  140. return self._print_report(report_type)