añadido pos_product_available desde odoo app

https://apps.odoo.com/apps/modules/12.0/pos_product_available/
This commit is contained in:
santiky 2021-08-22 22:57:36 +02:00
parent 89d58a2aff
commit f1c8cf8414
Signed by: snt
GPG key ID: A9FD34930EADBE71
24 changed files with 1030 additions and 0 deletions

View 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
)