13 lines
409 B
Python
13 lines
409 B
Python
from odoo import fields, models
|
|
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
_inherit = "res.config.settings"
|
|
|
|
mvd_tcg_max_file_upload_size_mb = fields.Integer(
|
|
string="Maximum File Upload Size (MB)",
|
|
config_parameter="mvd_tcg_base.max_file_upload_size_mb",
|
|
default=256,
|
|
help="Maximum file size exposed to the Odoo web client for uploads in TCG workflows.",
|
|
)
|