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.

124 lines
5.4 KiB

  1. # -*- coding: utf-8 -*-
  2. from datetime import datetime
  3. from openerp import api, fields, models
  4. class account_invoice(models.Model):
  5. _inherit = 'account.invoice'
  6. subscription_request = fields.Many2one('subscription.request',
  7. string='Subscription request')
  8. release_capital_request = fields.Boolean(
  9. string='Release of capital request')
  10. @api.model
  11. def _prepare_refund(self, invoice, date_invoice=None, date=None,
  12. description=None, journal_id=None):
  13. values = super(account_invoice, self)._prepare_refund(
  14. invoice, date_invoice, date,
  15. description, journal_id)
  16. values['release_capital_request'] = self.release_capital_request
  17. return values
  18. def create_user(self, partner):
  19. user_obj = self.env['res.users']
  20. email = partner.email
  21. if partner.is_company:
  22. email = partner.company_email
  23. user = user_obj.search([('login', '=', email)])
  24. if not user:
  25. user = user_obj.search([('login', '=', email),
  26. ('active', '=', False)])
  27. if user:
  28. user.sudo().write({'active': True})
  29. else:
  30. user_values = {'partner_id': partner.id, 'login': email}
  31. user_id = user_obj.sudo()._signup_create_user(user_values)
  32. user = user_obj.browse(user_id)
  33. user.sudo().with_context({'create_user': True}).action_reset_password()
  34. return True
  35. def set_cooperator_effective(self, effective_date):
  36. # flag the partner as a effective member
  37. mail_template_id = 'easy_my_coop.email_template_certificat'
  38. # if not yet cooperator we generate a cooperator number
  39. if self.partner_id.member is False and self.partner_id.old_member is False:
  40. sequence_id = self.env.ref('easy_my_coop.sequence_subscription', False)
  41. sub_reg_num = sequence_id.next_by_id()
  42. self.partner_id.write({
  43. 'member': True, 'old_member': False,
  44. 'cooperator_register_number': int(sub_reg_num)})
  45. elif self.partner_id.old_member:
  46. self.partner_id.write({'member': True, 'old_member': False})
  47. else:
  48. mail_template_id = 'easy_my_coop.email_template_certificat_increase'
  49. sequence_operation = self.env.ref('easy_my_coop.sequence_register_operation', False)
  50. sub_reg_operation = sequence_operation.next_by_id()
  51. certificat_email_template = self.env.ref(mail_template_id, False)
  52. for line in self.invoice_line_ids:
  53. self.env['subscription.register'].create({
  54. 'name': sub_reg_operation,
  55. 'register_number_operation': int(sub_reg_operation),
  56. 'partner_id': self.partner_id.id,
  57. 'quantity': line.quantity,
  58. 'share_product_id': line.product_id.id,
  59. 'share_unit_price': line.price_unit,
  60. 'date': effective_date,
  61. 'type': 'subscription'})
  62. self.env['share.line'].create({
  63. 'share_number': line.quantity,
  64. 'share_product_id': line.product_id.id,
  65. 'partner_id': self.partner_id.id,
  66. 'share_unit_price': line.price_unit,
  67. 'effective_date': effective_date
  68. })
  69. if line.product_id.mail_template:
  70. certificat_email_template = line.product_id.mail_template
  71. # we send the email with the certificat in attachment
  72. certificat_email_template.send_mail(self.partner_id.id, False)
  73. if self.company_id.create_user:
  74. self.create_user(self.partner_id)
  75. return True
  76. def post_process_confirm_paid(self, effective_date):
  77. self.set_cooperator_effective(effective_date)
  78. return True
  79. @api.multi
  80. def confirm_paid(self):
  81. for invoice in self:
  82. super(account_invoice, invoice).confirm_paid()
  83. # we check if there is an open refund for this invoice. in this
  84. # case we don't run the process_subscription function as the
  85. # invoice has been reconciled with a refund and not a payment.
  86. refund = self.search([('type', '=', 'out_refund'),
  87. ('origin', '=', invoice.move_name)])
  88. if invoice.partner_id.cooperator and invoice.release_capital_request \
  89. and invoice.type == 'out_invoice' and not refund:
  90. # take the effective date from the payment.
  91. # by default the confirmation date is the payment date
  92. effective_date = datetime.now().strftime("%d/%m/%Y")
  93. if invoice.payment_move_line_ids:
  94. move_line = invoice.payment_move_line_ids[0]
  95. effective_date = move_line.date
  96. invoice.subscription_request.state = 'paid'
  97. invoice.post_process_confirm_paid(effective_date)
  98. # if there is a open refund we mark the subscription as cancelled
  99. elif invoice.partner_id.cooperator and invoice.release_capital_request \
  100. and invoice.type == 'out_invoice' and refund:
  101. invoice.subscription_request.state = 'cancelled'
  102. return True