stock_sms/models/res_config_settings.py

15 lines
528 B
Python
Raw Permalink Normal View History

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import fields, models
class ResConfigSettings(models.TransientModel):
_inherit = 'res.config.settings'
stock_move_sms_validation = fields.Boolean(
related='company_id.stock_move_sms_validation',
string='SMS Validation with stock move', readonly=False)
stock_sms_confirmation_template_id = fields.Many2one(
related='company_id.stock_sms_confirmation_template_id', readonly=False)