Guewen Baconnier

Results 131 comments of Guewen Baconnier

Maybe related: https://github.com/OCA/connector-magento/issues/116 The discrepancy here is indeed to be fixed. The question is which one we should choose. We could have 2 viewpoints here: - we use the `base`...

We agree on the cases. > I think I need help to know how call again the sale record (to get order/global currency codes placed on the magento sale record)...

It tries to import a sales order and in a line it has a product with Magento ID 456. Normally, products of a sales order line are imported beforehand (in...

Having the product on both sides is really weird. What if you execute on your DB `SELECT * from magento_product_product WHERE magento_id = '456';`? If you have some pdb /...

That's an error returned by Magento so it could be anything :-(

@lmignon the isolation level is set on the current transaction using the command [SET TRANSACTION](http://www.postgresql.org/docs/8.4/static/sql-set-transaction.html) In Odoo you can use _Read committed_ by passing the argument `serialized=False` when creating a...

@pedrobaeza I have no doubt that the solution + advisory lock would work fine to prevent the double import described in the issue. My only concern is about the data...

> Couldn't 'recursive' sub-imports (especially ones on small fast imports like this) just use explicit locking? > LOCK TABLE mage_partner_categories IN ACCESS EXCLUSIVE MODE; Thanks for the proposition. As we...

What was missing on the documentation that could have helped you? http://odoo-magento-connector.com/guides/installation_guide.html The addons have not been migrated to Odoo 9.0 as most of the community addons. So indeed you...

> All these dependencies look to default to branch 9.0, so I am a little confused. Yes but all the addons in there have their `installable` flag as `False`. >...