-
-
Notifications
You must be signed in to change notification settings - Fork 151
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
[15.0][FWD] connector_importer: misc fix/imp #126
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
You can now configure a custom domain on record_handler options. Eg: options: record_handler: match_domain: "[('name', =, values['name'])]" When defined, it will take precedence over the unique key if any.
Before this change if you did not override 'odoo_find' itself your custom odoo_find_domain would be bypassed if you had an empty unique_key. This was a clear issue when you specified only 'options.record_handler.match_domain'.
Values where not properly converted for x2m fields.
You can now use ref and env to compute your domain.
Keys having both prefix and a transformer like 'xid::' were discarded. A key like 'xid::foo.parent_id' would simply be ignored.
You can now pass options for specific fields converter via conf. If for instance, the model you are importing has a relation `partner_id` you can state that missing records must be created automatically. Eg:: - model: product.product options: importer: odoo_unique_key: barcode mapper: name: product.product.mapper converter: categ_id: create_missing: True All the keys inside converted/field will be propagated to the `backend_to_rel` converter.
To ease retrieval of import session reports.
You can now pass any context key to the importer (propagated to the record handler) by using 'ctx' key in the 'importer' options.
Was broken because available_importers requires an import type which is not available before editing. It was also impossible to set the backend directly.
/ocabot merge minor |
What a great day to merge this nice PR. Let's do it! |
Congratulations, your PR was merged at d5bf353. Thanks a lot for contributing to OCA. ❤️ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Ports from 14.0