基于 Odoo 11 上的 SQL 查询构建新视图或模型

Build a new view or a model based on a SQL query on Odoo 11

我正在开发 Odoo 模块。

我希望我的模块成为 "report" 购买最多的产品(按客户)。

我已经在 Odoo 上创建了一个视图,但现在,我需要 "filter" 客户查看这些视图。代码在这里:

class SaleProductsByCustomer(models.Model):
_name = "sale.order.product"
_auto = False

partner_id = fields.Many2one('res.partner')
orders = fields.Integer(string='Total Orders')
name = fields.Char(string='Name')
price_total = fields.Float(string='Total Payment')
qty = fields.Integer(string='Qty Ordered')
last_order = fields.Date(string='Last Order Date')

@api.model_cr
def init(self):
    tools.drop_view_if_exists(self._cr, 'sale_order_product')
    tools.drop_view_if_exists(self._cr, 'sale_order_product_report')
    self._cr.execute("""
        CREATE OR REPLACE VIEW sale_order_product_report AS (
            SELECT so.order_partner_id AS id, count(so.id) AS orders, pt.name, sum(so.price_total) AS price_total,
                sum(so.product_uom_qty) AS qty, max(so.create_date) AS last_order
            FROM public.sale_order_line AS so
            LEFT JOIN public.product_product AS pr ON so.product_id = pr.id
            LEFT JOIN public.product_template AS pt ON pr.product_tmpl_id = pt.id
            GROUP BY so.order_partner_id, so.product_id, pt.name
            ORDER BY qty DESC
        )""")

我尝试使用以下代码访问这些视图:

class SaleProduct(models.Model):
_inherit = 'res.partner'

customer_product_history_ids = fields.One2many(comodel_name='sale.order.product', compute='_compute_customer_product_history', readonly=True)

@api.multi
@api.model_cr
def _compute_customer_product_history(self):
    for partner in self:
        if partner.id:
            sale.customer_product_history_ids = self.env['sale.order.product'].search([('partner_id', '=', partner.id)])

但 odoo 拒绝读取它,出现以下错误:

2018-12-13 03:05:36,889 13482 ERROR xx odoo.sql_db: bad query: b'SELECT "sale_order_product".id FROM "sale_order_product" WHERE ("sale_order_product"."partner_id" = 107989) ORDER BY "sale_order_product"."id" ' ERROR: relation "sale_order_product" does not exist

显然,即使我有 "sale.order.product",我也无法参考它来做我想做的事。

我已经遵循并阅读了很多关于执行自定义报告和自定义 SQL 查询的指南,但我找不到完整的指南来执行此操作,而且我对 odoo 模块的了解也不是很好。

SQL 查询已经过测试并且可以正常工作。我需要的是将 WHERE 子句应用于 SQL,并将结果放在视图中。

我的观点在这里:

    <record model="ir.ui.view" id="sale_order_form_views_customer_history">
    <field name="name">sale.order.form.view.customer.product.history</field>
    <field name="model">res.partner</field>
    <field name="inherit_id" ref="base.view_partner_form"/>
    <field name="arch" type="xml">
        <xpath expr="//notebook" position="inside">
            <page name="customer_product_history" string="Customer Product History">
                <field name="customer_product_history_ids">
                </field>
            </page>
        </xpath>
    </field>
</record>

注意:我在 Whosebug 和其他网站上阅读了很多指南,但没有人涵盖我要问的所有内容。如果您认为这个 post 是重复的,请给我评论以查看另一个。

感谢您的帮助。

模型名称应与视图名称相匹配。

     _name = 'sale.order.product.report'

这就是导致您出现此错误的原因。

或者您可以告诉 odoo 这个模型与数据库中的特定 tablee 有关

         _name = 'sale.order.product'
         _table = 'sale_order_product_report'

注意:您可以像正常一样与视图交互table