Skip to content

Commit

Permalink
[MIG] account_reporting_weight: Migration to 15.0
Browse files Browse the repository at this point in the history
TT36435
  • Loading branch information
victoralmau committed Aug 9, 2022
1 parent 747c4af commit ee958df
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 22 deletions.
13 changes: 7 additions & 6 deletions account_reporting_weight/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ Weights in the invoices analysis view
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Faccount--invoice--reporting-lightgray.png?logo=github
:target: https://github.com/OCA/account-invoice-reporting/tree/13.0/account_reporting_weight
:target: https://github.com/OCA/account-invoice-reporting/tree/15.0/account_reporting_weight
:alt: OCA/account-invoice-reporting
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/account-invoice-reporting-13-0/account-invoice-reporting-13-0-account_reporting_weight
:target: https://translation.odoo-community.org/projects/account-invoice-reporting-15-0/account-invoice-reporting-15-0-account_reporting_weight
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
:target: https://runbot.odoo-community.org/runbot/94/13.0
:target: https://runbot.odoo-community.org/runbot/94/15.0
:alt: Try me on Runbot

|badge1| |badge2| |badge3| |badge4| |badge5|
Expand All @@ -47,7 +47,7 @@ seeing the report.
Usage
=====

#. Go to *Invoicing > Reporting > Management > Invoices*.
#. Go to *Invoicing > Reporting > Management > Invoice Analysis*.
#. Add the "Weight" measure from your "Measures" dropdown in your analysis.

