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.

76 lines
3.0 KiB

  1. # -*- coding: utf-8 -*-
  2. ###############################################################################
  3. #
  4. # OpenERP, Open Source Management Solution
  5. # This module copyright (C) 2010 - 2014 Savoir-faire Linux
  6. # (<http://www.savoirfairelinux.com>).
  7. #
  8. # This program is free software: you can redistribute it and/or modify
  9. # it under the terms of the GNU Affero General Public License as
  10. # published by the Free Software Foundation, either version 3 of the
  11. # License, or (at your option) any later version.
  12. #
  13. # This program is distributed in the hope that it will be useful,
  14. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. # GNU Affero General Public License for more details.
  17. #
  18. # You should have received a copy of the GNU Affero General Public License
  19. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. #
  21. ###############################################################################
  22. from openerp.osv import orm
  23. class PartnerAgedStatement(orm.Model):
  24. _inherit = 'res.partner'
  25. def action_aged_statement_send(self, cr, uid, ids, context=None):
  26. # This function opens a window to compose an email,
  27. # with the partner aged statemen template message loaded by default
  28. # This option should only be used for a single id at a time.
  29. assert len(ids) == 1
  30. ir_model_data = self.pool.get('ir.model.data')
  31. try:
  32. template_id = ir_model_data.get_object_reference(
  33. cr, uid,
  34. 'account_partner_aged_statement_webkit',
  35. 'email_template_aged_statement')[1]
  36. except ValueError:
  37. template_id = False
  38. try:
  39. compose_form_id = ir_model_data.get_object_reference(
  40. cr, uid, 'mail', 'email_compose_message_wizard_form')[1]
  41. except ValueError:
  42. compose_form_id = False
  43. # When doing search with related company, it creates a bug saying
  44. # the xx id doesn't exist in mail.message.
  45. # The default_parent_id is used by mail.compose.message model
  46. # to get the message_id. It must be false when doing search with
  47. # related company
  48. if 'default_parent_id' in context:
  49. del context['default_parent_id']
  50. ctx = dict(context)
  51. ctx.update({
  52. 'default_model': 'res.partner',
  53. 'default_res_id': ids[0],
  54. 'default_use_template': bool(template_id),
  55. 'default_template_id': template_id,
  56. 'default_composition_mode': 'comment',
  57. })
  58. # Full explanation of this return is here :
  59. # http://stackoverflow.com/questions/12634031
  60. return {
  61. 'type': 'ir.actions.act_window',
  62. 'view_type': 'form',
  63. 'view_mode': 'form',
  64. 'res_model': 'mail.compose.message',
  65. 'views': [(compose_form_id, 'form')],
  66. 'view_id': compose_form_id,
  67. 'target': 'new',
  68. 'context': ctx,
  69. }