我在一个项目中看到了一段代码,其中编写了以下内容:

         move = Move.create({
            'name': repair.name,
            'product_id': repair.product_id.id,
            'product_uom': repair.product_uom.id or repair.product_id.uom_id.id,
            'product_uom_qty': repair.product_qty,
            'partner_id': repair.address_id.id,
            'location_id': repair.location_id.id,
            'location_dest_id': repair.location_dest_id.id,
            'restrict_lot_id': repair.lot_id.id,
        })
        moves |= move
        moves.action_done()


| =在这里是什么意思?

最佳答案

正如@AChampion在第一个问题注释中已经提到的那样,它可以是“按位或”或“设置并集”。尽管此问题以Odoo为上下文,但它是Odoo类RecordSet的“设置联合”。

此类是随Odoo 8上的新API一起引入的。对于其他运算符,请查阅Odoo的官方文档。

10-07 17:51