odoo 开发入门教程系列-继承(Inheritance)

yizhihongxing

继承(Inheritance)

Odoo的一个强大方面是它的模块化。模块专用于业务需求,但模块也可以相互交互。这对于扩展现有模块的功能非常有用。例如,在我们的房地产场景中,我们希望在常规用户视图中直接显示销售人员的财产列表。

在介绍特定的Odoo模块继承之前,让我们看看如何更改标准CRUD(创建、检索,更新或删除)方法的行为

Python继承(Python Inheritance)

目标:

odoo 开发入门教程系列-继承(Inheritance)

在我们的房地产模块中,我们从不需要开发任何特定的东西来执行标准的CRUD操作。Odoo框架提供了实现这些操作的必要工具。事实上,多亏经典的Python继承,我们的模型中已经包含了这样的操作:

from odoo import fields, models

class TestModel(models.Model):
    _name = "test.model"
    _description = "Test Model"

    ...

我们的 TestModel 类继承与Model,该Model类提供了 create(), read(), write()unlink()方法。

这些方法(和其它在Model中定义的任何方法)可被扩展以添加指定业务逻辑:

from odoo import fields, models

class TestModel(models.Model):
    _name = "test.model"
    _description = "Test Model"

    ...

    @api.model
    def create(self, vals):
        # Do some business logic, modify vals...
        ...
        # Then call super to execute the parent method
        return super().create(vals)

model()装饰器对于create() 方法来说是必需的,因为结果集self的内容和创建(creation)的上下文无关,但该装饰器对于其它CRUD方法来说不是必需的。

Python 3中, super() 等价于 super(TestModel, self)。当你需要使用一条被修改后的结果集调用父方法时,可能需要使用后者。

危险提示

  • 总是调用 super()以避免中断流非常重要。只有少数非常特殊的情况才无需调用它。
  • 总是返回和父方法一致的数据。例如父方法返回一个dict(),你重写父方法时也要返回一个dict()

练习--添加业务逻辑到CRUD方法

  • 如果房产记录状态不是NewCanceled,则不让删除

提示:重写unlink() ,并记住self可以是一个包含多条记录的结果集。

  • 创建报价时,设置房产状态为‘Offer Received’,如果用户试图以低于已存在报价的金额创建报价时抛出错误。

提示: 可在vals中获取property_id 字段,但是它是一个int型。要实例化一个estate.property 对象,请使用self.env[model_name].browse(value) (示例)

    @api.model
    def create(self, vals):
        self.env['gamification.badge'].browse(vals['badge_id']).check_granting()
        return super(BadgeUser, self).create(vals)

修改odoo14\custom\estate\views\estate_property_views.xml 去掉estate_property_view_tree<tree>元素的editable="top"属性(说明:为了方便执行报价创建操作)

修改odoo14\custom\estate\models\estate_property.py

    @api.constrains('selling_price', 'expected_price')
    def _check_selling_price(self):
        # if record.selling_price < self.expected_price * 0.9:
        #     raise ValidationError("selling price can`t not lower then 90 percent of expected price")
        pass

说明:为了方便实践操作,暂且不做售价校验

最末尾新增以下代码

    def unlink(self):
        for record in self:
            if record.state not in ['New', 'Canceled']:
                raise UserError('can`t delete property which status is New or Canceled')
        return super().unlink()

修改odoo14\custom\estate\models\estate_property_offer.py,导入UserError

from odoo.exceptions import UserError

最末尾添加一下代码

    @api.model
    def create(self, vals):
        property = self.env['estate.property'].browse(vals['property_id'])
        
        if vals.get('price') < property.best_price:
            raise  UserError('不能低于现有报价')
        property.state = 'Offer Received'
        return super().create(vals)

重启服务,刷新浏览器验证

删除非NewCanceled状态的房产,提示如下:

odoo 开发入门教程系列-继承(Inheritance)

odoo 开发入门教程系列-继承(Inheritance)

odoo 开发入门教程系列-继承(Inheritance)

模块继承(Model Inheritance)

引用: 查看主题相关文档继承和扩展

我们希望在“Settings/Users & Companies/Users”表单视图中直接显示与销售人员关联的房产列表。为此,我们需要向res.users模型添加一个字段,并调整其视图以显示它。

Odoo提供了两种继承机制来以模块化的方式扩展现有模型。

第一继承机制允许模块通过以下方式修改在另一个模块中定义的模型的行为:

  • 向模型添加字段

  • 覆盖模型中字段的定义

  • 给模型添加约束

  • 给模型添加方法

  • 重写模型中的现有方法

第二种继承机制(委托)允许将模型的每个记录链接到父模型的记录,并提供对该父记录的字段的透明访问。

odoo 开发入门教程系列-继承(Inheritance)

odoo中,第一种机制最常用。在我们的例子中,我们希望向现有模型添加一个字段,这意味着我们将使用第一种机制。例如:

from odoo import fields, models

class InheritedModel(models.Model):
    _inherit = "inherited.model"

    new_field = fields.Char(string="New Field")

这里可以找到将两个字段添加到模型中的示例

