Files
odoo-usability/pos_usability/product.py
2017-11-22 09:52:51 +01:00

12 lines
331 B
Python

# -*- coding: utf-8 -*-
# © 2017 Akretion (Alexis de Lattre <alexis.delattre@akretion.com>)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo import fields, models
class ProductTemplate(models.Model):
_inherit = 'product.template'
available_in_pos = fields.Boolean(track_visibility='onchange')