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] sale: recompute delivered qty #33991

Closed

Conversation

nim-odoo
Copy link
Contributor

@nim-odoo nim-odoo commented Jun 7, 2019

  • Create a product A of type "Service", Invoice based on "Milestones",
    Service Tracking "Create a task in a new project".
  • Create a new SO with A, confirm.
  • Go the to task associated to the SO, go to "Timesheets" tab, add an
    entry
  • In the SO, edit the delivered quantity
  • Create invoice, validate

Back to the SO, delivered quantity is reset to 0.

We make sure to filter out SO lines which have a delivered quantity set
manually.

Introduced by d6ad222.

opw-1982020

Description of the issue/feature this PR addresses:

Current behavior before PR:

Desired behavior after PR is merged:

--
I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr

- Create a product A of type "Service", Invoice based on "Milestones",
  Service Tracking "Create a task in a new project".
- Create a new SO with A, confirm.
- Go the to task associated to the SO, go to "Timesheets" tab, add an
  entry
- In the SO, edit the delivered quantity
- Create invoice, validate

Back to the SO, delivered quantity is reset to 0.

We make sure to filter out SO lines which have a delivered quantity set
manually.

Introduced by d6ad222.

opw-1982020
@nim-odoo nim-odoo self-assigned this Jun 7, 2019
@C3POdoo C3POdoo added the OE the report is linked to a support ticket (opw-...) label Jun 7, 2019
@robodoo robodoo added the CI 🤖 Robodoo has seen passing statuses label Jun 7, 2019
@nim-odoo
Copy link
Contributor Author

robodoo r+

pniederlag pushed a commit to pniederlag/odoo that referenced this pull request Jun 11, 2019
- Create a product A of type "Service", Invoice based on "Milestones",
Service Tracking "Create a task in a new project".
- Create a new SO with A, confirm.
- Go the to task associated to the SO, go to "Timesheets" tab, add an
entry
- In the SO, edit the delivered quantity
- Create invoice, validate

Back to the SO, delivered quantity is reset to 0.

We make sure to filter out SO lines which have a delivered quantity set
manually.

Introduced by d6ad222.

opw-1982020

closes odoo#33991

Signed-off-by: Nicolas Martinelli (nim) <nim@odoo.com>
@robodoo
Copy link
Contributor

robodoo commented Jun 11, 2019

Merged, thanks!

@robodoo robodoo closed this Jun 11, 2019
@nim-odoo nim-odoo deleted the 11.0-opw-1982020-so_line_manual-nim branch June 11, 2019 07:15
@KangOl
Copy link
Contributor

KangOl commented Jun 11, 2019

It broke tests during forward-port to saas-11.3

