-
-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Initial migration commit #1
base: 8.0
Are you sure you want to change the base?
Conversation
Odoo2Odoo Connector Modules | ||
============================ | ||
|
||
*Odoo2Odoo Connector enables a bi-directional communication between two (or more), sepearte Odoo instances.* |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
s/sepearte/separate
- Add purchase related technical module - Add po2so scenario
- Fix filename inconsistences - Add po2so feature
Dependency on runbot added and a rebuild launched. |
- Adds basic security groups / model access - Adds basic ImportBinder - Adds some methods / class documentation - Restructured backend view - Cleaned up dependencides in _base to purchase - Adds basic units in _purchase
Conflicts: README.md
@pedrobaeza : Could you please add |
No, I don't have SSH access to runbot machine. @gurneyalex, can you do it? |
@gurneyalex Could you please add |
@gurneyalex Is it possible to install |
Hi, @maljac, dependency is now fixed on runbot and I have restarted runbot build. |
@pedrobaeza, thank you! |
👍 |
Usage | ||
===== | ||
|
||
. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will require documentation and screenshot. Let me know if I can help here
password = fields.Char( | ||
string='Password', | ||
required=True, | ||
help='Password' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no need
@elicoidal Thanks for the review. FYI: I'm planning to spend more time in Q1 to push the connector to a good state. |
# export jobs will be created: one for product.template and one for | ||
# product.product. If you have more than one export backend, this | ||
# gets even multiplied by the amount of backends: 2 backends means | ||
# 4 export jobs. So far I have no idea how to deal with this! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you could use a custom (or even better, add it in connector_base_product
) event on_product_write
handled specially:
- In the write of
product.product
, you pass their ids in a context key, that will be read by the template's write (https://github.com/OCA/connector-ecommerce/blob/9.0/connector_ecommerce/product.py#L128-L130) - In the write of
product.template
, if you come fromproduct.product
with the context key, you don't re-trigger the event for those ids: https://github.com/OCA/connector-ecommerce/blob/9.0/connector_ecommerce/product.py#L67-L79
Can somebody point out some functional information on this? |
@liebana : Not sure what you mean? Information about guewen's comment? |
Sorry, it was a generic question because I wasn't reading the updated readme.rst file commited. I was only checking what was available to connect two Odoo instances in two cases:
It seems that this would cover both cases, based on your generic development. Best regards. |
FYI: we test and migrate the |
Migration of existing work from intercompany connector to odoo2odoo base connector.
Tasks: