Skip to content

Commit

Permalink
Merge PR #1014 into 14.0
Browse files Browse the repository at this point in the history
Signed-off-by rvalyi
  • Loading branch information
OCA-git-bot committed Nov 12, 2021
2 parents 7a01444 + ed6eeba commit d0d94e4
Show file tree
Hide file tree
Showing 34 changed files with 4,713 additions and 0 deletions.
117 changes: 117 additions & 0 deletions stock_picking_invoicing/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,117 @@
=======================
Stock Picking Invoicing
=======================

.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! 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%2Faccount--invoicing-lightgray.png?logo=github
:target: https://github.com/OCA/account-invoicing/tree/13.0/stock_picking_invoicing
:alt: OCA/account-invoicing
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/account-invoicing-13-0/account-invoicing-13-0-stock_picking_invoicing
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
:target: https://runbot.odoo-community.org/runbot/95/13.0
:alt: Try me on Runbot

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

This module allows to create invoices directly from picking, without having to
use sale or purchase orders.

**Table of contents**

.. contents::
:local:

Installation
============

This module depends on *stock_picking_invoice_link* module that is hosted on
https://github.com/OCA/stock-logistics-workflow.git.

Usage
=====

To use this module, you need to:

#. Go to your picking;
#. If the invoice status is 'To be invoiced', a button will ask you to create an invoice;
#. Into the Tree view, you can select many pickings and create a grouped invoice;
#. If at least an invoice is created for a picking, a new "Invoicing" tab appears.


If an invoice (not refund) is cancelled or deleted, invoice status of related picking is automatically
updated to "To be invoiced".

Changelog
=========

12.0.1.0.0 (2019-07-16)
~~~~~~~~~~~~~~~~~~~~~~~

* Migration to version 12.0 .


12.0.2.0.0 (2019-12-19)
~~~~~~~~~~~~~~~~~~~~~~~

* Included dependency from module stock_picking_invoice_link
from repository https://github.com/OCA/stock-logistics-workflow.git.

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

Bugs are tracked on `GitHub Issues <https://github.com/OCA/account-invoicing/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-invoicing/issues/new?body=module:%20stock_picking_invoicing%0Aversion:%2013.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

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

* Lorenzo Battistini <lorenzo.battistini@agilebg.com>
* Leonardo Pistone <leonardo.pistone@agilebg.com>
* Daniel Sadamo <daniel.sadamo@kmee.com.br>
* Alex Comba <alex.comba@agilebg.com>
* Florent THOMAS <florent.thomas@mind-and-go.com>
* François Honoré <francois.honore@acsone.eu>
* Magno Costa <magno.costa@akretion.com.br>
* Luis Felipe Mileo <mileo@kmee.com.br>
* Radovan Skolnik <radovan@skolnik.info>

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/account-invoicing <https://github.com/OCA/account-invoicing/tree/13.0/stock_picking_invoicing>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
5 changes: 5 additions & 0 deletions stock_picking_invoicing/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Copyright (C) 2019-Today: Odoo Community Association (OCA)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).

from . import models
from . import wizards
21 changes: 21 additions & 0 deletions stock_picking_invoicing/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Copyright (C) 2019-Today: Odoo Community Association (OCA)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
"name": "Stock Picking Invoicing",
"version": "14.0.1.0.0",
"category": "Warehouse Management",
"author": "Agile Business Group,Odoo Community Association (OCA)",
"website": "https://github.com/OCA/account-invoicing",
"license": "AGPL-3",
"depends": ["stock", "account", "stock_picking_invoice_link"],
"data": [
"security/ir.model.access.csv",
"wizards/stock_invoice_onshipping_view.xml",
"wizards/stock_return_picking_view.xml",
"views/stock_move.xml",
"views/stock_picking.xml",
"views/stock_picking_type.xml",
],
"demo": ["demo/stock_picking_demo.xml"],
"installable": True,
}
Loading

0 comments on commit d0d94e4

Please sign in to comment.