Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[17.0][ADD] acount_move_tags: add module #1809

Open
wants to merge 1 commit into
base: 17.0
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
79 changes: 79 additions & 0 deletions account_move_tag/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
================
Account Move Tag
================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:d0ae882a6e997e4ba0e939e2abcbf805d1c4a971aa50a4a33506f462e18518fd
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
:target: https://odoo-community.org/page/development-status
:alt: Beta
.. |badge2| image:: https://img.shields.io/badge/licence-LGPL--3-blue.png
:target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html
:alt: License: LGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Faccount--invoicing-lightgray.png?logo=github
:target: https://github.com/OCA/account-invoicing/tree/17.0/account_move_tag
:alt: OCA/account-invoicing
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/account-invoicing-17-0/account-invoicing-17-0-account_move_tag
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
:target: https://runboat.odoo-community.org/builds?repo=OCA/account-invoicing&target_branch=17.0
:alt: Try me on Runboat

|badge1| |badge2| |badge3| |badge4| |badge5|

Adds tags to the account move so vendor bills and customer invoices can
be easily distinguished in the accounting journal.

::

**Table of contents**

.. contents::
:local:

Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/OCA/account-invoicing/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us to smash it by providing a detailed and welcomed
`feedback <https://github.com/OCA/account-invoicing/issues/new?body=module:%20account_move_tag%0Aversion:%2017.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

Do not contact contributors directly about support or help with technical issues.

Credits
=======

Authors
-------

* Codeforward B.V.

Contributors
------------

- Joep Sanders [email protected]

Maintainers
-----------

This module is maintained by the OCA.

.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org

OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.

This module is part of the `OCA/account-invoicing <https://github.com/OCA/account-invoicing/tree/17.0/account_move_tag>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
1 change: 1 addition & 0 deletions account_move_tag/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import models
20 changes: 20 additions & 0 deletions account_move_tag/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"name": "Account Move Tag",
"summary": """
Adds tags to the account move so vendor bills and customer invoices can be
easily distinguished in the accounting journal.
""",
"author": "Codeforward B.V., Odoo Community Association (OCA)",
"website": "https://github.com/OCA/account-invoicing",
"category": "Hidden",
"version": "17.0.1.0.0",
"depends": ["account"],
"license": "LGPL-3",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why not putting it AGPL-3 for avoiding private extensions on this?

Copy link
Author

@joepsanders joepsanders Oct 7, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi Pedro, we'll dive into the licensing question ;). Thanks

"data": [
"views/account_move_views.xml",
"views/account_move_line_views.xml",
"views/account_move_tag_views.xml",
"views/account_move_tag_menu_views.xml",
"security/ir.model.access.csv",
],
}
3 changes: 3 additions & 0 deletions account_move_tag/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from . import account_move_tag
from . import account_move
from . import account_move_line
15 changes: 15 additions & 0 deletions account_move_tag/models/account_move.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
from odoo import fields, models


class AccountMove(models.Model):
_inherit = "account.move"

tag_ids = fields.Many2many(
comodel_name="account.move.tag",
relation="account_move_tag_rel",
column1="move_id",
column2="tag_id",
string="Account Move Tags",
help="Classify and analyze your account move categories "
"like bills, payments, deposits, etc.",
)
7 changes: 7 additions & 0 deletions account_move_tag/models/account_move_line.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
from odoo import fields, models


class AccountMoveLine(models.Model):
_inherit = "account.move.line"

tag_ids = fields.Many2many(related="move_id.tag_ids")
18 changes: 18 additions & 0 deletions account_move_tag/models/account_move_tag.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
from random import randint

from odoo import fields, models


class Tag(models.Model):
_name = "account.move.tag"
_description = "Account Move Tag"

def _get_default_color(self):
return randint(1, 11)

Check warning on line 11 in account_move_tag/models/account_move_tag.py

View check run for this annotation

Codecov / codecov/patch

account_move_tag/models/account_move_tag.py#L11

Added line #L11 was not covered by tests

name = fields.Char("Tag Name", required=True, translate=True)
color = fields.Integer(default=_get_default_color)

_sql_constraints = [
("name_uniq", "unique (name)", "Tag name already exists!"),
]
3 changes: 3 additions & 0 deletions account_move_tag/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build-system]
requires = ["whool"]
build-backend = "whool.buildapi"
1 change: 1 addition & 0 deletions account_move_tag/readme/CONTRIBUTORS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Joep Sanders <[email protected]>
3 changes: 3 additions & 0 deletions account_move_tag/readme/DESCRIPTION.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Adds tags to the account move so vendor bills and customer invoices can be
easily distinguished in the accounting journal.
```
3 changes: 3 additions & 0 deletions account_move_tag/security/ir.model.access.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
access_account_move_tag,account_move_tag,model_account_move_tag,base.group_user,1,0,0,0
access_account_move_tag_manager,account_move_tag manager,model_account_move_tag,account.group_account_manager,1,1,1,1
Loading
Loading