summaryrefslogtreecommitdiff
path: root/addons/stock_dropshipping/tests/test_lifo_price.py
diff options
context:
space:
mode:
authorstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
committerstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
commit3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch)
treea44932296ef4a9b71d5f010906253d8c53727726 /addons/stock_dropshipping/tests/test_lifo_price.py
parent0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff)
initial commit 2
Diffstat (limited to 'addons/stock_dropshipping/tests/test_lifo_price.py')
-rw-r--r--addons/stock_dropshipping/tests/test_lifo_price.py97
1 files changed, 97 insertions, 0 deletions
diff --git a/addons/stock_dropshipping/tests/test_lifo_price.py b/addons/stock_dropshipping/tests/test_lifo_price.py
new file mode 100644
index 00000000..02c20f6a
--- /dev/null
+++ b/addons/stock_dropshipping/tests/test_lifo_price.py
@@ -0,0 +1,97 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+
+from odoo import fields, tools
+from odoo.addons.stock_account.tests.test_anglo_saxon_valuation_reconciliation_common import ValuationReconciliationTestCommon
+from odoo.tests import tagged, common, Form
+
+
+@tagged('-at_install', 'post_install')
+class TestLifoPrice(ValuationReconciliationTestCommon):
+
+ def test_lifoprice(self):
+
+ # Set product category removal strategy as LIFO
+ product_category_001 = self.env['product.category'].create({
+ 'name': 'Lifo Category',
+ 'removal_strategy_id': self.env.ref('stock.removal_lifo').id,
+ 'property_valuation': 'real_time',
+ 'property_cost_method': 'fifo',
+ })
+ res_partner_3 = self.env['res.partner'].create({'name': 'My Test Partner'})
+ self.company_data['default_warehouse'].out_type_id.show_operations = False
+
+ # Set a product as using lifo price
+ product_form = Form(self.env['product.product'])
+ product_form.default_code = 'LIFO'
+ product_form.name = 'LIFO Ice Cream'
+ product_form.type = 'product'
+ product_form.categ_id = product_category_001
+ product_form.lst_price = 100.0
+ product_form.uom_id = self.env.ref('uom.product_uom_kgm')
+ product_form.uom_po_id = self.env.ref('uom.product_uom_kgm')
+ # these are not available (visible) in either product or variant
+ # for views, apparently from the UI you can only set the product
+ # category (or hand-assign the property_* version which seems...)
+ # product_form.categ_id.valuation = 'real_time'
+ # product_form.categ_id.property_cost_method = 'fifo'
+ product_form.categ_id.property_stock_account_input_categ_id = self.company_data['default_account_stock_in']
+ product_form.categ_id.property_stock_account_output_categ_id = self.company_data['default_account_stock_out']
+ product_lifo_icecream = product_form.save()
+
+ product_lifo_icecream.standard_price = 70.0
+
+ # I create a draft Purchase Order for first in move for 10 pieces at 60 euro
+ order_form = Form(self.env['purchase.order'])
+ order_form.partner_id = res_partner_3
+ with order_form.order_line.new() as line:
+ line.product_id = product_lifo_icecream
+ line.product_qty = 10.0
+ line.price_unit = 60.0
+ purchase_order_lifo1 = order_form.save()
+
+ # I create a draft Purchase Order for second shipment for 30 pieces at 80 euro
+ order2_form = Form(self.env['purchase.order'])
+ order2_form.partner_id = res_partner_3
+ with order2_form.order_line.new() as line:
+ line.product_id = product_lifo_icecream
+ line.product_qty = 30.0
+ line.price_unit = 80.0
+ purchase_order_lifo2 = order2_form.save()
+
+ # I confirm the first purchase order
+ purchase_order_lifo1.button_confirm()
+
+ # I check the "Approved" status of purchase order 1
+ self.assertEqual(purchase_order_lifo1.state, 'purchase')
+
+ # Process the receipt of purchase order 1
+ purchase_order_lifo1.picking_ids[0].move_lines.quantity_done = purchase_order_lifo1.picking_ids[0].move_lines.product_qty
+ purchase_order_lifo1.picking_ids[0].button_validate()
+
+ # I confirm the second purchase order
+ purchase_order_lifo2.button_confirm()
+
+ # Process the receipt of purchase order 2
+ purchase_order_lifo2.picking_ids[0].move_lines.quantity_done = purchase_order_lifo2.picking_ids[0].move_lines.product_qty
+ purchase_order_lifo2.picking_ids[0].button_validate()
+
+ # Let us send some goods
+ self.company_data['default_warehouse'].out_type_id.show_operations = False
+ out_form = Form(self.env['stock.picking'])
+ out_form.picking_type_id = self.company_data['default_warehouse'].out_type_id
+ out_form.immediate_transfer = True
+ with out_form.move_ids_without_package.new() as move:
+ move.product_id = product_lifo_icecream
+ move.quantity_done = 20.0
+ move.date = fields.Datetime.now()
+ outgoing_lifo_shipment = out_form.save()
+
+ # I assign this outgoing shipment
+ outgoing_lifo_shipment.action_assign()
+
+ # Process the delivery of the outgoing shipment
+ outgoing_lifo_shipment.button_validate()
+
+ # Check if the move value correctly reflects the fifo costing method
+ self.assertEqual(outgoing_lifo_shipment.move_lines.stock_valuation_layer_ids.value, -1400.0, 'Stock move value should have been 1400 euro')