Añadidos módulos de OCA/e-commerce para la tienda online
This commit is contained in:
parent
10bfdb5a49
commit
c14ed5b4ef
99 changed files with 5359 additions and 0 deletions
|
@ -0,0 +1,13 @@
|
|||
# Copyright 2019 Tecnativa - Sergio Teruel
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class ResConfigSettings(models.TransientModel):
|
||||
_inherit = 'res.config.settings'
|
||||
|
||||
inventory_availability = fields.Selection(selection_add=[
|
||||
('always_no_lock',
|
||||
'Show inventory on website and allow sales if not enough stock'),
|
||||
])
|
Loading…
Add table
Add a link
Reference in a new issue