Skip to content
Open
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
84 changes: 84 additions & 0 deletions sale_order_weight/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
=================
Sale Order Weight
=================

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

.. |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-GPL--3-blue.png
:target: http://www.gnu.org/licenses/gpl-3.0-standalone.html
:alt: License: GPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fsale--reporting-lightgray.png?logo=github
:target: https://github.com/OCA/sale-reporting/tree/17.0/sale_order_weight
:alt: OCA/sale-reporting
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/sale-reporting-17-0/sale-reporting-17-0-sale_order_weight
: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/sale-reporting&target_branch=17.0
:alt: Try me on Runboat

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

This module adds products weight in report for sale order.

**Table of contents**

.. contents::
:local:

Usage
=====

Print Sale Order report.

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

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

* Apulia Software
* Agile Business Group

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

- Andrea Cometa <a.cometa@apuliasoftware.it>
- Simone Rubino <simone.rubino@agilebg.com>
- `Heliconia Solutions Pvt. Ltd. <https://www.heliconia.io>`__

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/sale-reporting <https://github.com/OCA/sale-reporting/tree/17.0/sale_order_weight>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
4 changes: 4 additions & 0 deletions sale_order_weight/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Copyright 2016 Andrea Cometa - Apulia Software
# License AGPL-3.0 or later (http://www.gnu.org/licenses/gpl.html).

from . import models
19 changes: 19 additions & 0 deletions sale_order_weight/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Copyright 2016 Andrea Cometa - Apulia Software
# License AGPL-3.0 or later (http://www.gnu.org/licenses/gpl.html).

{
"name": "Sale Order Weight",
"summary": "Add products weight in report for sale order",
"version": "17.0.1.0.0",
"author": "Apulia Software, Agile Business Group,"
"Odoo Community Association (OCA)",
"website": "https://github.com/OCA/sale-reporting",
"license": "GPL-3",
"depends": [
"sale_management",
],
"data": [
"views/sale_report.xml",
],
"installable": True,
}
43 changes: 43 additions & 0 deletions sale_order_weight/i18n/ca.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_order_weight
#
# Translators:
# Carles Antoli <carlesantoli@hotmail.com>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-12-23 01:48+0000\n"
"PO-Revision-Date: 2022-04-13 14:05+0000\n"
"Last-Translator: Noel estudillo <noelestudilloviera@gmail.com>\n"
"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n"
"Language: ca\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.3.2\n"

#. module: sale_order_weight
#: model_terms:ir.ui.view,arch_db:sale_order_weight.report_saleorder_document
msgid "<span><b>Total Weight:</b></span>"
msgstr ""

#. module: sale_order_weight
#: model:ir.model,name:sale_order_weight.model_sale_order
msgid "Sales Order"
msgstr "Comandes de venda"

#. module: sale_order_weight
#: model:ir.model,name:sale_order_weight.model_sale_order_line
msgid "Sales Order Line"
msgstr ""

#. module: sale_order_weight
#: model_terms:ir.ui.view,arch_db:sale_order_weight.report_saleorder_document
msgid "Weight"
msgstr "Pes"

#~ msgid "Total Weight:"
#~ msgstr "Pes total:"
43 changes: 43 additions & 0 deletions sale_order_weight/i18n/de.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_order_weight
#
# Translators:
# Rudolf Schnapka <rs@techno-flex.de>, 2016
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-12-23 01:48+0000\n"
"PO-Revision-Date: 2016-12-23 01:48+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n"
"Language: de\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"

#. module: sale_order_weight
#: model_terms:ir.ui.view,arch_db:sale_order_weight.report_saleorder_document
msgid "<span><b>Total Weight:</b></span>"
msgstr ""

#. module: sale_order_weight
#: model:ir.model,name:sale_order_weight.model_sale_order
msgid "Sales Order"
msgstr "Verkaufsauftrag"

#. module: sale_order_weight
#: model:ir.model,name:sale_order_weight.model_sale_order_line
msgid "Sales Order Line"
msgstr ""

#. module: sale_order_weight
#: model_terms:ir.ui.view,arch_db:sale_order_weight.report_saleorder_document
msgid "Weight"
msgstr "Gewicht"