class AccountMoveLine(models.Model):
    _inherit = 'account.move.line'

    vehicle_id = fields.Many2one('fleet.vehicle', string='Vehicle')
    need_vehicle = fields.Boolean(compute='_compute_need_vehicle',
        help="Technical field to decide whether the vehicle_id field is editable")

    def _compute_need_vehicle(self):
        self.need_vehicle = False

按照惯例,每个继承的模型都在其自己的Python文件中定义。在我们的示例中为“models/inherited_model.py”。

练习--添加字段到用户模型

  • 添加一下字段到res.users:
Field Type
property_ids One2many inverse of salesman_id to estate.property
  • 添加一个domain到该字段,这样以便仅显示可获取房产。

新增odoo14\custom\estate\models\estate_res_user.py

#!/usr/bin/env python
# -*- coding:utf-8 -*-

from odoo import models, fields

class EstateResUser(models.Model):
    _inherit = 'res.users'

    property_ids = fields.One2many('estate.property', 'salesman_id', domain="[('salesman_id', '=', active_id)]")

修改odoo14\custom\estate\models\__init__.py

#!/usr/bin/env python
# -*- coding:utf-8 -*-

from . import estate_property_type
from . import estate_property_tag
from . import estate_property_offer
from . import estate_property
from . import estate_res_user # 本次新增

视图继承(View Inheritance)

参考: 主题关联文档可查看Inheritance.

目标: 在用户表单视图中显示与销售人员关联的avaliable房产列表其用户表单视图

odoo 开发入门教程系列-继承(Inheritance)

Odoo提供了视图继承,其中子“扩展”视图应用于根视图之上,而不是就地修改现有视图(通过重写它们)。这些扩展既可以添加内容,也可以从父视图中删除内容。

扩展视图使用inherit_id字段引用其父视图。它的arch字段包含多个xpath元素,用于选择和更改父视图的内容,而不是单个视图:

<record id="inherited_model_view_form" model="ir.ui.view">
    <field name="name">inherited.model.form.inherit.test</field>
    <field name="model">inherited.model</field>
    <field name="inherit_id" ref="inherited.inherited_model_view_form"/>
    <field name="arch" type="xml">
        <!-- find field description and add the field
             new_field after it -->
        <xpath expr="//field[@name='description']" position="after">
          <field name="new_field"/>
        </xpath>
    </field>
</record>
  • expr

    一个用于选择父视图中单个元素的XPath表达式。如果不匹配任何元素或者匹配多个元素,则抛出错误

  • position

    应用于匹配元素的操作:

    inside

    xpath的主体附加到匹配元素的末尾(个人理解,添加为匹配元素的子元素)

    replace

    将匹配元素替换为xpath的主体,将新主体中出现的任何$0节点替换为原始元素

    before

    在匹配元素之前插入xpath的主体作为同级元素

    after

    在匹配的元素之后插入xpaths的主体,作为同级元素

    attributes

    使用xpath主体中的特定属性元素更改匹配元素的属性

当匹配单个元素时,可以直接在要查找的元素上设置position属性。以下两种继承都有相同的结果

<xpath expr="//field[@name='description']" position="after">
    <field name="idea_ids" />
</xpath>

<field name="description" position="after">
    <field name="idea_ids" />
</field>

这里可以找到视图继承扩展的示例

<?xml version='1.0' encoding='utf-8'?>
<odoo>
    <record id="view_move_form" model="ir.ui.view">
        <field name="name">account.move.form</field>
        <field name="model">account.move</field>
        <field name="inherit_id" ref="account.view_move_form"/>
        <field name="arch" type="xml">
            <xpath expr="//field[@name='line_ids']//field[@name='account_id']" position="after">
                <field name='need_vehicle' invisible='1'/>
                <field name='vehicle_id' attrs="{'required': [('need_vehicle', '=', True), ('parent.move_type', '=', 'in_invoice')], 'column_invisible': [('parent.move_type', '!=', 'in_invoice')]}" optional='hidden'/>
            </xpath>
            <xpath expr="//field[@name='invoice_line_ids']//field[@name='account_id']" position="after">
                <field name='need_vehicle' invisible='1'/>
                <field name='vehicle_id' attrs="{'required': [('need_vehicle', '=', True), ('parent.move_type', '=', 'in_invoice')], 'column_invisible': [('parent.move_type', '!=', 'in_invoice')]}" optional='hidden'/>
            </xpath>
        </field>
    </record>
</odoo>

练习--添加字段到用户视图

添加property_ids字段到 base.view_users_form 中新建的notebook

提示: 可以在 这里找到继承用户视图的示例。

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data>

    <record id="res_users_view_form" model="ir.ui.view">
        <field name="name">res.users.view.form.inherit.gamification</field>
        <field name="model">res.users</field>
        <field name="inherit_id" ref="base.view_users_form"/>
        <field name="arch" type="xml">
            <group name="messaging" position="inside">
                <field name="karma"/>
            </group>
        </field>
    </record>

</data>
</odoo>