Bug Tracker
Expand All @@ -56,7 +56,7 @@ Bug Tracker
Bugs are tracked on `GitHub Issues <https://github.com/OCA/account-invoice-reporting/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us smashing it by providing a detailed and welcomed
`feedback <https://github.com/OCA/account-invoice-reporting/issues/new?body=module:%20account_reporting_weight%0Aversion:%2013.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
`feedback <https://github.com/OCA/account-invoice-reporting/issues/new?body=module:%20account_reporting_weight%0Aversion:%2015.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.

Expand All @@ -77,6 +77,7 @@ Contributors
* David Vidal
* Sergio Teruel
* Carlos Roca
* Víctor Martínez

Maintainers
~~~~~~~~~~~
Expand All @@ -91,6 +92,6 @@ 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-invoice-reporting <https://github.com/OCA/account-invoice-reporting/tree/13.0/account_reporting_weight>`_ project on GitHub.
This module is part of the `OCA/account-invoice-reporting <https://github.com/OCA/account-invoice-reporting/tree/15.0/account_reporting_weight>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
6 changes: 3 additions & 3 deletions account_reporting_weight/__manifest__.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# Copyright 2017 Pedro M. Baeza <[email protected]>
# Copyright 2017 Tecnativa - Pedro M. Baeza
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

{
"name": "Weights in the invoices analysis view",
"version": "13.0.1.0.1",
"version": "15.0.1.0.0",
"author": "Tecnativa," "Odoo Community Association (OCA)",
"category": "Inventory, Logistics, Warehousing",
"development_status": "Production/Stable",
"license": "AGPL-3",
"website": "https://github.com/OCA/account-invoice-reporting",
"depends": ["sale"],
"depends": ["account"],
"installable": True,
}
1 change: 1 addition & 0 deletions account_reporting_weight/readme/CONTRIBUTORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@
* David Vidal
* Sergio Teruel
* Carlos Roca
* Víctor Martínez
2 changes: 1 addition & 1 deletion account_reporting_weight/readme/USAGE.rst
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#. Go to *Invoicing > Reporting > Management > Invoices*.
#. Go to *Invoicing > Reporting > Management > Invoice Analysis*.
#. Add the "Weight" measure from your "Measures" dropdown in your analysis.
15 changes: 8 additions & 7 deletions account_reporting_weight/reports/account_invoice_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,13 @@ class AccountInvoiceReport(models.Model):
def _select(self):
select_str = super()._select()
select_str += """
, SUM(product.weight * (
CASE
WHEN move.type IN ('in_invoice','out_refund','in_receipt') THEN -1
ELSE 1 END
) * line.quantity
/ uom_line.factor * uom_template.factor)
as weight
, COALESCE(
(product.weight * (
CASE
WHEN move.move_type IN ('in_invoice','out_refund','in_receipt') THEN -1
ELSE 1 END
) * line.quantity
/ uom_line.factor * uom_template.factor
), 0.0) as weight
"""
return select_str
11 changes: 6 additions & 5 deletions account_reporting_weight/static/description/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="Docutils 0.15.1: http://docutils.sourceforge.net/" />
<meta name="generator" content="Docutils: http://docutils.sourceforge.net/" />
<title>Weights in the invoices analysis view</title>
<style type="text/css">

Expand Down Expand Up @@ -367,7 +367,7 @@ <h1 class="title">Weights in the invoices analysis view</h1>
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
<p><a class="reference external" href="https://odoo-community.org/page/development-status"><img alt="Production/Stable" src="https://img.shields.io/badge/maturity-Production%2FStable-green.png" /></a> <a class="reference external" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external" href="https://github.com/OCA/account-invoice-reporting/tree/13.0/account_reporting_weight"><img alt="OCA/account-invoice-reporting" src="https://img.shields.io/badge/github-OCA%2Faccount--invoice--reporting-lightgray.png?logo=github" /></a> <a class="reference external" href="https://translation.odoo-community.org/projects/account-invoice-reporting-13-0/account-invoice-reporting-13-0-account_reporting_weight"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external" href="https://runbot.odoo-community.org/runbot/94/13.0"><img alt="Try me on Runbot" src="https://img.shields.io/badge/runbot-Try%20me-875A7B.png" /></a></p>
<p><a class="reference external" href="https://odoo-community.org/page/development-status"><img alt="Production/Stable" src="https://img.shields.io/badge/maturity-Production%2FStable-green.png" /></a> <a class="reference external" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external" href="https://github.com/OCA/account-invoice-reporting/tree/15.0/account_reporting_weight"><img alt="OCA/account-invoice-reporting" src="https://img.shields.io/badge/github-OCA%2Faccount--invoice--reporting-lightgray.png?logo=github" /></a> <a class="reference external" href="https://translation.odoo-community.org/projects/account-invoice-reporting-15-0/account-invoice-reporting-15-0-account_reporting_weight"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external" href="https://runbot.odoo-community.org/runbot/94/15.0"><img alt="Try me on Runbot" src="https://img.shields.io/badge/runbot-Try%20me-875A7B.png" /></a></p>
<p>This module adds the measure “Weight” in the invoices analysis view.</p>
<p><strong>Table of contents</strong></p>
<div class="contents local topic" id="contents">
Expand Down Expand Up @@ -399,7 +399,7 @@ <h1><a class="toc-backref" href="#id2">Configuration</a></h1>
<div class="section" id="usage">
<h1><a class="toc-backref" href="#id3">Usage</a></h1>
<ol class="arabic simple">
<li>Go to <em>Invoicing &gt; Reporting &gt; Management &gt; Invoices</em>.</li>
<li>Go to <em>Invoicing &gt; Reporting &gt; Management &gt; Invoice Analysis</em>.</li>
<li>Add the “Weight” measure from your “Measures” dropdown in your analysis.</li>
</ol>
</div>
Expand All @@ -408,7 +408,7 @@ <h1><a class="toc-backref" href="#id4">Bug Tracker</a></h1>
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/account-invoice-reporting/issues">GitHub Issues</a>.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us smashing it by providing a detailed and welcomed
<a class="reference external" href="https://github.com/OCA/account-invoice-reporting/issues/new?body=module:%20account_reporting_weight%0Aversion:%2013.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
<a class="reference external" href="https://github.com/OCA/account-invoice-reporting/issues/new?body=module:%20account_reporting_weight%0Aversion:%2015.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
<p>Do not contact contributors directly about support or help with technical issues.</p>
</div>
<div class="section" id="credits">
Expand All @@ -427,6 +427,7 @@ <h2><a class="toc-backref" href="#id7">Contributors</a></h2>
<li>David Vidal</li>
<li>Sergio Teruel</li>
<li>Carlos Roca</li>
<li>Víctor Martínez</li>
</ul>
</li>
</ul>
Expand All @@ -438,7 +439,7 @@ <h2><a class="toc-backref" href="#id8">Maintainers</a></h2>
<p>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.</p>
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/account-invoice-reporting/tree/13.0/account_reporting_weight">OCA/account-invoice-reporting</a> project on GitHub.</p>
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/account-invoice-reporting/tree/15.0/account_reporting_weight">OCA/account-invoice-reporting</a> project on GitHub.</p>
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
</div>
</div>
Expand Down

0 comments on commit ee958df

Please sign in to comment.