-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from kmee/feature/newlicense
[NEW] product lot fiscal comment module
- Loading branch information
Showing
17 changed files
with
601 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
========================== | ||
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-AGPL--3-blue.png | ||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html | ||
:alt: License: AGPL-3 | ||
.. |badge3| image:: https://img.shields.io/badge/github-KMEE%2Fkmee--odoo--addons-lightgray.png?logo=github | ||
:target: https://github.com/KMEE/kmee-odoo-addons/tree/14.0/l10n_br_fiscal_comment_product_lot | ||
:alt: KMEE/kmee-odoo-addons | ||
|
||
|badge1| |badge2| |badge3| | ||
|
||
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/KMEE/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/KMEE/kmee-odoo-addons/issues/new?body=module:%20l10n_br_fiscal_comment_product_lot%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 part of the `KMEE/kmee-odoo-addons <https://github.com/KMEE/kmee-odoo-addons/tree/14.0/l10n_br_fiscal_comment_product_lot>`_ project on GitHub. | ||
|
||
You are welcome to contribute. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
from . import models |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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": "AGPL-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
9
l10n_br_fiscal_comment_product_lot/data/prod_lot_fiscal_comment.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
12
l10n_br_fiscal_comment_product_lot/models/document_fiscal_line_mixin.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
* `KMEE <https://www.kmee.com.br>`__: | ||
|
||
* Bruno Corredato Botti |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
Oops, something went wrong.