Skip to content

Commit

Permalink
Merge pull request #513 from Eficent/12.0-mig-stock_picking_invoice_link
Browse files Browse the repository at this point in the history
[12.0][MIG] stock_picking_invoice_link
  • Loading branch information
pedrobaeza authored Apr 10, 2019
2 parents f719483 + 05096c7 commit 0c82972
Show file tree
Hide file tree
Showing 32 changed files with 2,275 additions and 0 deletions.
122 changes: 122 additions & 0 deletions stock_picking_invoice_link/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,122 @@
==========================
Stock Picking Invoice Link
==========================

.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |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-OCA%2Fstock--logistics--workflow-lightgray.png?logo=github
:target: https://github.com/OCA/stock-logistics-workflow/tree/12.0/stock_picking_invoice_link
:alt: OCA/stock-logistics-workflow
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/stock-logistics-workflow-12-0/stock-logistics-workflow-12-0-stock_picking_invoice_link
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
:target: https://runbot.odoo-community.org/runbot/154/12.0
:alt: Try me on Runbot

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

This module adds a link between pickings and invoices as well as on the lines.
Invoices are generated from sales orders. With this module, you can find back
which deliveries an invoice relates to.

In standard, if you make a partial delivery and invoice it, then make remaining
delivery and invoice it, it is impossible to known to what delivery the
invoices relate to. You only have the quantity.

This module is also useful if you want to present data on the invoice report
grouped by deliveries.

Note that the links are only for products with an invoicing policy set on
delivery.

**Table of contents**

.. contents::
:local:

Usage
=====

* Create a Sales Order and confirm.
* Deliver its pickings totally or partially.
* Create an invoice of the goods delivered.
* If you open invoice form, you must see a new Pickings tab with information
about them.

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

Bugs are tracked on `GitHub Issues <https://github.com/OCA/stock-logistics-workflow/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/stock-logistics-workflow/issues/new?body=module:%20stock_picking_invoice_link%0Aversion:%2012.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
~~~~~~~

* Agile Business Group
* Tecnativa
* BCIM sprl
* Softdil S.L

Contributors
~~~~~~~~~~~~

* `Agile Business Group <https://www.agilebg.com>`_

* Lorenzo Battistini <[email protected]>
* Alex Comba <[email protected]>

* `Akretion <https://www.akretion.com>`_

* Alexis de Lattre <[email protected]>

* `AvanzOsc <http://avanzosc.es>`_

* Oihane Crucelaegui <[email protected]>
* Ana Juaristi <[email protected]>
* Alfredo de la Fuente <[email protected]>
* Ainara Galdona <[email protected]>

* `Tecnativa <https://www.tecnativa.com>`_

* Pedro M. Baeza <[email protected]>
* David Vidal <[email protected]>

* Unai Alkorta
* Iñaki Zabala
* Jacques-Etienne Baudoux <[email protected]>
* Aitor Bouzas Naveira <[email protected]>
* Carlos Lopez Mite <[email protected]>

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/stock-logistics-workflow <https://github.com/OCA/stock-logistics-workflow/tree/12.0/stock_picking_invoice_link>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
3 changes: 3 additions & 0 deletions stock_picking_invoice_link/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html

