mirror of
https://github.com/OCA/stock-logistics-reporting.git
synced 2025-02-16 17:13:21 +02:00
[MIG] stock_quantity_history_location: Migration to 13.0
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
# Copyright 2019 Eficent Business and IT Consulting Services, S.L.
|
||||
# Copyright 2019 ForgeFlow S.L.
|
||||
# Copyright 2019 Aleph Objects, Inc.
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
{
|
||||
"name": "Stock Quantity History Location",
|
||||
"summary": "Provides stock quantity by location on past date",
|
||||
"version": "12.0.1.0.1",
|
||||
"version": "13.0.1.0.1",
|
||||
"license": "AGPL-3",
|
||||
"author": "Eficent," "Odoo Community Association (OCA)",
|
||||
"author": "ForgeFlow," "Odoo Community Association (OCA)",
|
||||
"website": "https://github.com/OCA/stock-logistics-reporting",
|
||||
"depends": ["stock"],
|
||||
"data": ["wizards/stock_quantity_history.xml"],
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Copyright 2019 Eficent Business and IT Consulting Services, S.L.
|
||||
# Copyright 2019 ForgeFlow S.L.
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from odoo.tests.common import SavepointCase
|
||||
@@ -49,11 +49,10 @@ class TestStockQuantityHistoryLocation(SavepointCase):
|
||||
{
|
||||
"location_id": self.test_stock_loc.id,
|
||||
"include_child_locations": True,
|
||||
"compute_at_date": 1,
|
||||
"date": "2019-08-12",
|
||||
"inventory_datetime": "2019-08-12 00:00:00",
|
||||
}
|
||||
)
|
||||
action = wizard.with_context(company_owned=True).open_table()
|
||||
action = wizard.with_context(company_owned=True).open_at_date()
|
||||
self.assertEquals(
|
||||
self.product.with_context(action["context"]).qty_available, 100.0
|
||||
)
|
||||
@@ -66,24 +65,14 @@ class TestStockQuantityHistoryLocation(SavepointCase):
|
||||
|
||||
def test_wizard_current(self):
|
||||
wizard = self.env["stock.quantity.history"].create(
|
||||
{
|
||||
"location_id": self.test_stock_loc.id,
|
||||
"include_child_locations": False,
|
||||
"compute_at_date": 0,
|
||||
}
|
||||
)
|
||||
action = wizard.with_context().open_table()
|
||||
self.assertEquals(
|
||||
action["domain"], [("location_id", "=", self.test_stock_loc.id)]
|
||||
{"location_id": self.test_stock_loc.id, "include_child_locations": False}
|
||||
)
|
||||
action = wizard.with_context().open_at_date()
|
||||
self.assertEquals(action["context"]["compute_child"], False)
|
||||
self.assertEquals(action["context"]["location"], self.test_stock_loc.id)
|
||||
wizard = self.env["stock.quantity.history"].create(
|
||||
{
|
||||
"location_id": self.test_stock_loc.id,
|
||||
"include_child_locations": True,
|
||||
"compute_at_date": 0,
|
||||
}
|
||||
)
|
||||
action = wizard.with_context().open_table()
|
||||
self.assertEquals(
|
||||
action["domain"], [("location_id", "child_of", self.test_stock_loc.id)]
|
||||
{"location_id": self.test_stock_loc.id, "include_child_locations": True}
|
||||
)
|
||||
action = wizard.with_context().open_at_date()
|
||||
self.assertEquals(action["context"]["compute_child"], True)
|
||||
self.assertEquals(action["context"]["location"], self.test_stock_loc.id)
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Copyright 2019 Eficent Business and IT Consulting Services, S.L.
|
||||
# Copyright 2019 ForgeFlow S.L.
|
||||
# Copyright 2019 Aleph Objects, Inc.
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
import ast
|
||||
@@ -14,22 +14,13 @@ class StockQuantityHistory(models.TransientModel):
|
||||
)
|
||||
include_child_locations = fields.Boolean("Include child locations", default=True)
|
||||
|
||||
def open_table(self):
|
||||
action = super(StockQuantityHistory, self).open_table()
|
||||
def open_at_date(self):
|
||||
action = super(StockQuantityHistory, self).open_at_date()
|
||||
ctx = action["context"]
|
||||
if isinstance(ctx, str):
|
||||
ctx = ast.literal_eval(ctx)
|
||||
# If we are opening the current quants, filter by domain
|
||||
if (
|
||||
self.location_id
|
||||
and not self.compute_at_date
|
||||
and not self.env.context.get("valuation")
|
||||
):
|
||||
if self.include_child_locations:
|
||||
action["domain"] = [("location_id", "child_of", self.location_id.id)]
|
||||
else:
|
||||
action["domain"] = [("location_id", "=", self.location_id.id)]
|
||||
elif self.location_id:
|
||||
if self.location_id:
|
||||
ctx["location"] = self.location_id.id
|
||||
ctx["compute_child"] = self.include_child_locations
|
||||
if ctx.get("company_owned", False):
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<field name="model">stock.quantity.history</field>
|
||||
<field name="inherit_id" ref="stock.view_stock_quantity_history"/>
|
||||
<field name="arch" type="xml">
|
||||
<field name="compute_at_date" position="before">
|
||||
<field name="inventory_datetime" position="before">
|
||||
<field name="location_id"/>
|
||||
<field name="include_child_locations"
|
||||
attrs="{'invisible': [('location_id', '=', False)]}"/>
|
||||
|
||||
Reference in New Issue
Block a user