在Odoo的常规设置中添加

时间:2015-07-10 08:03:31

标签: python python-2.7 odoo-8

我正在编写自定义Odoo模块,其中一些配置可由用户设置。 我想在中添加一些设置 设置 - >配置 - >常规设置

因此,我创建了一个 .py ,其中包含:

from openerp.osv import fields, osv

class mymodule_configuration(osv.osv_memory):
   _inherit = 'res.config.settings'

  'test_field': fields.char(
                       string='Test Field',
                       required=True,
                             )

.XML

<record id="custom_id" model="ir.ui.view">
   <field name="name">General Settings</field>
   <field name="model">res.config.settings</field>
   <field name="arch" type="xml">
      <form string="General">
         <field name="test_field"/>
      </form>
   </field>
</record>

它不会更改常规设置

如果我添加引用ID,如:

<field name="inherit_id" ref="base_setup.view_general_configuration"/>

然后我收到了错误

  

ParseError:&#34; ValidateError   字段arch对约束失败:视图定义无效

     

错误详情:   字段module_portal不存在

任何人都可以帮我解决这个问题吗?

2 个答案:

答案 0 :(得分:1)

您无法将字段直接添加到现有视图中。 你应该试试这个,

<record id="custom_id" model="ir.ui.view">
    <field name="name">General Settings</field>
    <field name="model">res.config.settings</field>
    <field name="inherit_id" ref="base_setup.view_general_configuration"/>
    <field name="priority" eval="50" />
    <field name="arch" type="xml">
        <data>
            <div name="Existing div name" position="inside">
                <div name="new div name">
                    <field name="test_field" class="oe_inline" />
                    <label for="test_field"/>
                </div>
            </div>
        </data>
    </field>
</record>

答案 1 :(得分:0)

在Odoo中定义自定义设置

不幸的是,Odoo文档似乎没有包含有关向Odoo添加新配置选项的任何信息。因此,让我们填补空白。

定义模型

首先,您需要定义一个继承自res.config.settings的新模型:

class YourSettings(models.TransientModel):
    _inherit = 'res.config.settings'
    _name = 'your.config.settings'

这是TransientModel,也称为向导。不要期望它永久保存值。 TransientModels本质上仅在临时基础上存储值。您需要其他方法使它们永久化。

幸运的是,res.config.settings make this easy. First of all, you need to add some fields to your TransientModel`-您要定义的每个设置选项中的一个。 Odoo内置了对四种不同设置的支持。它根据字段名称区分它们。

“默认”设置

在以default_foo作为参数的模型上,名为foo的字段的值将被设置为名为default_model的字段的默认值。

class YourSettings(models.TransientModel):
    _inherit = 'res.config.settings'
    _name = 'your.config.settings'

    default_name = fields.Char(default_model='your.other.model')

这将使default_name字段的值成为模型name中字段your.other.model的全局默认值。

“组”设置

名为group_foo的布尔字段具有两个参数:group(默认为base.group_user)和implied_group。如果此字段的值为true,则组中定义的组将获得所有implied_group的权限。这与将组添加到另一个组的对象的implied_ids字段完全相同(据我所知,这也是一个未记录的功能)。这对于控制哪些用户组可以访问功能很有用。

class YourSettings(models.TransientModel):
    _inherit = 'res.config.settings'
    _name = 'your.config.settings'

    group_kill = fields.Boolean(
        group='your.secret_agents',
        implied_group='your.licence_to_kill'
    )

“模块”设置

名为module_foo的布尔字段在启用后将触发名为foo的模块的安装。

class YourSettings(models.TransientModel):
    _inherit = 'res.config.settings'
    _name = 'your.config.settings'

    # if enabled will install "spies" module
    module_spies = fields.Boolean()

其他设置

默认情况下,其他字段的值将被丢弃,但是您可以通过实现自己的保存方式来更改它。只需定义一个名为set_foo的方法即可(其中foo是一个任意字符串)。您也可以使用get_default_foo方法设置此类字段的初始值(foo的确切形式也不再相关)。

例如,如果要使用设置来控制链接到当前用户的公司的名称和电话号码:

class YourSettings(models.TransientModel):
    _inherit = 'res.config.settings'
    _name = 'your.config.settings'

    company_name = fields.Char()
    company_phone = fields.Char()

    @api.model
    def get_default_company_values(self, fields):
    """
    Method argument "fields" is a list of names
    of all available fields.
    """
        company = self.env.user.company_id
        return {
            'company_name': company.name,
            'company_phone': company.phone,
        }

    @api.one
    def set_company_values(self):
        company = self.env.user.company_id
        company.name = self.company_name
        company.phone = self.company_phone

定义视图

然后,您只需要为设置定义一个视图。让我们使用前面的示例:

<record id="your_configuration" model="ir.ui.view">
    <field name="name">Your configuration</field>
    <field name="model">your.config.settings</field>
    <field name="arch" type="xml">
        <form string="Your configuration" class="oe_form_configuration">
            <header>
                <button string="Save" type="object"
                    name="execute" class="oe_highlight"/>
                or
                <button string="Cancel" type="object"
                    name="cancel" class="oe_link"/>
            </header>
            <group string="Company">
                <label for="id" string="Name &amp; Phone"/>
                <div>
                    <div>
                        <label for="company_name"/>
                        <field name="company_name"/>
                    </div>
                    <div>
                        <label for="company_phone"/>
                        <field name="company_phone"/>
                    </div>
                </div>
            </group>
        </form>
    </field>
</record>

<record id="your_settings_action" model="ir.actions.act_window">
    <field name="name">Your configuration</field>
    <field name="res_model">your.config.settings</field>
    <field name="view_id" ref="your_configuration"/>
    <field name="view_mode">form</field>
    <field name="target">inline</field>
</record>

当然不要忘记在设置菜单中进行新的输入:

<menuitem id="your_settings_menu" name="Your settings"
    parent="base.menu_config" action="your_settings_action"/>

参考:http://ludwiktrammer.github.io/odoo/custom-settings-odoo.html