-
Notifications
You must be signed in to change notification settings - Fork 2
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
[4120][REF][ADD] report_csv, report_format_option #117
Conversation
name="encoding" | ||
attrs="{'invisible': [('report_type', '!=', 'csv')]}" | ||
/> | ||
<field name="encoding" /> |
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.
Can we add a show_encoding
compute field and do this?
<field name="encoding" /> | |
<field name="encoding" attrs="{'invisible': [('show_encoding', '=', False)]}"/> |
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.
@AungKoKoLin1997 Please go ahead and create a PR in the OCA repo upon following up on comments.
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.
Please remove this file.
@@ -0,0 +1 @@ | |||
This module adds an encoding option for reports. It is not meant to stand alone; instead, it will be used as a base for other reporting-related modules (e.g., report_csv). |
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.
This module adds an encoding option for reports. It is not meant to stand alone; instead, it will be used as a base for other reporting-related modules (e.g., report_csv). | |
This is a technical module to add encoding fields to ir.actions.report model and it does nothing by itself. The module is expected to be a dependency of other reporting modules (e.g., report_csv). |
756c455
to
901bea0
Compare
d5bac16
to
774728b
Compare
4120