How to make odoo custom stock move (odoo v8 and v9)
问题 I am creating a custom module. There is an one2many field. It has - quantity unit of measure source location destination location I need to transfer the product from source location to destination location. In odoo v8 I saw two functions - def do_detailed_transfer(self) and do_transfer() But do_detailed_transfer is not available in odoo v9. How can I create a custom stock move which will transfer products from source location to destination location for both versions? Thanks. 回答1: I am able