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.

71 lines
2.7 KiB

  1. # -*- encoding: 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. import time
  23. from openerp.osv import orm
  24. class PartnerAgedStatement(orm.Model):
  25. _inherit = 'res.partner'
  26. def action_aged_statement_send(self, cr, uid, ids, context=None):
  27. # This function opens a window to compose an email,
  28. # with the partner aged statemen template message loaded by default
  29. # This option should only be used for a single id at a time.
  30. assert len(ids) == 1
  31. ir_model_data = self.pool.get('ir.model.data')
  32. try:
  33. template_id = ir_model_data.get_object_reference(
  34. cr, uid,
  35. 'account_partner_aged_statement_webkit',
  36. 'email_template_aged_statement')[1]
  37. except ValueError:
  38. template_id = False
  39. try:
  40. compose_form_id = ir_model_data.get_object_reference(
  41. cr, uid, 'mail', 'email_compose_message_wizard_form')[1]
  42. except ValueError:
  43. compose_form_id = False
  44. ctx = dict(context)
  45. ctx.update({
  46. 'default_model': 'res.partner',
  47. 'default_res_id': ids[0],
  48. 'default_use_template': bool(template_id),
  49. 'default_template_id': template_id,
  50. 'default_composition_mode': 'comment',
  51. })
  52. # Full explanation of this return is here :
  53. # http://stackoverflow.com/questions/12634031
  54. return {
  55. 'type': 'ir.actions.act_window',
  56. 'view_type': 'form',
  57. 'view_mode': 'form',
  58. 'res_model': 'mail.compose.message',
  59. 'views': [(compose_form_id, 'form')],
  60. 'view_id': compose_form_id,
  61. 'target': 'new',
  62. 'context': ctx,
  63. }