Skip to content

Commit

Permalink
[MIG] stock_landed_costs_analytic: Migration to 17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rov-adhoc committed Mar 27, 2024
1 parent 4400b70 commit 5ea9d32
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion stock_landed_costs_analytic/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
This module adds an analytic account and analytic tags on landed costs
lines so that on landed costs validation account moves get analytic
account and analytic tags values from landed costs lines.""",
"version": "16.0.1.0.0",
"version": "17.0.1.0.0",
"license": "AGPL-3",
"author": "ACSONE SA/NV,Odoo Community Association (OCA)",
"website": "https://github.com/OCA/account-analytic",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class StockValuationAdjustmentLines(models.Model):
def _create_account_move_line(
self, move, credit_account_id, debit_account_id, qty_out, already_out_account_id
):
res = super(StockValuationAdjustmentLines, self)._create_account_move_line(
res = super()._create_account_move_line(
move, credit_account_id, debit_account_id, qty_out, already_out_account_id
)
cost_line = self.cost_line_id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

class TestStockLandedCostsAnalytic(TransactionCase):
def setUp(self):
super(TestStockLandedCostsAnalytic, self).setUp()
super().setUp()
self.Product = self.env["product.product"]
self.Picking = self.env["stock.picking"]
self.LandedCost = self.env["stock.landed.cost"]
Expand Down
1 change: 1 addition & 0 deletions test-requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
odoo-addon-account_analytic_tag @ git+https://github.com/OCA/account-analytic@refs/pull/638/head#subdirectory=account_analytic_tag

0 comments on commit 5ea9d32

Please sign in to comment.