15 lines
528 B
Python
15 lines
528 B
Python
|
# -*- 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)
|