diff --git a/easy_my_coop_online_payment/models/coop.py b/easy_my_coop_online_payment/models/coop.py index 649fde0..aacbd36 100644 --- a/easy_my_coop_online_payment/models/coop.py +++ b/easy_my_coop_online_payment/models/coop.py @@ -1,8 +1,13 @@ # -*- coding: utf-8 -*- from openerp import api, fields, models, _ -class subscription_request(models.Model): +class SubscriptionRequest(models.Model): _inherit = 'subscription.request' payment_type = fields.Selection([('online', 'Online'), - ('deferred', 'Deferred')], string='Payment Type') \ No newline at end of file + ('deferred', 'Deferred')], string='Payment Type') + + def send_capital_release_request(self, invoice): + if self.payment_type == 'deferred': + super(SubscriptionRequest, self).send_capital_release_request(invoice) + return True \ No newline at end of file