from . import models
27 changes: 27 additions & 0 deletions stock_picking_invoice_link/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Copyright 2013-17 Agile Business Group (<http://www.agilebg.com>)
# Copyright 2016 AvanzOSC (<http://www.avanzosc.es>)
# Copyright 2016 Pedro M. Baeza <[email protected]>
# Copyright 2017 Jacques-Etienne Baudoux <[email protected]>
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html

{
'name': 'Stock Picking Invoice Link',
'version': '12.0.1.0.0',
'category': 'Warehouse Management',
'summary': 'Adds link between pickings and invoices',
'author': 'Agile Business Group, '
'Tecnativa, '
'BCIM sprl, '
'Softdil S.L, '
'Odoo Community Association (OCA)',
'website': 'http://github.com/OCA/stock-logistics-workflow',
'license': 'AGPL-3',
'depends': [
'sale_stock',
],
'data': [
'views/stock_view.xml',
'views/account_invoice_view.xml',
],
'installable': True,
}
85 changes: 85 additions & 0 deletions stock_picking_invoice_link/i18n/ca.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * stock_picking_invoice_link
#
# Translators:
# OCA Transbot <[email protected]>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-18 03:48+0000\n"
"PO-Revision-Date: 2017-12-18 03:48+0000\n"
"Last-Translator: OCA Transbot <[email protected]>, 2017\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"

#. module: stock_picking_invoice_link
#: model:ir.model,name:stock_picking_invoice_link.model_account_invoice
#: model:ir.ui.view,arch_db:stock_picking_invoice_link.view_picking_form
msgid "Invoice"
msgstr ""

#. module: stock_picking_invoice_link
#: model:ir.model,name:stock_picking_invoice_link.model_account_invoice_line
#: model:ir.model.fields,field_description:stock_picking_invoice_link.field_stock_move_invoice_line_id
msgid "Invoice Line"
msgstr ""

#. module: stock_picking_invoice_link
#: model:ir.model.fields,field_description:stock_picking_invoice_link.field_stock_picking_invoice_ids
msgid "Invoices"
msgstr ""

#. module: stock_picking_invoice_link
#: model:ir.ui.view,arch_db:stock_picking_invoice_link.invoice_form
msgid "Pickings"
msgstr ""

#. module: stock_picking_invoice_link
#: model:ir.model.fields,field_description:stock_picking_invoice_link.field_account_invoice_picking_ids
msgid "Related Pickings"
msgstr ""

#. module: stock_picking_invoice_link
#: model:ir.model.fields,field_description:stock_picking_invoice_link.field_account_invoice_line_move_line_ids
msgid "Related Stock Moves"
msgstr ""

#. module: stock_picking_invoice_link
#: model:ir.model.fields,help:stock_picking_invoice_link.field_account_invoice_picking_ids
msgid ""
"Related pickings (only when the invoice has been generated from a sale "
"order)."
msgstr ""

#. module: stock_picking_invoice_link
#: model:ir.model.fields,help:stock_picking_invoice_link.field_account_invoice_line_move_line_ids
msgid ""
"Related stock moves (only when the invoice has been generated from a sale "
"order)."
msgstr ""

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

#. module: stock_picking_invoice_link
#: model:ir.model,name:stock_picking_invoice_link.model_stock_move
msgid "Stock Move"
msgstr "Moure l'estoc"

#. module: stock_picking_invoice_link
#: model:ir.model,name:stock_picking_invoice_link.model_stock_picking
msgid "Transfer"
msgstr ""

#. module: stock_picking_invoice_link
#: model:ir.ui.view,arch_db:stock_picking_invoice_link.view_picking_form
msgid "View Invoice"
msgstr ""
85 changes: 85 additions & 0 deletions stock_picking_invoice_link/i18n/de.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * stock_picking_invoice_link
#
# Translators:
# OCA Transbot <[email protected]>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-23 11:56+0000\n"
"PO-Revision-Date: 2017-01-23 11:56+0000\n"
"Last-Translator: OCA Transbot <[email protected]>, 2017\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: stock_picking_invoice_link
#: model:ir.model,name:stock_picking_invoice_link.model_account_invoice
#: model:ir.ui.view,arch_db:stock_picking_invoice_link.view_picking_form
msgid "Invoice"
msgstr ""

#. module: stock_picking_invoice_link
#: model:ir.model,name:stock_picking_invoice_link.model_account_invoice_line
#: model:ir.model.fields,field_description:stock_picking_invoice_link.field_stock_move_invoice_line_id
msgid "Invoice Line"
msgstr ""

#. module: stock_picking_invoice_link
#: model:ir.model.fields,field_description:stock_picking_invoice_link.field_stock_picking_invoice_ids
msgid "Invoices"
msgstr ""

#. module: stock_picking_invoice_link
#: model:ir.ui.view,arch_db:stock_picking_invoice_link.invoice_form
msgid "Pickings"
msgstr "Pickaufträge"

#. module: stock_picking_invoice_link
#: model:ir.model.fields,field_description:stock_picking_invoice_link.field_account_invoice_picking_ids
msgid "Related Pickings"
msgstr ""

#. module: stock_picking_invoice_link
#: model:ir.model.fields,field_description:stock_picking_invoice_link.field_account_invoice_line_move_line_ids
msgid "Related Stock Moves"
msgstr ""

#. module: stock_picking_invoice_link
#: model:ir.model.fields,help:stock_picking_invoice_link.field_account_invoice_picking_ids
msgid ""
"Related pickings (only when the invoice has been generated from a sale "
"order)."
msgstr ""

#. module: stock_picking_invoice_link
#: model:ir.model.fields,help:stock_picking_invoice_link.field_account_invoice_line_move_line_ids
msgid ""
"Related stock moves (only when the invoice has been generated from a sale "
"order)."
msgstr ""

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

#. module: stock_picking_invoice_link
#: model:ir.model,name:stock_picking_invoice_link.model_stock_move
msgid "Stock Move"
msgstr "Lagerbuchung"

#. module: stock_picking_invoice_link
#: model:ir.model,name:stock_picking_invoice_link.model_stock_picking
msgid "Transfer"
msgstr "Lieferung vornehmen"

#. module: stock_picking_invoice_link
#: model:ir.ui.view,arch_db:stock_picking_invoice_link.view_picking_form
msgid "View Invoice"
msgstr ""
Loading

0 comments on commit 0c82972

Please sign in to comment.