2019-06-11 09:04:36 	ERROR 	server 	odoo.addons.sale.tests.test_reinvoice:474 write FAIL
2019-06-11 09:04:36 	ERROR 	server 	odoo.addons.sale.tests.test_reinvoice:474 write FAIL
2019-06-11 09:04:36 	ERROR 	server 	odoo.addons.sale.tests.test_reinvoice:474 write FAIL: test_at_cost (odoo.addons.sale.tests.test_reinvoice.TestReInvoice)
2019-06-11 09:04:37 	ERROR 	server 	odoo.addons.sale.tests.test_reinvoice:474 write ` Test vendor bill at cost for product based on ordered and delivered quantities.
2019-06-11 09:04:37 	ERROR 	server 	odoo.addons.sale.tests.test_reinvoice:474 write Traceback (most recent call last):
2019-06-11 09:04:37 	ERROR 	server 	odoo.addons.sale.tests.test_reinvoice:474 write ` File "/data/build/odoo/addons/sale/tests/test_reinvoice.py", line 111, in test_at_cost
2019-06-11 09:04:37 	ERROR 	server 	odoo.addons.sale.tests.test_reinvoice:474 write ` self.assertEquals((sale_order_line3.price_unit, sale_order_line3.qty_delivered, sale_order_line3.product_uom_qty, sale_order_line3.qty_invoiced), (self.product_ordered_cost.standard_price, invoice_lineA1.quantity, 0, 0), 'Sale line is wrong after confirming vendor invoice')
2019-06-11 09:04:37 	ERROR 	server 	odoo.addons.sale.tests.test_reinvoice:474 write ` AssertionError: Tuples differ: (8.0, 0.0, 0.0, 0.0) != (8.0, 3.0, 0, 0)
2019-06-11 09:04:37 	ERROR 	server 	odoo.addons.sale.tests.test_reinvoice:474 write `
2019-06-11 09:04:37 	ERROR 	server 	odoo.addons.sale.tests.test_reinvoice:474 write ` First differing element 1:
2019-06-11 09:04:37 	ERROR 	server 	odoo.addons.sale.tests.test_reinvoice:474 write ` 0.0
2019-06-11 09:04:37 	ERROR 	server 	odoo.addons.sale.tests.test_reinvoice:474 write ` 3.0
2019-06-11 09:04:37 	ERROR 	server 	odoo.addons.sale.tests.test_reinvoice:474 write `
2019-06-11 09:04:37 	ERROR 	server 	odoo.addons.sale.tests.test_reinvoice:474 write ` - (8.0, 0.0, 0.0, 0.0)
2019-06-11 09:04:37 	ERROR 	server 	odoo.addons.sale.tests.test_reinvoice:474 write ` ? ^ -- --
2019-06-11 09:04:37 	ERROR 	server 	odoo.addons.sale.tests.test_reinvoice:474 write `
2019-06-11 09:04:37 	ERROR 	server 	odoo.addons.sale.tests.test_reinvoice:474 write ` + (8.0, 3.0, 0, 0)
2019-06-11 09:04:37 	ERROR 	server 	odoo.addons.sale.tests.test_reinvoice:474 write ` ? ^
2019-06-11 09:04:37 	ERROR 	server 	odoo.addons.sale.tests.test_reinvoice:474 write ` : Sale line is wrong after confirming vendor invoice
2019-06-11 09:04:37 	ERROR 	server 	odoo.addons.sale.tests.test_reinvoice:474 write FAIL: test_sales_price (odoo.addons.sale.tests.test_reinvoice.TestReInvoice)
2019-06-11 09:04:37 	ERROR 	server 	odoo.addons.sale.tests.test_reinvoice:474 write ` Test invoicing vendor bill at sales price for products based on delivered and ordered quantities. Check no existing SO line is incremented, but when invoicing a second time, increment only the delivered so line.
2019-06-11 09:04:37 	ERROR 	server 	odoo.addons.sale.tests.test_reinvoice:474 write Traceback (most recent call last):
2019-06-11 09:04:37 	ERROR 	server 	odoo.addons.sale.tests.test_reinvoice:474 write ` File "/data/build/odoo/addons/sale/tests/test_reinvoice.py", line 214, in test_sales_price
2019-06-11 09:04:37 	ERROR 	server 	odoo.addons.sale.tests.test_reinvoice:474 write ` self.assertEquals((sale_order_line3.price_unit, sale_order_line3.qty_delivered, sale_order_line3.product_uom_qty, sale_order_line3.qty_invoiced), (self.product_deliver_sales_price.list_price, invoice_lineA1.quantity, 0, 0), 'Sale line is wrong after confirming vendor invoice')
2019-06-11 09:04:37 	ERROR 	server 	odoo.addons.sale.tests.test_reinvoice:474 write ` AssertionError: Tuples differ: (10.0, 0.0, 0.0, 0.0) != (10.0, 3.0, 0, 0)
2019-06-11 09:04:37 	ERROR 	server 	odoo.addons.sale.tests.test_reinvoice:474 write `
2019-06-11 09:04:37 	ERROR 	server 	odoo.addons.sale.tests.test_reinvoice:474 write ` First differing element 1:
2019-06-11 09:04:37 	ERROR 	server 	odoo.addons.sale.tests.test_reinvoice:474 write ` 0.0
2019-06-11 09:04:37 	ERROR 	server 	odoo.addons.sale.tests.test_reinvoice:474 write ` 3.0
2019-06-11 09:04:37 	ERROR 	server 	odoo.addons.sale.tests.test_reinvoice:474 write `
2019-06-11 09:04:37 	ERROR 	server 	odoo.addons.sale.tests.test_reinvoice:474 write ` - (10.0, 0.0, 0.0, 0.0)
2019-06-11 09:04:37 	ERROR 	server 	odoo.addons.sale.tests.test_reinvoice:474 write ` ? ^ -- --
2019-06-11 09:04:37 	ERROR 	server 	odoo.addons.sale.tests.test_reinvoice:474 write `
2019-06-11 09:04:37 	ERROR 	server 	odoo.addons.sale.tests.test_reinvoice:474 write ` + (10.0, 3.0, 0, 0)
2019-06-11 09:04:37 	ERROR 	server 	odoo.addons.sale.tests.test_reinvoice:474 write ` ? ^
2019-06-11 09:04:37 	ERROR 	server 	odoo.addons.sale.tests.test_reinvoice:474 write ` : Sale line is wrong after confirming vendor invoice
2019-06-11 09:04:37 	ERROR 	server 	odoo.addons.sale.tests.test_reinvoice:474 write FAILED
2019-06-11 09:04:37 	ERROR 	server 	odoo.modules.module:505 run_unit_tests Module sale: 2 failures, 0 errors
2019-06-11 09:04:38 	ERROR 	server 	odoo.addons.sale.tests.test_sale_order:474 write FAIL
2019-06-11 09:04:42 	ERROR 	server 	odoo.addons.sale.tests.test_sale_order:474 write FAIL: test_cost_invoicing (odoo.addons.sale.tests.test_sale_order.TestSaleOrder)
2019-06-11 09:04:42 	ERROR 	server 	odoo.addons.sale.tests.test_sale_order:474 write ` Test confirming a vendor invoice to reinvoice cost on the so
2019-06-11 09:04:42 	ERROR 	server 	odoo.addons.sale.tests.test_sale_order:474 write Traceback (most recent call last):
2019-06-11 09:04:42 	ERROR 	server 	odoo.addons.sale.tests.test_sale_order:474 write ` File "/data/build/odoo/addons/sale/tests/test_sale_order.py", line 198, in test_cost_invoicing
2019-06-11 09:04:42 	ERROR 	server 	odoo.addons.sale.tests.test_sale_order:474 write ` self.assertEquals((sol.price_unit, sol.qty_delivered, sol.product_uom_qty, sol.qty_invoiced), (160, 2, 0, 0), 'Sale: line is wrong after confirming vendor invoice')
2019-06-11 09:04:42 	ERROR 	server 	odoo.addons.sale.tests.test_sale_order:474 write ` AssertionError: Tuples differ: (160.0, 0.0, 0.0, 0.0) != (160, 2, 0, 0)
2019-06-11 09:04:42 	ERROR 	server 	odoo.addons.sale.tests.test_sale_order:474 write `
2019-06-11 09:04:42 	ERROR 	server 	odoo.addons.sale.tests.test_sale_order:474 write ` First differing element 1:
2019-06-11 09:04:42 	ERROR 	server 	odoo.addons.sale.tests.test_sale_order:474 write ` 0.0
2019-06-11 09:04:42 	ERROR 	server 	odoo.addons.sale.tests.test_sale_order:474 write ` 2
2019-06-11 09:04:42 	ERROR 	server 	odoo.addons.sale.tests.test_sale_order:474 write `
2019-06-11 09:04:42 	ERROR 	server 	odoo.addons.sale.tests.test_sale_order:474 write ` - (160.0, 0.0, 0.0, 0.0)
2019-06-11 09:04:42 	ERROR 	server 	odoo.addons.sale.tests.test_sale_order:474 write ` + (160, 2, 0, 0) : Sale: line is wrong after confirming vendor invoice
2019-06-11 09:04:42 	ERROR 	server 	odoo.addons.sale.tests.test_sale_order:474 write FAILED 

Is your patch valid for non service products?

@nim-odoo
Copy link
Contributor Author

I think it is safe to not forward-port it, service invoicing has changed dramatically in v12 (same for v11.3)

Sorry, something went wrong.

TDu pushed a commit to camptocamp/odoo that referenced this pull request Jun 17, 2019
- Create a product A of type "Service", Invoice based on "Milestones",
Service Tracking "Create a task in a new project".
- Create a new SO with A, confirm.
- Go the to task associated to the SO, go to "Timesheets" tab, add an
entry
- In the SO, edit the delivered quantity
- Create invoice, validate

Back to the SO, delivered quantity is reset to 0.

We make sure to filter out SO lines which have a delivered quantity set
manually.

Introduced by d6ad222.

opw-1982020

closes odoo#33991

Signed-off-by: Nicolas Martinelli (nim) <nim@odoo.com>
grindtildeath pushed a commit to camptocamp/odoo that referenced this pull request Jun 19, 2019
- Create a product A of type "Service", Invoice based on "Milestones",
Service Tracking "Create a task in a new project".
- Create a new SO with A, confirm.
- Go the to task associated to the SO, go to "Timesheets" tab, add an
entry
- In the SO, edit the delivered quantity
- Create invoice, validate

Back to the SO, delivered quantity is reset to 0.

We make sure to filter out SO lines which have a delivered quantity set
manually.

Introduced by d6ad222.

opw-1982020

closes odoo#33991

Signed-off-by: Nicolas Martinelli (nim) <nim@odoo.com>
i-vyshnevska pushed a commit to camptocamp/odoo that referenced this pull request Jun 20, 2019
- Create a product A of type "Service", Invoice based on "Milestones",
Service Tracking "Create a task in a new project".
- Create a new SO with A, confirm.
- Go the to task associated to the SO, go to "Timesheets" tab, add an
entry
- In the SO, edit the delivered quantity
- Create invoice, validate

Back to the SO, delivered quantity is reset to 0.

We make sure to filter out SO lines which have a delivered quantity set
manually.

Introduced by d6ad222.

opw-1982020

closes odoo#33991

Signed-off-by: Nicolas Martinelli (nim) <nim@odoo.com>
i-vyshnevska pushed a commit to camptocamp/odoo that referenced this pull request Jun 20, 2019
- Create a product A of type "Service", Invoice based on "Milestones",
Service Tracking "Create a task in a new project".
- Create a new SO with A, confirm.
- Go the to task associated to the SO, go to "Timesheets" tab, add an
entry
- In the SO, edit the delivered quantity
- Create invoice, validate

Back to the SO, delivered quantity is reset to 0.

We make sure to filter out SO lines which have a delivered quantity set
manually.

Introduced by d6ad222.

opw-1982020

closes odoo#33991

Signed-off-by: Nicolas Martinelli (nim) <nim@odoo.com>
i-vyshnevska pushed a commit to camptocamp/odoo that referenced this pull request Jun 24, 2019
- Create a product A of type "Service", Invoice based on "Milestones",
Service Tracking "Create a task in a new project".
- Create a new SO with A, confirm.
- Go the to task associated to the SO, go to "Timesheets" tab, add an
entry
- In the SO, edit the delivered quantity
- Create invoice, validate

Back to the SO, delivered quantity is reset to 0.

We make sure to filter out SO lines which have a delivered quantity set
manually.

Introduced by d6ad222.

opw-1982020

closes odoo#33991

Signed-off-by: Nicolas Martinelli (nim) <nim@odoo.com>
i-vyshnevska pushed a commit to camptocamp/odoo that referenced this pull request Jun 24, 2019
- Create a product A of type "Service", Invoice based on "Milestones",
Service Tracking "Create a task in a new project".
- Create a new SO with A, confirm.
- Go the to task associated to the SO, go to "Timesheets" tab, add an
entry
- In the SO, edit the delivered quantity
- Create invoice, validate

Back to the SO, delivered quantity is reset to 0.

We make sure to filter out SO lines which have a delivered quantity set
manually.

Introduced by d6ad222.

opw-1982020

closes odoo#33991

Signed-off-by: Nicolas Martinelli (nim) <nim@odoo.com>
i-vyshnevska pushed a commit to camptocamp/odoo that referenced this pull request Jun 24, 2019
- Create a product A of type "Service", Invoice based on "Milestones",
Service Tracking "Create a task in a new project".
- Create a new SO with A, confirm.
- Go the to task associated to the SO, go to "Timesheets" tab, add an
entry
- In the SO, edit the delivered quantity
- Create invoice, validate

Back to the SO, delivered quantity is reset to 0.

We make sure to filter out SO lines which have a delivered quantity set
manually.

Introduced by d6ad222.

opw-1982020

closes odoo#33991

Signed-off-by: Nicolas Martinelli (nim) <nim@odoo.com>
i-vyshnevska pushed a commit to camptocamp/odoo that referenced this pull request Jun 24, 2019
- Create a product A of type "Service", Invoice based on "Milestones",
Service Tracking "Create a task in a new project".
- Create a new SO with A, confirm.
- Go the to task associated to the SO, go to "Timesheets" tab, add an
entry
- In the SO, edit the delivered quantity
- Create invoice, validate

Back to the SO, delivered quantity is reset to 0.

We make sure to filter out SO lines which have a delivered quantity set
manually.

Introduced by d6ad222.

opw-1982020

closes odoo#33991

Signed-off-by: Nicolas Martinelli (nim) <nim@odoo.com>
i-vyshnevska pushed a commit to camptocamp/odoo that referenced this pull request Jun 27, 2019
- Create a product A of type "Service", Invoice based on "Milestones",
Service Tracking "Create a task in a new project".
- Create a new SO with A, confirm.
- Go the to task associated to the SO, go to "Timesheets" tab, add an
entry
- In the SO, edit the delivered quantity
- Create invoice, validate

Back to the SO, delivered quantity is reset to 0.

We make sure to filter out SO lines which have a delivered quantity set
manually.

Introduced by d6ad222.

opw-1982020

closes odoo#33991

Signed-off-by: Nicolas Martinelli (nim) <nim@odoo.com>
Tonow-c2c pushed a commit to camptocamp/odoo that referenced this pull request Sep 13, 2019
- Create a product A of type "Service", Invoice based on "Milestones",
Service Tracking "Create a task in a new project".
- Create a new SO with A, confirm.
- Go the to task associated to the SO, go to "Timesheets" tab, add an
entry
- In the SO, edit the delivered quantity
- Create invoice, validate

Back to the SO, delivered quantity is reset to 0.

We make sure to filter out SO lines which have a delivered quantity set
manually.

Introduced by d6ad222.

opw-1982020

closes odoo#33991

Signed-off-by: Nicolas Martinelli (nim) <nim@odoo.com>
Tonow-c2c pushed a commit to camptocamp/odoo that referenced this pull request Sep 16, 2019
- Create a product A of type "Service", Invoice based on "Milestones",
Service Tracking "Create a task in a new project".
- Create a new SO with A, confirm.
- Go the to task associated to the SO, go to "Timesheets" tab, add an
entry
- In the SO, edit the delivered quantity
- Create invoice, validate

Back to the SO, delivered quantity is reset to 0.

We make sure to filter out SO lines which have a delivered quantity set
manually.

Introduced by d6ad222.

opw-1982020

closes odoo#33991

Signed-off-by: Nicolas Martinelli (nim) <nim@odoo.com>
i-vyshnevska pushed a commit to camptocamp/odoo that referenced this pull request Sep 16, 2019
- Create a product A of type "Service", Invoice based on "Milestones",
Service Tracking "Create a task in a new project".
- Create a new SO with A, confirm.
- Go the to task associated to the SO, go to "Timesheets" tab, add an
entry
- In the SO, edit the delivered quantity
- Create invoice, validate

Back to the SO, delivered quantity is reset to 0.

We make sure to filter out SO lines which have a delivered quantity set
manually.

Introduced by d6ad222.

opw-1982020

closes odoo#33991

Signed-off-by: Nicolas Martinelli (nim) <nim@odoo.com>
i-vyshnevska pushed a commit to camptocamp/odoo that referenced this pull request Sep 17, 2019
- Create a product A of type "Service", Invoice based on "Milestones",
Service Tracking "Create a task in a new project".
- Create a new SO with A, confirm.
- Go the to task associated to the SO, go to "Timesheets" tab, add an
entry
- In the SO, edit the delivered quantity
- Create invoice, validate

Back to the SO, delivered quantity is reset to 0.

We make sure to filter out SO lines which have a delivered quantity set
manually.

Introduced by d6ad222.

opw-1982020

closes odoo#33991

Signed-off-by: Nicolas Martinelli (nim) <nim@odoo.com>
Tonow-c2c pushed a commit to camptocamp/odoo that referenced this pull request Sep 17, 2019
- Create a product A of type "Service", Invoice based on "Milestones",
Service Tracking "Create a task in a new project".
- Create a new SO with A, confirm.
- Go the to task associated to the SO, go to "Timesheets" tab, add an
entry
- In the SO, edit the delivered quantity
- Create invoice, validate

Back to the SO, delivered quantity is reset to 0.

We make sure to filter out SO lines which have a delivered quantity set
manually.

Introduced by d6ad222.

opw-1982020

closes odoo#33991

Signed-off-by: Nicolas Martinelli (nim) <nim@odoo.com>
i-vyshnevska pushed a commit to camptocamp/odoo that referenced this pull request Sep 21, 2019
- Create a product A of type "Service", Invoice based on "Milestones",
Service Tracking "Create a task in a new project".
- Create a new SO with A, confirm.
- Go the to task associated to the SO, go to "Timesheets" tab, add an
entry
- In the SO, edit the delivered quantity
- Create invoice, validate

Back to the SO, delivered quantity is reset to 0.

We make sure to filter out SO lines which have a delivered quantity set
manually.

Introduced by d6ad222.

opw-1982020

closes odoo#33991

Signed-off-by: Nicolas Martinelli (nim) <nim@odoo.com>
vrenaville pushed a commit to camptocamp/odoo that referenced this pull request Oct 2, 2019
- Create a product A of type "Service", Invoice based on "Milestones",
Service Tracking "Create a task in a new project".
- Create a new SO with A, confirm.
- Go the to task associated to the SO, go to "Timesheets" tab, add an
entry
- In the SO, edit the delivered quantity
- Create invoice, validate

Back to the SO, delivered quantity is reset to 0.

We make sure to filter out SO lines which have a delivered quantity set
manually.

Introduced by d6ad222.

opw-1982020

closes odoo#33991

Signed-off-by: Nicolas Martinelli (nim) <nim@odoo.com>
leemannd pushed a commit to camptocamp/odoo that referenced this pull request Dec 4, 2020
- Create a product A of type "Service", Invoice based on "Milestones",
Service Tracking "Create a task in a new project".
- Create a new SO with A, confirm.
- Go the to task associated to the SO, go to "Timesheets" tab, add an
entry
- In the SO, edit the delivered quantity
- Create invoice, validate

Back to the SO, delivered quantity is reset to 0.

We make sure to filter out SO lines which have a delivered quantity set
manually.

Introduced by d6ad222.

opw-1982020

closes odoo#33991

Signed-off-by: Nicolas Martinelli (nim) <nim@odoo.com>
mmequignon pushed a commit to camptocamp/odoo that referenced this pull request Dec 4, 2020
- Create a product A of type "Service", Invoice based on "Milestones",
Service Tracking "Create a task in a new project".
- Create a new SO with A, confirm.
- Go the to task associated to the SO, go to "Timesheets" tab, add an
entry
- In the SO, edit the delivered quantity
- Create invoice, validate

Back to the SO, delivered quantity is reset to 0.

We make sure to filter out SO lines which have a delivered quantity set
manually.

Introduced by d6ad222.

opw-1982020

closes odoo#33991

Signed-off-by: Nicolas Martinelli (nim) <nim@odoo.com>
santostelmo pushed a commit to camptocamp/odoo that referenced this pull request Dec 15, 2020
- Create a product A of type "Service", Invoice based on "Milestones",
Service Tracking "Create a task in a new project".
- Create a new SO with A, confirm.
- Go the to task associated to the SO, go to "Timesheets" tab, add an
entry
- In the SO, edit the delivered quantity
- Create invoice, validate

Back to the SO, delivered quantity is reset to 0.

We make sure to filter out SO lines which have a delivered quantity set
manually.

Introduced by d6ad222.

opw-1982020

closes odoo#33991

Signed-off-by: Nicolas Martinelli (nim) <nim@odoo.com>
chroi pushed a commit to camptocamp/odoo that referenced this pull request Dec 18, 2020
- Create a product A of type "Service", Invoice based on "Milestones",
Service Tracking "Create a task in a new project".
- Create a new SO with A, confirm.
- Go the to task associated to the SO, go to "Timesheets" tab, add an
entry
- In the SO, edit the delivered quantity
- Create invoice, validate

Back to the SO, delivered quantity is reset to 0.

We make sure to filter out SO lines which have a delivered quantity set
manually.

Introduced by d6ad222.

opw-1982020

closes odoo#33991

Signed-off-by: Nicolas Martinelli (nim) <nim@odoo.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
CI 🤖 Robodoo has seen passing statuses OE the report is linked to a support ticket (opw-...)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants