Skip to content
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

Merged
merged 1 commit into from
Feb 23, 2024

Conversation

percevaq
Copy link

Issue #353

Fix integration issue with sales reports.

@percevaq
Copy link
Author

pre-commit I cannot pass it locally with ubuntu 22.04 and python 3.10. There is a known bug with this.
I try to pass it as clean as possible and then the pre-commit above fixes the spaces, lines, etc.

@pedrobaeza pedrobaeza added this to the 16.0 milestone Feb 22, 2024
@pedrobaeza
Copy link
Member

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.

@@ -77,6 +77,10 @@ Contributors

* Iván Todorovich <[email protected]>

* `GutierrezTi Team <https://gutierrezti.es>`_
* Joaquín Gutiérrez Pedrosa <[email protected]>
Copy link
Contributor

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
Copy link
Contributor

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):

Copy link
Author

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

Copy link
Member

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.

@percevaq
Copy link
Author

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.

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.

pre-commit run --all-files [INFO] Installing environment for https://github.com/oca/maintainer-tools. [INFO] Once installed this environment will be reused. [INFO] This may take a few minutes... An unexpected error has occurred: CalledProcessError: command: ('python', '-mpip', 'install', '.') return code: 1 stdout: Executable pythonnot found stderr: (none)
I don't see a way to fix it.
I have seen that it is something known but I don't know how to get it installed. I have not found a way

@percevaq
Copy link
Author

Hello:

I think as I have commented the most coherent thing would be to cancel this MR.
Fix everything manually including the suggested improvements and be able to continue with more stuff.

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
@pedrobaeza pedrobaeza force-pushed the issue_353_event_sale_session branch from 27b904f to a6d8213 Compare February 23, 2024 07:55
Copy link
Member

@pedrobaeza pedrobaeza left a 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

@OCA-git-bot
Copy link
Contributor

This PR looks fantastic, let's merge it!
Prepared branch 16.0-ocabot-merge-pr-365-by-pedrobaeza-bump-patch, awaiting test results.

@OCA-git-bot OCA-git-bot merged commit e0b5171 into OCA:16.0 Feb 23, 2024
6 of 7 checks passed
@OCA-git-bot
Copy link
Contributor

Congratulations, your PR was merged at e2822dc. 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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants