Initial commit: Odoo 18.0-20251222 extra-addons
This commit is contained in:
33
sale_block_no_stock/models/res_company.py
Executable file
33
sale_block_no_stock/models/res_company.py
Executable file
@@ -0,0 +1,33 @@
|
||||
# Copyright 2024 Moduon Team S.L.
|
||||
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl-3.0)
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class ResCompany(models.Model):
|
||||
_inherit = "res.company"
|
||||
|
||||
sale_line_field_block = fields.Many2one(
|
||||
comodel_name="ir.model.fields",
|
||||
string="Field to compare quantities on Sale Order Lines",
|
||||
help="This field will be checked to block the Sale Order Lines "
|
||||
"if the quantity is not enough",
|
||||
domain=[
|
||||
("model_id.model", "=", "sale.order.line"),
|
||||
(
|
||||
"name",
|
||||
"in",
|
||||
(
|
||||
"free_qty_today",
|
||||
"qty_available_today",
|
||||
"virtual_available_at_date",
|
||||
),
|
||||
),
|
||||
],
|
||||
)
|
||||
sale_line_block_allowed_groups = fields.Many2many(
|
||||
comodel_name="res.groups",
|
||||
string="Allowed Groups to bypass the block",
|
||||
help="These groups will be able to bypass the block on the Sale Order Lines "
|
||||
"if the quantity is not enough",
|
||||
)
|
||||
Reference in New Issue
Block a user