Maintainers
This module is maintained by the OCA.
- + + +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.
diff --git a/README.md b/README.md index 977086e7d569..032757058bc5 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ addon | version | maintainers | summary [account_financial_report](account_financial_report/) | 15.0.3.1.0 | | OCA Financial Reports [account_financial_report_sale](account_financial_report_sale/) | 15.0.1.0.0 | | OCA Financial Reports Sale [account_move_line_report_xls](account_move_line_report_xls/) | 15.0.1.0.0 | | Journal Items Excel export -[account_purchase_stock_report_non_billed](account_purchase_stock_report_non_billed/) | 15.0.1.1.0 | [![CarlosRoca13](https://github.com/CarlosRoca13.png?size=30px)](https://github.com/CarlosRoca13) | Account Purchase Stock Report Non Billed +[account_purchase_stock_report_non_billed](account_purchase_stock_report_non_billed/) | 15.0.1.1.1 | [![CarlosRoca13](https://github.com/CarlosRoca13.png?size=30px)](https://github.com/CarlosRoca13) | Account Purchase Stock Report Non Billed [account_sale_stock_report_non_billed](account_sale_stock_report_non_billed/) | 15.0.1.0.4 | [![CarlosRoca13](https://github.com/CarlosRoca13.png?size=30px)](https://github.com/CarlosRoca13) | Account Sale Stock Report Non Billed [account_tax_balance](account_tax_balance/) | 15.0.1.1.1 | | Compute tax balances based on date range [mis_builder_cash_flow](mis_builder_cash_flow/) | 15.0.1.0.0 | [![jjscarafia](https://github.com/jjscarafia.png?size=30px)](https://github.com/jjscarafia) | MIS Builder Cash Flow diff --git a/account_purchase_stock_report_non_billed/README.rst b/account_purchase_stock_report_non_billed/README.rst index 5a6af42d5bf3..b0fb6e45d459 100644 --- a/account_purchase_stock_report_non_billed/README.rst +++ b/account_purchase_stock_report_non_billed/README.rst @@ -7,7 +7,7 @@ Account Purchase Stock Report Non Billed !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !! source digest: sha256:cd13cc9df796bb24fe02e2cdcd3ead8c81de004968ccdbec83bc73a9d316691b + !! source digest: sha256:a6940a2b5f43eb74232ba340660d152f684886c5303ef9449eabb2b20ba14b70 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png diff --git a/account_purchase_stock_report_non_billed/__manifest__.py b/account_purchase_stock_report_non_billed/__manifest__.py index 2c7ed8a16e29..a95187e3370b 100644 --- a/account_purchase_stock_report_non_billed/__manifest__.py +++ b/account_purchase_stock_report_non_billed/__manifest__.py @@ -2,7 +2,7 @@ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { "name": "Account Purchase Stock Report Non Billed", - "version": "15.0.1.1.0", + "version": "15.0.1.1.1", "license": "AGPL-3", "author": "Tecnativa, Odoo Community Association (OCA)", "website": "https://github.com/OCA/account-financial-reporting", diff --git a/account_purchase_stock_report_non_billed/models/stock_move.py b/account_purchase_stock_report_non_billed/models/stock_move.py index f16af0be3c68..0e1e2bf0ef6f 100644 --- a/account_purchase_stock_report_non_billed/models/stock_move.py +++ b/account_purchase_stock_report_non_billed/models/stock_move.py @@ -38,7 +38,8 @@ def get_quantity_invoiced(self, invoice_lines): date_end = self.env.context.get("moves_date_end") if date_start and date_end: moves = moves.filtered( - lambda ml: ml.date_done >= date_start and ml.date_done <= date_end + lambda ml: ml.state == "done" + and (ml.date_done >= date_start and ml.date_done <= date_end) ) total_qty = moves.get_total_devolution_moves() if qty_invoiced != total_qty: diff --git a/account_purchase_stock_report_non_billed/static/description/index.html b/account_purchase_stock_report_non_billed/static/description/index.html index c37e259095db..1a79d69431f6 100644 --- a/account_purchase_stock_report_non_billed/static/description/index.html +++ b/account_purchase_stock_report_non_billed/static/description/index.html @@ -1,4 +1,3 @@ -
@@ -9,10 +8,11 @@ /* :Author: David Goodger (goodger@python.org) -:Id: $Id: html4css1.css 8954 2022-01-20 10:10:25Z milde $ +:Id: $Id: html4css1.css 9511 2024-01-13 09:50:07Z milde $ :Copyright: This stylesheet has been placed in the public domain. Default cascading style sheet for the HTML output of Docutils. +Despite the name, some widely supported CSS2 features are used. See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to customize this style sheet. @@ -275,7 +275,7 @@ margin-left: 2em ; margin-right: 2em } -pre.code .ln { color: grey; } /* line numbers */ +pre.code .ln { color: gray; } /* line numbers */ pre.code, code { background-color: #eeeeee } pre.code .comment, code .comment { color: #5C6576 } pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold } @@ -301,7 +301,7 @@ span.pre { white-space: pre } -span.problematic { +span.problematic, pre.problematic { color: red } span.section-subtitle { @@ -367,7 +367,7 @@Module that extends account_sale_stock_report_non_billed to add the non billed stock @@ -425,7 +425,9 @@
This module is maintained by the OCA.
- + + +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.