mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
10 lines
184 B
Python
10 lines
184 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from openerp import models, fields
|
|
|
|
|
|
class IrModel(models.Model):
|
|
_inherit = 'ir.model'
|
|
|
|
disable_quick_create = fields.Boolean('Disable quick create')
|