Skip to content

Commit

Permalink
Merge PR #209 into 17.0
Browse files Browse the repository at this point in the history
Signed-off-by pedrobaeza
  • Loading branch information
OCA-git-bot committed Jan 24, 2025
2 parents abb0fb5 + 74979d0 commit 7ff5760
Show file tree
Hide file tree
Showing 17 changed files with 725 additions and 0 deletions.
103 changes: 103 additions & 0 deletions sale_report_margin/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
==================
Sale Report Margin
==================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:d88ddf73e1f1fc5a50a47a17cfd138876b0ff7dd8bab256e781b8eba61118967
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png
:target: https://odoo-community.org/page/development-status
:alt: Production/Stable
.. |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-OCA%2Fmargin--analysis-lightgray.png?logo=github
:target: https://github.com/OCA/margin-analysis/tree/17.0/sale_report_margin
:alt: OCA/margin-analysis
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/margin-analysis-17-0/margin-analysis-17-0-sale_report_margin
: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/margin-analysis&target_branch=17.0
:alt: Try me on Runboat

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

Adds purchase_price field to sale report. This field comes from the
*Cost* field configured in the products themselves and on the defined
inventory valuation method.

**Table of contents**

.. contents::
:local:

Usage
=====

Go to *Sales > Reporting > Sales* and you'll find the new *Purchase
Price* measure.

Known issues / Roadmap
======================

- To be added Gross Margin and comparisons.

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

Bugs are tracked on `GitHub Issues <https://github.com/OCA/margin-analysis/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/margin-analysis/issues/new?body=module:%20sale_report_margin%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
-------

* Tecnativa

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

- `Tecnativa <https://www.tecnativa.com>`__:

- Sergio Teruel
- David Vidal
- Carlos Roca

- SodexisTeam <dev@sodexis.com>

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.

.. |maintainer-sergio-teruel| image:: https://github.com/sergio-teruel.png?size=40px
:target: https://github.com/sergio-teruel
:alt: sergio-teruel

Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:

|maintainer-sergio-teruel|

This module is part of the `OCA/margin-analysis <https://github.com/OCA/margin-analysis/tree/17.0/sale_report_margin>`_ 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 sale_report_margin/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import reports
14 changes: 14 additions & 0 deletions sale_report_margin/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Copyright 2018 Tecnativa - Sergio Teruel
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "Sale Report Margin",
"version": "17.0.1.0.0",
"author": "Tecnativa, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/margin-analysis",
"development_status": "Production/Stable",
"maintainers": ["sergio-teruel"],
"category": "Sales",
"license": "AGPL-3",
"depends": ["sale_margin"],
"installable": True,
}
28 changes: 28 additions & 0 deletions sale_report_margin/i18n/es.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_report_margin
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 13.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-03-23 21:10+0000\n"
"PO-Revision-Date: 2023-09-02 18:17+0000\n"
"Last-Translator: gelo joga Rodríguez <gelo.joga@factorlibre.com>\n"
"Language-Team: \n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.17\n"

#. module: sale_report_margin
#: model:ir.model.fields,field_description:sale_report_margin.field_sale_report__purchase_price
msgid "Purchase Price"
msgstr "Coste unitario"

#. module: sale_report_margin
#: model:ir.model,name:sale_report_margin.model_sale_report
msgid "Sales Analysis Report"
msgstr "Análisis de ventas"
27 changes: 27 additions & 0 deletions sale_report_margin/i18n/it.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_report_margin
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2024-02-01 13:33+0000\n"
"Last-Translator: mymage <stefano.consolaro@mymage.it>\n"
"Language-Team: none\n"
"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.17\n"

#. module: sale_report_margin
#: model:ir.model.fields,field_description:sale_report_margin.field_sale_report__purchase_price
msgid "Purchase Price"
msgstr "Prezzo di acquisto"

#. module: sale_report_margin
#: model:ir.model,name:sale_report_margin.model_sale_report
msgid "Sales Analysis Report"
msgstr "Resoconto analisi vendite"
24 changes: 24 additions & 0 deletions sale_report_margin/i18n/sale_report_margin.pot
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_report_margin
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"Last-Translator: \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"

#. module: sale_report_margin
#: model:ir.model.fields,field_description:sale_report_margin.field_sale_report__purchase_price
msgid "Purchase Price"
msgstr ""

#. module: sale_report_margin
#: model:ir.model,name:sale_report_margin.model_sale_report
msgid "Sales Analysis Report"
msgstr ""
3 changes: 3 additions & 0 deletions sale_report_margin/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build-system]
requires = ["whool"]
build-backend = "whool.buildapi"
7 changes: 7 additions & 0 deletions sale_report_margin/readme/CONTRIBUTORS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
- [Tecnativa](https://www.tecnativa.com):

> - Sergio Teruel
> - David Vidal
> - Carlos Roca
- SodexisTeam \<<dev@sodexis.com>\>
3 changes: 3 additions & 0 deletions sale_report_margin/readme/DESCRIPTION.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Adds purchase_price field to sale report. This field comes from the
*Cost* field configured in the products themselves and on the defined
inventory valuation method.
1 change: 1 addition & 0 deletions sale_report_margin/readme/ROADMAP.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- To be added Gross Margin and comparisons.
2 changes: 2 additions & 0 deletions sale_report_margin/readme/USAGE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Go to *Sales \> Reporting \> Sales* and you'll find the new *Purchase
Price* measure.
1 change: 1 addition & 0 deletions sale_report_margin/reports/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import sale_report
15 changes: 15 additions & 0 deletions sale_report_margin/reports/sale_report.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Copyright 2018 Tecnativa - Sergio Teruel
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

from odoo import fields, models


class SaleReport(models.Model):
_inherit = "sale.report"

purchase_price = fields.Float(readonly=True)

def _select_additional_fields(self):
res = super()._select_additional_fields()
res["purchase_price"] = "SUM(l.purchase_price)"
return res
Binary file added sale_report_margin/static/description/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 7ff5760

Please sign in to comment.