-
-
Notifications
You must be signed in to change notification settings - Fork 618
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
[FIX][account_financial_report_qweb] Fix ImportError. #229
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,6 +50,7 @@ Contributors | |
* Francesco Apruzzese <[email protected]> | ||
* Lorenzo Battistini <[email protected]> | ||
* Julien Coux <[email protected]> | ||
* Jairo Llopis <[email protected]> | ||
|
||
Much of the work in this module was done at a sprint in Sorrento, Italy in | ||
April 2016. | ||
|
Original file line number | Diff line number | Diff line change | ||
---|---|---|---|---|
|
@@ -5,7 +5,7 @@ | |||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). | ||||
{ | ||||
'name': 'QWeb Financial Reports', | ||||
'version': '9.0.1.0.0', | ||||
'version': '9.0.1.0.1', | ||||
'category': 'Reporting', | ||||
'summary': 'OCA Financial Reports', | ||||
'author': 'Camptocamp SA,' | ||||
|
@@ -35,8 +35,11 @@ | |||
'report/templates/trial_balance.xml', | ||||
'view/account_view.xml' | ||||
], | ||||
'test': [ | ||||
], | ||||
'external_dependencies': { | ||||
"python": [ | ||||
"xlsxwriter", | ||||
], | ||||
}, | ||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. AFAICS xslxwriter is not a direct dependency of afr_qweb. It is a dependency of report_xslx, so it should not be declared here. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I updated the patch and put the try lower in the stack. Please review that, you probably missed that. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @yajo indeed I had not seen that part account-financial-reporting/account_financial_report_qweb/report/abstract_report_xlsx.py Line 38 in 58c559b
IMO it is not the best way to do it because this override of There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. And it should be split in 2 modules: one for the QWeb part, and the other for XLSX support extension. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That's the job for another PR. 😄 |
||||
'installable': True, | ||||
'application': True, | ||||
'auto_install': 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.
This contribution is very little to include you here. In fact, it's a patch.
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.
Yep, but it's mine 😊
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.
git blame will know that, but here we put only relevant contributors, or the list would be big for all the modules.
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 seems important to me. 😛