-
-
Notifications
You must be signed in to change notification settings - Fork 86
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
[14.0][mig] cms_form #145
Open
simahawk
wants to merge
96
commits into
OCA:14.0
Choose a base branch
from
camptocamp:14.0-mig-cms_form
base: 14.0
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
[14.0][mig] cms_form #145
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
**Attributes become fields** All attributes that configure a form are now odoo fields. Fields that are just for configuration/behavior (meaning that shouldn't be consider in form rendering) must have the flag `form_tech=True`. Default configuration can be set by overriding fields' defaults. For instance, to declare the model:: form_model_name = fields.Char(default="res.partner") or to declare which fields to use:: form_model_fields = Serialized(default=("name", "country_id")) Same story for widgets. **Fields lookup API change** `form_fields()` and `form_fieldsets()` are not available anymore. You must use `form.form_fields_get()` and `form.form_fieldsets_get`.
When the transaction is rolled back due to an pg error use a new env to be able to inject the status message otherwise a dead request will be used.
You can now use form_widget={...} field attribute to provide your own widget for the form.
Centralize lookup for attributes via private api
Allows forms to customize the html name of each widget. Very handy in case you want to combine multiple forms together.
Transform inputs to list of dict values
Before this change the session was not stored at all on the filesystem
Form fields have precedence over model fields. However, it's handy to override just few params instead of the whole field.
Form fields can now be hidden via ´form_hidden' attr.
The field wrapper should toggle the required class.
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: website-cms-16.0/website-cms-16.0-cms_form Translate-URL: https://translation.odoo-community.org/projects/website-cms-16-0/website-cms-16-0-cms_form/
Currently translated at 99.2% (127 of 128 strings) Translation: website-cms-16.0/website-cms-16.0-cms_form Translate-URL: https://translation.odoo-community.org/projects/website-cms-16-0/website-cms-16-0-cms_form/it/
Currently translated at 100.0% (128 of 128 strings) Translation: website-cms-16.0/website-cms-16.0-cms_form Translate-URL: https://translation.odoo-community.org/projects/website-cms-16-0/website-cms-16-0-cms_form/es/
Handy to force redirect down the stack.
Currently translated at 100.0% (128 of 128 strings) Translation: website-cms-16.0/website-cms-16.0-cms_form Translate-URL: https://translation.odoo-community.org/projects/website-cms-16-0/website-cms-16-0-cms_form/it/
Currently translated at 35.1% (45 of 128 strings) Translation: website-cms-16.0/website-cms-16.0-cms_form Translate-URL: https://translation.odoo-community.org/projects/website-cms-16-0/website-cms-16-0-cms_form/ca/
These tests require some adaptations for the ``mock`` lib version that is now working properly w/ py3.6 used in the OCA build.
713c227
to
2901ca2
Compare
Submit a btn variable to have full control of behavior when no filter has been submitted.
Some browsers like FF do not set the item as selected when autocomplete is on.
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.
Module already avail in v14 as uninstalled.
Here's a backport from v16 of all the improvements + adaptations for v14.