新增odoo14\custom\estate\views\estate_res_users_views.xml

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data>
    <record id="estate_res_users_view_form" model="ir.ui.view">
        <field name="name">estate.res.users.view.form</field>
        <field name="model">res.users</field>
        <field name="inherit_id" ref="base.view_users_form"/>
        <field name="arch" type="xml">
            <xpath expr="//page[@name='references']" position="after">
                <page string="Real Estate Properties" name="RealEstateProperties">
                    <field name='property_ids'/>
                </page>
            </xpath>
        </field>
    </record>
</data>
</odoo>

修改odoo14\custom\estate\__manifest__.py

#!/usr/bin/env python
# -*- coding:utf-8 -*-
{
    'name': 'estate',
    'depends': ['base'],
    'data':['security/ir.model.access.csv',
            'views/estate_property_views.xml',
            'views/estate_property_type_views.xml',
            'views/estate_property_tag_views.xml',
            'views/estate_property_offer_views.xml',
            'views/estate_menus.xml',
            'views/estate_res_users_views.xml' # 本次新增
            ]
}

重启服务,验证效果

odoo 开发入门教程系列-继承(Inheritance)

原文链接:https://www.cnblogs.com/shouke/p/17253422.html

本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:odoo 开发入门教程系列-继承(Inheritance) - Python技术站

(0)
上一篇 2023年4月17日
下一篇 2023年4月17日

相关文章

  • python数据分析实战指南之异常值处理

    Python数据分析实战指南之异常值处理 异常值的定义 异常值,也称为离群值,是指在一组数据中明显偏离其他数据的数值,可能由数据记录错误或者自然现象造成。在数据分析中,异常值会影响统计分析的准确性,因此需要对其进行处理。 异常值的处理方法 1. 删除异常值 一种常见的处理异常值的方法是直接删除这些异常值。这种方法适用于异常值占比较小的数据集。 import …

    python 2023年5月13日
    00
  • 如何在Python中把NumPy数组转换为字典

    将NumPy数组转换为字典可以使用Python内置的dict()函数来实现,按照以下步骤即可完成操作: 步骤一:引入NumPy模块 在转换之前,需要先引入NumPy模块,使用以下代码: import numpy as np 步骤二:定义NumPy数组 接下来,需要定义一个NumPy数组,使用以下代码: arr = np.array([[1, 2], [3, …

    python-answer 2023年3月25日
    00
  • Python标准库shutil用法实例详解

    首先我来介绍一下这篇攻略的目录结构和概要: 目录 前言 shutil模块概述 shutil模块方法详解 copy(src, dst) copy2(src, dst) copyfile(src, dst) copytree(src, dst) rmtree(path) move(src, dst) 总结 前言 在Python中,如果我们需要进行文件或目录复制、…

    python 2023年5月13日
    00
  • 利用python实现聚类分析K-means算法的详细过程

    Python实现K-means聚类算法 K-means聚类算法是一种常用的无监督学习算法,它的主要思想是将数据集划分为K个簇,使得同一簇内的数据点相似度较高,不同簇之间的数据点相似度较低。本文将详细讲解如何使用Python实现K-means聚类算法,并提供两个示例说明。 K-means聚类算法原理 K-means聚类算法的基本思想是从数据集中随机选择K个点作…

    python 2023年5月14日
    00
  • python通过正则查找微博@(at)用户的方法

    以下是“Python通过正则查找微博@(at)用户的方法”的完整攻略: 一、问题描述 在微博中,@符号后面跟着的是用户的昵称,有时候我们需要通过正则表达式来查找微博中的@用户。本文将详细讲解Python通过正则查找微博@(at)用户的方法,以及如何在实际开发中应用。 二、解决方案 2.1 查找微博@(at)用户的方法 在Python中,查找微博@(at)用户…

    python 2023年5月14日
    00
  • python绘制lost损失曲线加方差范围的操作方法

    接下来我将详细讲解Python绘制lost损失曲线加方差范围的操作方法的完整攻略: 1. 安装必需库 在绘制lost损失曲线加方差范围之前,需要先安装一些必需库,包括matplotlib、numpy和seaborn。 pip install matplotlib numpy seaborn 2. 准备数据 准备数据时,需要给定具体的损失值、方差值等参数,比如…

    python 2023年6月3日
    00
  • Python一行代码实现生成和读取二维码

    生成和读取二维码在实际的应用中具有广泛的应用场景,Python语言提供了很多强大的库来实现这种功能。其中最常用的是qrcode和opencv-python库。接下来就详细讲解如何在Python中使用这两个库来实现生成和读取二维码。 生成二维码 安装qrcode库 我们使用qrcode库来生成二维码,首先需要安装这个库。可以使用pip来安装这个库: pip i…

    python 2023年5月18日
    00
  • python打开url并按指定块读取网页内容的方法

    要使用Python打开URL并读取网页内容,我们可以使用内置的urllib库。具体步骤如下: 引入urllib库 import urllib.request 使用urllib库中的urlopen函数打开URL url = "http://www.example.com" response = urllib.request.urlopen(…

    python 2023年6月3日
    00
合作推广
合作推广
分享本页
返回顶部