[WIP]pms_api_rest: external clients API

This commit is contained in:
Darío Lodeiros
2023-07-11 11:09:05 +02:00
parent 1cea2c946f
commit 6c107d5371
5 changed files with 264 additions and 24 deletions

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