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.

122 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. # TODO replace self by partner
  21. email = self.email
  22. if self.is_company:
  23. email = self.company_email
  24. user = user_obj.search([('login', '=', email)])
  25. if not user:
  26. user = user_obj.search([('login', '=', email),
  27. ('active', '=', False)])
  28. if user:
  29. user.sudo().write({'active': True})
  30. else:
  31. user_values = {'partner_id': partner.id, 'login': email}
  32. user_id = user_obj.sudo()._signup_create_user(user_values)
  33. user = user_obj.browse(user_id)
  34. user.sudo().with_context({'create_user': True}).action_reset_password()
  35. return True
  36. def set_cooperator_effective(self, effective_date):
  37. # flag the partner as a effective member
  38. mail_template_id = 'easy_my_coop.email_template_certificat'
  39. # if not yet cooperator we generate a cooperator number
  40. if self.partner_id.member is False and self.partner_id.old_member is False:
  41. sequence_id = self.env.ref('easy_my_coop.sequence_subscription', False)
  42. sub_reg_num = sequence_id.next_by_id()
  43. self.partner_id.write({
  44. 'member': True, 'old_member': False,
  45. 'cooperator_register_number': int(sub_reg_num)})
  46. elif self.partner_id.old_member:
  47. self.partner_id.write({'member': True, 'old_member': False})
  48. else:
  49. mail_template_id = 'easy_my_coop.email_template_certificat_increase'
  50. sequence_operation = self.env.ref('easy_my_coop.sequence_register_operation', False)
  51. sub_reg_operation = sequence_operation.next_by_id()
  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. certificat_email_template = self.env.ref(mail_template_id, False)
  70. # we send the email with the certificat in attachment
  71. certificat_email_template.send_mail(self.partner_id.id, False)
  72. if self.company_id.create_user:
  73. self.create_user(self.partner_id)
  74. return True
  75. def post_process_confirm_paid(self, effective_date):
  76. self.set_cooperator_effective(effective_date)
  77. return True
  78. @api.multi
  79. def confirm_paid(self):
  80. for invoice in self:
  81. super(account_invoice, invoice).confirm_paid()
  82. # we check if there is an open refund for this invoice. in this
  83. # case we don't run the process_subscription function as the
  84. # invoice has been reconciled with a refund and not a payment.
  85. refund = self.search([('type', '=', 'out_refund'),
  86. ('origin', '=', invoice.move_name)])
  87. if invoice.partner_id.cooperator and invoice.release_capital_request \
  88. and invoice.type == 'out_invoice' and not refund:
  89. # take the effective date from the payment.
  90. # by default the confirmation date is the payment date
  91. effective_date = datetime.now().strftime("%d/%m/%Y")
  92. if invoice.payment_move_line_ids:
  93. move_line = invoice.payment_move_line_ids[0]
  94. effective_date = move_line.date
  95. invoice.subscription_request.state = 'paid'
  96. invoice.post_process_confirm_paid(effective_date)
  97. # if there is a open refund we mark the subscription as cancelled
  98. elif invoice.partner_id.cooperator and invoice.release_capital_request \
  99. and invoice.type == 'out_invoice' and refund:
  100. invoice.subscription_request.state = 'cancelled'
  101. return True