mirror of
https://github.com/bringout/oca-ocb-pos.git
synced 2026-04-24 14:21:59 +02:00
7 lines
191 B
Python
7 lines
191 B
Python
from odoo import fields, models
|
|
|
|
|
|
class ResPartner(models.Model):
|
|
_inherit = 'res.partner'
|
|
|
|
loyalty_card_count = fields.Integer(groups='base.group_user,point_of_sale.group_pos_user')
|