gpt4 book ai didi

python - 基于 Odoo 11 上的 SQL 查询构建新 View 或模型

转载 作者:行者123 更新时间:2023-11-29 12:07:38 25 4
gpt4 key购买 nike

我正在开发 Odoo 模块。

我希望我的模块成为大多数购买产品(按客户)的“报告”。

我已经在 Odoo 上创建了一个 View ,但现在,我需要按客户“过滤”这些 View 。代码在这里:

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
)""")

我已尝试使用此代码访问这些 View :

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,并将结果放在 View 中。

我的观点在这里:

    <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>

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

感谢您的帮助。

最佳答案

模型的名称应与 View 的名称相匹配。

     _name = 'sale.order.product.report'

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

或者你可以告诉odoo这个模型与数据库中的特定表相关

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

注意:您可以像普通表格一样与 View 交互

关于python - 基于 Odoo 11 上的 SQL 查询构建新 View 或模型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53755428/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com