🎉 Initialize module repository
This commit is contained in:
12
models/res_config_settings.py
Normal file
12
models/res_config_settings.py
Normal file
@@ -0,0 +1,12 @@
|
||||
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.",
|
||||
)
|
||||
Reference in New Issue
Block a user