mirror of
https://github.com/bringout/oca-ocb-sale.git
synced 2026-04-26 23:52:05 +02:00
11 lines
323 B
Python
11 lines
323 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import models
|
|
|
|
class LoyaltyCard(models.Model):
|
|
_inherit = 'loyalty.card'
|
|
|
|
def action_coupon_share(self):
|
|
self.ensure_one()
|
|
return self.env['coupon.share'].create_share_action(coupon=self)
|