gpt4 book ai didi

python - One2Many 字段 Odoo 不规则

转载 作者:行者123 更新时间:2023-12-01 09:06:25 27 4
gpt4 key购买 nike

我遇到以下问题,我正在创建一个作为预算副本的表单,但这种类型的预算不包含增值税%,并且商品不会通过会计。

问题如下我创建了一个名为budget.table的模型如下:

class TableElements(models.Model):
_name = 'budget.table'
product_id = fields.Many2one('product.product', string='Product',ondelete='restrict', index=True)
name = fields.Text(string='Description', required=True)
quantity = fields.Float(string='Quantity',required=True, default=1)
price_unit = fields.Float(string='Unit Price', required=True,)
price_subtotal = fields.Float(string='Amount',store=True, readonly=True)

我有另一个名为budget.two的模型,如下:

class BudgetTwo(models.Model):
_name = 'budget.two'
name = fields.Char(string ='Nombre', copy=False, index=True ,default ="Nuevo")
partner_id =fields.Many2one('res.partner' ,string ='Cliente', copy=False, index=True,required=True)
deliver_date = fields.Date(string ='Fecha de Entrega')
expiration_date = fields.Date(string ='Fecha de expiración')
pay_place =fields.Many2one('account.payment.term' ,string='Plazo de Pago')
order_line = fields.One2many('budget.table','id' ,string = 'Pedidos' )
total = fields.Float(string = 'Total:' ,compute="_total")

好吧,我想要:正如您在“budget.two”中看到的那样,有一个 One2Many 字段,我将添加所有新产品,这些新产品又将保存在我创建的此类新预算中,正如我已经评论过的那样没有增值税,会计模块不会发生这种情况。

当我选择要保存 One2manny 的产品时,我将其保留为空白。示例:

所以应该保留: enter image description here

但是当您保存它时,看看它是如何存储的,One2MAny 字段中没有任何元素:

[![enter code here][2]][2]

最佳答案

在“budget.table”中添加此字段:

budget_two_id = fields.Many2one('budget.two')

在“budget.two”中更正此字段:

order_line = fields.One2many('budget.table', 'budget_two_id', string='Pedidos')

要点是任何 One2many 字段都应该在另一个模型上有一个反向字段 (Many2one) 作为外键。

关于python - One2Many 字段 Odoo 不规则,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52008158/

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