Skip to content

Commit e187125

Browse files
committed
[ADD] account_move_line_stock_info: Add module for stock move tracking in journal entries
- Add Many2one field linking account.move.line to stock.move - Provides backward compatibility for Odoo 19.0 migration - Add migration scripts for version 19.0.1.0 - Includes views and security rules for stock-account integration
1 parent afe8fe5 commit e187125

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ repos:
5252
- id: oca-gen-addon-readme
5353
args:
5454
- --addons-dir=.
55-
- --branch=18.0
55+
- --branch=19.0
5656
- --org-name=OCA
5757
- --repo-name=stock-logistics-warehouse
5858
- --if-source-changed

.pylintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ manifest-required-authors=Odoo Community Association (OCA)
1010
manifest-required-keys=license
1111
manifest-deprecated-keys=description,active
1212
license-allowed=AGPL-3,GPL-2,GPL-2 or any later version,GPL-3,GPL-3 or any later version,LGPL-3
13-
valid-odoo-versions=18.0
13+
valid-odoo-versions=18.0,19.0
1414

1515
[MESSAGES CONTROL]
1616
disable=all

.pylintrc-mandatory

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ manifest-required-authors=Odoo Community Association (OCA)
99
manifest-required-keys=license
1010
manifest-deprecated-keys=description,active
1111
license-allowed=AGPL-3,GPL-2,GPL-2 or any later version,GPL-3,GPL-3 or any later version,LGPL-3
12-
valid-odoo-versions=18.0
12+
valid-odoo-versions=18.0,19.0
1313

1414
[MESSAGES CONTROL]
1515
disable=all

account_move_line_stock_info/__manifest__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# © 2016 ForgeFlow S.L.
22
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
33
{
4-
"name": "Account Move Line Migration (Odoo 19)",
5-
"version": "19.0.1.0.0",
4+
"name": "Account Move Line Stock Info",
5+
"version": "18.0.1.0.0",
66
"depends": ["stock_account"],
77
"author": "ForgeFlow," "Odoo Community Association (OCA)",
88
"website": "https://github.com/OCA/stock-logistics-warehouse",

0 commit comments

Comments
 (0)