#~ msgid "Total Weight:"
#~ msgstr "Gesamtgewicht:"
40 changes: 40 additions & 0 deletions sale_order_weight/i18n/el_GR.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_order_weight
#
# Translators:
# Kostas Goutoudis <goutoudis@gmail.com>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-12-23 01:48+0000\n"
"PO-Revision-Date: 2016-12-23 01:48+0000\n"
"Last-Translator: Kostas Goutoudis <goutoudis@gmail.com>, 2016\n"
"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/"
"el_GR/)\n"
"Language: el_GR\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"

#. module: sale_order_weight
#: model_terms:ir.ui.view,arch_db:sale_order_weight.report_saleorder_document
msgid "<span><b>Total Weight:</b></span>"
msgstr ""

#. module: sale_order_weight
#: model:ir.model,name:sale_order_weight.model_sale_order
msgid "Sales Order"
msgstr "Εντολή Πώλησης"

#. module: sale_order_weight
#: model:ir.model,name:sale_order_weight.model_sale_order_line
msgid "Sales Order Line"
msgstr ""

#. module: sale_order_weight
#: model_terms:ir.ui.view,arch_db:sale_order_weight.report_saleorder_document
msgid "Weight"
msgstr ""
50 changes: 50 additions & 0 deletions sale_order_weight/i18n/es.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_order_weight
#
# Translators:
# oihane <oihanecruce@gmail.com>, 2016
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-12-23 01:48+0000\n"
"PO-Revision-Date: 2024-04-24 22:36+0000\n"
"Last-Translator: Ivorra78 <informatica@totmaterial.es>\n"
"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n"
"Language: es\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_order_weight
#: model_terms:ir.ui.view,arch_db:sale_order_weight.report_saleorder_document
msgid "<span><b>Total Weight:</b></span>"
msgstr "<span><b>Peso Total:</b></span>"

#. module: sale_order_weight
#: model:ir.model,name:sale_order_weight.model_sale_order
msgid "Sales Order"
msgstr "Pedidos de venta"

#. module: sale_order_weight
#: model:ir.model,name:sale_order_weight.model_sale_order_line
msgid "Sales Order Line"
msgstr "Línea de Orden de Ventas"

#. module: sale_order_weight
#: model_terms:ir.ui.view,arch_db:sale_order_weight.report_saleorder_document
msgid "Weight"
msgstr "Peso"

#~ msgid "Display Name"
#~ msgstr "Mostrar Nombre"

#~ msgid "ID"
#~ msgstr "ID"

#~ msgid "Last Modified on"
#~ msgstr "Última Modificación el"
40 changes: 40 additions & 0 deletions sale_order_weight/i18n/es_ES.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_order_weight
#
# Translators:
# Javi Melendez <javimelex@gmail.com>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-12-23 01:48+0000\n"
"PO-Revision-Date: 2016-12-23 01:48+0000\n"
"Last-Translator: Javi Melendez <javimelex@gmail.com>, 2016\n"
"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/"
"es_ES/)\n"
"Language: es_ES\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"

#. module: sale_order_weight
#: model_terms:ir.ui.view,arch_db:sale_order_weight.report_saleorder_document
msgid "<span><b>Total Weight:</b></span>"
msgstr ""

#. module: sale_order_weight
#: model:ir.model,name:sale_order_weight.model_sale_order
msgid "Sales Order"
msgstr "Pedido de venta"

#. module: sale_order_weight
#: model:ir.model,name:sale_order_weight.model_sale_order_line
msgid "Sales Order Line"
msgstr ""

#. module: sale_order_weight
#: model_terms:ir.ui.view,arch_db:sale_order_weight.report_saleorder_document
msgid "Weight"
msgstr ""
40 changes: 40 additions & 0 deletions sale_order_weight/i18n/es_VE.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_order_weight
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-12-23 01:48+0000\n"
"PO-Revision-Date: 2016-12-23 01:48+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/"
"teams/23907/es_VE/)\n"
"Language: es_VE\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"

#. module: sale_order_weight
#: model_terms:ir.ui.view,arch_db:sale_order_weight.report_saleorder_document
msgid "<span><b>Total Weight:</b></span>"
msgstr ""

#. module: sale_order_weight
#: model:ir.model,name:sale_order_weight.model_sale_order
msgid "Sales Order"
msgstr "Pedidos de venta"

#. module: sale_order_weight
#: model:ir.model,name:sale_order_weight.model_sale_order_line
msgid "Sales Order Line"
msgstr ""

#. module: sale_order_weight
#: model_terms:ir.ui.view,arch_db:sale_order_weight.report_saleorder_document
msgid "Weight"
msgstr ""
Loading
Loading