mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
[WIP]pms_api_rest: external clients API
This commit is contained in:
11
pms_api_rest/models/product_product.py
Normal file
11
pms_api_rest/models/product_product.py
Normal file
@@ -0,0 +1,11 @@
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class ProductProduct(models.Model):
|
||||
_inherit = "product.product"
|
||||
|
||||
channel_available = fields.Boolean(
|
||||
string="Sale Channel Available",
|
||||
help="If checked, the product will be available for Channel",
|
||||
default=False,
|
||||
)
|
||||
Reference in New Issue
Block a user