Skip to content

Commit

Permalink
Multiple reservations can now be released at once. This fixes issue O…
Browse files Browse the repository at this point in the history
  • Loading branch information
mlaitinen authored and OCA-git-bot committed Dec 29, 2022
1 parent 95d3c14 commit 94df00c
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions stock_reserve_sale/test/sale_reserve.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@
order_line:
- product_id: product_gelato
product_uom_qty: 4
- product_id: product_gelato
product_uom_qty: 1
-
I call the wizard to reserve the products of the sales order
-
Expand All @@ -46,9 +48,9 @@
-
I check Virtual stock of Gelato after update reservation
-
!python {model: product.product, id: product_gelato}: |
from nose.tools import *
assert_almost_equal(self.virtual_available, 6.0)
!python {model: product.product}: |
product = self.browse(cr, uid, ref('product_gelato'), context=context)
assert product.virtual_available == 5, "Stock is not updated after reservation."
-
I release the sales order's reservations
-
Expand All @@ -57,6 +59,6 @@
-
I check Virtual stock of Gelato after release of reservations
-
!python {model: product.product, id: product_gelato}: |
from nose.tools import *
assert_almost_equal(self.virtual_available, 10.0)
!python {model: product.product}: |
product = self.browse(cr, uid, ref('product_gelato'), context=context)
assert product.virtual_available == 10, "Stock is not updated after releasing reservations."

0 comments on commit 94df00c

Please sign in to comment.