añadido pos_product_available desde odoo app
https://apps.odoo.com/apps/modules/12.0/pos_product_available/
This commit is contained in:
parent
89d58a2aff
commit
f1c8cf8414
24 changed files with 1030 additions and 0 deletions
2
pos_product_available/models/__init__.py
Normal file
2
pos_product_available/models/__init__.py
Normal file
|
@ -0,0 +1,2 @@
|
|||
# License MIT (https://opensource.org/licenses/MIT).
|
||||
from . import models
|
12
pos_product_available/models/models.py
Normal file
12
pos_product_available/models/models.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
# Copyright 2019 Kolushov Alexandr <https://it-projects.info/team/KolushovAlexandr>
|
||||
# License MIT (https://opensource.org/licenses/MIT).
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class PosConfig(models.Model):
|
||||
_inherit = "pos.config"
|
||||
|
||||
show_qtys = fields.Boolean(
|
||||
"Show Product Qtys", help="Show Product Qtys in POS", default=True
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue