Skip to content

Commit 7ff04fb

Browse files
committed
[MIG] account_asset_invoice_line_link: Migration to 16.0
1 parent d4d376b commit 7ff04fb

File tree

11 files changed

+488
-68
lines changed

11 files changed

+488
-68
lines changed
+55-10
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,71 @@
1-
.. image:: https://img.shields.io/badge/license-AGPL--3-blue.png
2-
:target: https://www.gnu.org/licenses/agpl
3-
:alt: License: AGPL-3
4-
51
=======================
62
Asset invoice line link
73
=======================
84

9-
* This module adds a link between assets and invoice lines
5+
..
6+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
7+
!! This file is generated by oca-gen-addon-readme !!
8+
!! changes will be overwritten. !!
9+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10+
!! source digest: sha256:9112e485a3332190df6ff635a91b865c956111224ac9ad4025a9726f923e0198
11+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12+
13+
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
14+
:target: https://odoo-community.org/page/development-status
15+
:alt: Beta
16+
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
17+
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
18+
:alt: License: AGPL-3
19+
.. |badge3| image:: https://img.shields.io/badge/github-nuobit%2Fodoo--addons-lightgray.png?logo=github
20+
:target: https://github.com/nuobit/odoo-addons/tree/16.0/account_asset_invoice_line_link
21+
:alt: nuobit/odoo-addons
22+
23+
|badge1| |badge2| |badge3|
24+
25+
Adds a link between assets and invoice lines
1026

27+
**Table of contents**
28+
29+
.. contents::
30+
:local:
1131

1232
Bug Tracker
1333
===========
1434

15-
Bugs are tracked on `GitHub Issues
16-
<https://github.com/nuobit/odoo-addons/issues>`_. In case of trouble, please
17-
check there if your issue has already been reported. If you spotted it first,
18-
help us smashing it by providing a detailed and welcomed feedback.
35+
Bugs are tracked on `GitHub Issues <https://github.com/nuobit/odoo-addons/issues>`_.
36+
In case of trouble, please check there if your issue has already been reported.
37+
If you spotted it first, help us to smash it by providing a detailed and welcomed
38+
`feedback <https://github.com/nuobit/odoo-addons/issues/new?body=module:%20account_asset_invoice_line_link%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
39+
40+
Do not contact contributors directly about support or help with technical issues.
1941

2042
Credits
2143
=======
2244

45+
Authors
46+
-------
47+
48+
* NuoBiT Solutions SL
49+
2350
Contributors
2451
------------
2552

26-
* Eric Antones <[email protected]>
53+
- `NuoBiT <https://www.nuobit.com>`__:
54+
55+
- Eric Antones [email protected]
56+
- Deniz Gallo [email protected]
57+
58+
Maintainers
59+
-----------
60+
61+
.. |maintainer-eantones| image:: https://github.com/eantones.png?size=40px
62+
:target: https://github.com/eantones
63+
:alt: eantones
64+
65+
Current maintainer:
66+
67+
|maintainer-eantones|
68+
69+
This module is part of the `nuobit/odoo-addons <https://github.com/nuobit/odoo-addons/tree/16.0/account_asset_invoice_line_link>`_ project on GitHub.
70+
71+
You are welcome to contribute.
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl)
2-
31
from . import models
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
# Copyright NuoBiT Solutions, S.L. (<https://www.nuobit.com>)
2-
# Eric Antones <[email protected]>
2+
# Copyright NuoBiT Solutions - Antones <[email protected]>
3+
# Copyright 2025 NuoBiT Solutions - Deniz Gallo <[email protected]>
34
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl)
45

56
{
67
"name": "Asset invoice line link",
78
"summary": "Adds a link between assets and invoice lines",
8-
"version": "14.0.1.0.0",
9+
"version": "16.0.0.0.0",
910
"category": "Accounting",
10-
"author": "NuoBiT Solutions, S.L., Eric Antones",
11+
"author": "NuoBiT Solutions SL",
1112
"website": "https://github.com/nuobit/odoo-addons",
1213
"license": "AGPL-3",
1314
"depends": [
@@ -16,7 +17,6 @@
1617
"data": [
1718
"views/account_asset_view.xml",
1819
],
19-
"installable": True,
2020
"development_status": "Beta",
2121
"maintainers": ["eantones"],
2222
}

account_asset_invoice_line_link/migrations/14.0.1.0.0/pre-migration.py

-44
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
1-
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl)
2-
31
from . import account_asset
42
from . import account_move

account_asset_invoice_line_link/models/account_asset.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# Copyright NuoBiT Solutions, S.L. (<https://www.nuobit.com>)
2-
# Eric Antones <[email protected]>
1+
# Copyright NuoBiT Solutions - Antones <[email protected]>
32
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl)
43

54
from odoo import fields, models

account_asset_invoice_line_link/models/account_move.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# Copyright NuoBiT Solutions, S.L. (<https://www.nuobit.com>)
2-
# Eric Antones <[email protected]>
1+
# Copyright NuoBiT Solutions - Antones <[email protected]>
32
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl)
43

54
from odoo import fields, models
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
- [NuoBiT](https://www.nuobit.com):
2+
- Eric Antones <[email protected]>
3+
- Deniz Gallo <[email protected]>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Adds a link between assets and invoice lines

0 commit comments

Comments
 (0)