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

[NEW] product lot fiscal comment module #8

Closed
wants to merge 2 commits into from
Closed
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
102 changes: 102 additions & 0 deletions product_lot_fiscal_comment/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
==========================
Product Lot Fiscal Comment
==========================

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

.. |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%2Fkmee--odoo--addons-lightgray.png?logo=github
:target: https://github.com/OCA/kmee-odoo-addons/tree/14.0/product_lot_fiscal_comment
:alt: OCA/kmee-odoo-addons
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/kmee-odoo-addons-14-0/kmee-odoo-addons-14-0-product_lot_fiscal_comment
: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/kmee-odoo-addons&target_branch=14.0
:alt: Try me on Runboat

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

This module allows the user to enter which lot of the product was used
in comment of the fiscal document.

**Table of contents**

.. contents::
:local:

Configuration
=============

To add the product lot used in the fiscal document:

::

1. Go to **Fiscal > Configuration > Operation**.
2. Enter the main operation of your workflow, edit and reset to draft.
3. Click on the operation line where you want to insert the product lot comment.
4. Go to **Extra Info**, click on the field **Comment** and select "Lote".
5. Save, click on "Review" and "Approval" and save again.

Usage
=====

To use this module, you need to:

::

1. Follow the steps provided in the file "CONFIGURE.md".
2. Download the fiscal document xml and search for "LOTE:", if it appears, the module is working.

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

Bugs are tracked on `GitHub Issues <https://github.com/OCA/kmee-odoo-addons/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/kmee-odoo-addons/issues/new?body=module:%20product_lot_fiscal_comment%0Aversion:%2014.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
-------

* KMEE

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

- ``KMEE <https://www.kmee.com.br>``\ \_\_:

- Bruno Corredato Botti

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/kmee-odoo-addons <https://github.com/OCA/kmee-odoo-addons/tree/14.0/product_lot_fiscal_comment>`_ 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 product_lot_fiscal_comment/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import models
17 changes: 17 additions & 0 deletions product_lot_fiscal_comment/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Copyright 2024 KMEE
# License LGPL-3 or later (https://www.gnu.org/licenses/agpl).

{
"name": "Product Lot Fiscal Comment",
"version": "14.0.1.0.0",
"license": "LGPL-3",
"author": "KMEE",
"website": "https://github.com/KMEE/kmee-odoo-addons",
"depends": [
"l10n_br_fiscal",
"account_invoice_production_lot",
],
"data": [
"data/prod_lot_fiscal_comment.xml",
],
}
9 changes: 9 additions & 0 deletions product_lot_fiscal_comment/data/prod_lot_fiscal_comment.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8" ?>
<odoo noupdate="1">
<record id="product_lot_fiscal_comment" model="l10n_br_fiscal.comment">
<field name="name">Lote</field>
<field name="comment">LOTE: ${ lot }</field>
<field name="comment_type">fiscal</field>
<field name="object">l10n_br_fiscal.document.line.mixin</field>
</record>
</odoo>
1 change: 1 addition & 0 deletions product_lot_fiscal_comment/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import document_fiscal_line_mixin
12 changes: 12 additions & 0 deletions product_lot_fiscal_comment/models/document_fiscal_line_mixin.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
from odoo import models


class FiscalDocumentLineMixinMethods(models.AbstractModel):
_inherit = "l10n_br_fiscal.document.line.mixin.methods"

def __document_comment_vals(self):
res = super(FiscalDocumentLineMixinMethods, self).__document_comment_vals()
res["lot"] = ", ".join(
self.account_line_ids.mapped("prod_lot_ids").mapped("name")
)
return res
7 changes: 7 additions & 0 deletions product_lot_fiscal_comment/readme/CONFIGURE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
To add the product lot used in the fiscal document:

1. Go to **Fiscal > Configuration > Operation**.
2. Enter the main operation of your workflow, edit and reset to draft.
3. Click on the operation line where you want to insert the product lot comment.
4. Go to **Extra Info**, click on the field **Comment** and select "Lote".
5. Save, click on "Review" and "Approval" and save again.
3 changes: 3 additions & 0 deletions product_lot_fiscal_comment/readme/CONTRIBUTORS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
* `KMEE <https://www.kmee.com.br>`__:

* Bruno Corredato Botti
1 change: 1 addition & 0 deletions product_lot_fiscal_comment/readme/DESCRIPTION.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This module allows the user to enter which lot of the product was used in comment of the fiscal document.
4 changes: 4 additions & 0 deletions product_lot_fiscal_comment/readme/USAGE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
To use this module, you need to:

1. Follow the steps provided in the file "CONFIGURE.md".
2. Download the fiscal document xml and search for "LOTE:", if it appears, the module is working.
Loading
Loading