-
Notifications
You must be signed in to change notification settings - Fork 5
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
[3860][UPD] dotfiles #218
base: 10.0
Are you sure you want to change the base?
[3860][UPD] dotfiles #218
Conversation
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.
Thanks, @AungKoKoLin1997 ! Can you please take this chance to fix tests as well?
* Do not propose it on Purchase Order lines | ||
""", | ||
'author': 'Rooms For (Hong Kong) Limited T/A OSCG', | ||
'website': 'https://www.odoo-asia.com', | ||
'author': 'Rooms For (Hong Kong) Limited T/A OSCG, Quartile Limited', |
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.
'author': 'Rooms For (Hong Kong) Limited T/A OSCG, Quartile Limited', | |
'author': 'Quartile Limited', |
Rooms For (Hong Kong) Limited is our old company name.
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.
Yes. I thought that is our parent company and I was not sure removing our parent company from author list. I will remove it now.
product_type_default/__manifest__.py
Outdated
'version': '10.0.1.0.0', | ||
'category': 'Sales', | ||
'description': """ | ||
* Propose product type from product category | ||
""", | ||
'author': 'Rooms For (Hong Kong) Limited T/A OSCG', | ||
'website': 'https://www.odoo-asia.com', | ||
'author': 'Rooms For (Hong Kong) Limited T/A OSCG, Quartile Limited', |
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.
'author': 'Rooms For (Hong Kong) Limited T/A OSCG, Quartile Limited', | |
'author': 'Quartile Limited', |
.github/workflows/test.yml
Outdated
@@ -46,10 +46,18 @@ jobs: | |||
POSTGRES_DB: odoo | |||
ports: | |||
- 5432:5432 | |||
env: | |||
ADDONS_PATH: "/opt/odoo/addons,pci-private" |
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.
Actually, it is wrong to have a dependency on a private module. We should move such modules to pci-private, instead of making changes here.
I have no idea why purchase_received_qty_adj is failed in run tests stage, not in db initialize. I tried to install this module in dev environment and can install. There is no xml error. |
Codecov Report
📣 This organization is not using Codecov’s GitHub App Integration. We recommend you install it so Codecov can continue to function properly for your repositories. Learn more @@ Coverage Diff @@
## 10.0 #218 +/- ##
=======================================
Coverage ? 53.10%
=======================================
Files ? 230
Lines ? 3188
Branches ? 567
=======================================
Hits ? 1693
Misses ? 1408
Partials ? 87 Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
8719119
to
2201db6
Compare
There is only one issue to fix the tests and it's tricky to fix it. So, I think I spend time on this task is enough and will follow up with another task later. |
1b1e866
to
001b914
Compare
001b914
to
e09e09f
Compare
Tests CI is failed because of |
product_configurator/__manifest__.py
Outdated
'license': 'AGPL-3', | ||
'website': 'http://www.pledra.com/', | ||
'website': 'https://www.quartile.co', |
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's not force this change.
'license': 'AGPL-3', | ||
'website': 'http://www.pledra.com/', | ||
'website': 'https://www.quartile.co', |
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's not force this change.
'license': 'AGPL-3', | ||
'website': 'http://www.pledra.com/', | ||
'website': 'https://www.quartile.co', |
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's not force this change.
) | ||
cls.date_range = cls.env["date.range"].create( | ||
{ | ||
"name": "FY2022", | ||
"date_start": "2022-01-01", | ||
"date_end": "2022-12-31", | ||
"date_end": fields.date.today(), |
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.
Why this change?
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 used the wrong approach for fixing tests case. I updated in my latest commit.
@@ -53,7 +54,7 @@ def test_confirm_and_cancel_sales_order(self): | |||
yearly_sales_dom = [ | |||
("partner_id", "=", self.partner.id), | |||
("start_date", "=", "2022-01-01"), | |||
("end_date", "=", "2022-12-31"), | |||
("end_date", "=", fields.date.today()), |
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.
Why this change?
'license': 'AGPL-3', | ||
'website': 'http://www.pledra.com/', | ||
'website': 'https://www.quartile.co', |
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's not force this change.
'license': 'AGPL-3', | ||
'website': 'http://www.pledra.com/', | ||
'website': 'https://www.quartile.co', |
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's not force this change.
I'm checking with the client whether |
3860
4733