You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
2.3 KiB
56 lines
2.3 KiB
# -*- coding: utf-8 -*-
|
|
###############################################################################
|
|
#
|
|
# Cybrosys Technologies Pvt. Ltd.
|
|
#
|
|
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
|
|
# Author: Aysha Shalin (odoo@cybrosys.com)
|
|
#
|
|
# You can modify it under the terms of the GNU LESSER
|
|
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
|
|
#
|
|
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
|
|
# (LGPL v3) along with this program.
|
|
# If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
###############################################################################
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
""" Inheriting res.config.settings model for adding custom fields in
|
|
settings."""
|
|
_inherit = "res.config.settings"
|
|
|
|
out_of_stock = fields.Boolean(
|
|
string='Out of stock',
|
|
config_parameter='inventory_stock_dashboard_odoo.out_of_stock',
|
|
help="Enable if out of stock")
|
|
out_of_stock_quantity = fields.Integer(
|
|
string='Quantity',
|
|
config_parameter='inventory_stock_dashboard_odoo.out_of_stock_quantity',
|
|
required=True,
|
|
help='Set the minimum quantity for considering a product as out of'
|
|
'stock.')
|
|
dead_stock_bol = fields.Boolean(
|
|
string='Enable dead stock',
|
|
config_parameter='inventory_stock_dashboard_odoo.dead_stock_bol',
|
|
help='Enable if you want to consider dead stock.')
|
|
dead_stock = fields.Integer(
|
|
string='Dead stock',
|
|
config_parameter='inventory_stock_dashboard_odoo.dead_stock',
|
|
required=True,
|
|
help='Set the threshold quantity for considering a product as dead '
|
|
'stock.')
|
|
dead_stock_type = fields.Selection(
|
|
[('day', 'Day'), ('week', 'Week'), ('month', 'Month')],
|
|
string='Type', default='day',
|
|
config_parameter='inventory_stock_dashboard_odoo.dead_stock_type',
|
|
required=True,
|
|
help='Select the time period to determine dead stock based on product'
|
|
'sales.')
|
|
|