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.

28 lines
715 B

  1. # -*- coding: utf-8 -*-
  2. from openerp import api, models
  3. class SubscriptionRequest(models.Model):
  4. _inherit = 'subscription.request'
  5. def get_eater_vals(self, partner, share_product_id):
  6. vals = {}
  7. eater = share_product_id.eater
  8. if partner.is_company or partner.age < 18:
  9. eater = 'eater'
  10. vals['eater'] = eater
  11. return vals
  12. @api.one
  13. def validate_subscription_request(self):
  14. invoice = super(SubscriptionRequest, self).validate_subscription_request()[0]
  15. partner = invoice.partner_id
  16. vals = self.get_eater_vals(partner, self.share_product_id)
  17. partner.write(vals)
  18. return invoice