如何从Odoo 10中的Object获取Id?

时间:2016-11-15 14:59:35

标签: object openerp self odoo-10

这是我的结构:

class Imprint_Location(models.Model):
    _name = 'imprint.location'

    name = fields.Char()
    product_id = fields.Many2one('product.template')

class Imprint_Charges(models.Model):
    _name = 'imprint.charge'
    _rec_name = 'location_id'

    product_id_c = fields.Many2one('product.template', required=True)
    location_id = fields.Many2one('imprint.location', required=True)
    @api.multi
    @api.onchange('product_id_c', 'location_id')
    def product_filter(self):
        res = {}
        print '\n\n-------\n\n', self, self.product_id_c, '\n\n-------\n\n'
        if self.product_id_c:
            res['domain'] = {'location_id': [('product_id', '=', self.product_id_c.id)]}
            print res
        return res

class Product_Template(models.Model):
    _inherit = 'product.template'

    imprint_location_ids = fields.One2many('imprint.location', 'product_id')
    sale_imprint_charge_ids = fields.One2many('imprint.charge', 'product_id_c')

现在我已在product.template中定义了一个页面,页面内的sale_imprint_charge_ids位于<tree editable="bottom">,我没有选择product_id_c字段[此字段也没有不会出现在定义的树上。

现在我的问题是,当我从我为imprint.charge定义的表单视图中选择此方法时,方法product_filter工作正常,但当我从product.template进入时,我得到错误说

TypeError: <odoo.models.NewId object at 0x7fbb8bc21b90> is not JSON serializable

因为从product.template传递了对象<odoo.models.NewId object at 0x7fbb8bc21b90>,所以如果打印self.product_id_c则会打印product.template(<odoo.models.NewId object at 0x7fbb8bc21b90>),因此这不可序列化。我尝试过self.product_id_c.ids,它会输出空列表[]

那么如何从对象中获取product.template id或传递id本身覆盖某些方法。

2 个答案:

答案 0 :(得分:1)

创建一个全新的记录时,Odoo创建了那个奇怪的<odoo.models.NewId object at 0x7fbb8bc21b90>对象。在您编写记录之后,此ID将变为您习惯的常规ID(整数)。在这种情况下,你有一个函数(并非不合理地)期望在没有这样的值确实存在时的实际id值。您需要提供回退,例如评估id是否为整数并在该情况下提供备用值。虽然你的函数似乎返回了一个我不太清楚你期望发生什么的对象。如果你想修改你的一个字段的值,我会修改self对象的值而不是返回一个对象。

答案 1 :(得分:1)

您应该改善以下几点。

  • res ['domain'] = {'location_id':[('product_id','=',self.product_id_c.id)]}
  • 返回 res
  • 研究ORM的一些 search()方法

尝试使用以下代码:

@api.multi
@api.onchange('product_id_c', 'location_id')
def product_filter(self):
    res = {}
    if self.product_id_c:

        self.location_id = False

        #search product_template in imprint.locationwith table and limit we will get only record if related record found
        location_id = self.env['imprint.location'].search([('product_id', '=', self.product_id_c.id)], limit=1)

        if location_id:

            #location_id.ids will give you something like [2] so we need to set value as 2
            self.location_id =  location_id.ids[0]

修改

根据您的第一条评论,您需要一个相关位置列表,然后我们应该遵循技巧。

  • 删除 product_filter()方法
  • imprint.charge 对象视图文件
  • 中添加域

例如:

<field name="location_id" domain="[('product_id', '=', product_id_c)]"/>

然后,重新启动Odoo服务器并升级自定义模块。