mirror of
https://github.com/bringout/oca-ocb-pos.git
synced 2026-04-24 14:42:00 +02:00
Initial commit: Pos packages
This commit is contained in:
commit
95dfb9edb0
1301 changed files with 264148 additions and 0 deletions
13
odoo-bringout-oca-ocb-pos_hr/pos_hr/models/pos_config.py
Normal file
13
odoo-bringout-oca-ocb-pos_hr/pos_hr/models/pos_config.py
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
from functools import partial
|
||||
|
||||
from odoo import models, fields
|
||||
|
||||
|
||||
class PosConfig(models.Model):
|
||||
_inherit = 'pos.config'
|
||||
|
||||
employee_ids = fields.Many2many(
|
||||
'hr.employee', string="Employees with access",
|
||||
help='If left empty, all employees can log in to the PoS session')
|
||||
Loading…
Add table
Add a link
Reference in a new issue