-
-
Notifications
You must be signed in to change notification settings - Fork 173
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][16.0][event_sale_session]Fix bug #353 #365
Conversation
pre-commit I cannot pass it locally with ubuntu 22.04 and python 3.10. There is a known bug with this. |
I have the same stuff and I don't have any problem. |
event_sale_session/README.rst
Outdated
@@ -77,6 +77,10 @@ Contributors | |||
|
|||
* Iván Todorovich <[email protected]> | |||
|
|||
* `GutierrezTi Team <https://gutierrezti.es>`_ | |||
* Joaquín Gutiérrez Pedrosa <[email protected]> |
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 file is auto-generated from the ones in the readme
directory.
Changes done here will be overwritten.
Instead, update the readme/CONTRIBUTORS.rst
file
res['event_id'] = 'l.event_id' | ||
res['event_ticket_id'] = 'l.event_ticket_id' | ||
res['event_session_id'] = 'l.event_session_id' | ||
return res |
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.
Technically it looks good, but we do need to get pre-commit to pass.
Could you apply the changes suggested by it, in the ci:
diff --git a/event_sale_session/reports/sale_report.py b/event_sale_session/reports/sale_report.py
index e7868e4..6a6f937 100644
--- a/event_sale_session/reports/sale_report.py
+++ b/event_sale_session/reports/sale_report.py
@@ -29,9 +29,9 @@ class SaleReport(models.Model):
def _select_additional_fields(self):
res = super()._select_additional_fields()
- res['event_id'] = 'l.event_id'
- res['event_ticket_id'] = 'l.event_ticket_id'
- res['event_session_id'] = 'l.event_session_id'
+ res["event_id"] = "l.event_id"
+ res["event_ticket_id"] = "l.event_ticket_id"
+ res["event_session_id"] = "l.event_session_id"
return res
def _group_by_sale(self):
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.
Hello:
I am going to cancel the MR, do it again all manual and nothing and see what happens.
Thanks for your 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.
Let me check if the template is not the latest one in this repository.
Hello pedro: Same in the rest of repositories it works for me but in this one I try to install pre-commit in an env with python 3.10 and I get this error.
|
Hello: I think as I have commented the most coherent thing would be to cancel this MR. |
When installing the POS module together with the event sessions it gives an error with several errors. At product level it gives an error in the calculated sales_count field. odoo.exceptions.CacheMiss: 'product.template(661,).sales_count' At sales report level it gives an error in the data table joins. psycopg2.errors.SyntaxError: each UNION query must have the same number of columns LINE 106: -MIN(l.id) AS `id,` Closes OCA#353
27b904f
to
a6d8213
Compare
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.
I have pushed to your branch the proper changes with pre-commit and the README modified in the proper place.
/ocabot merge patch
This PR looks fantastic, let's merge it! |
Congratulations, your PR was merged at e2822dc. Thanks a lot for contributing to OCA. ❤️ |
Issue #353
Fix integration issue with sales reports.