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
61 changes: 61 additions & 0 deletions logistics_planning_invoicing/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
============================
Logistics Planning Invoicing
============================

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

.. |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-LGPL--3-blue.png
:target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html
:alt: License: LGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-solvosci%2Fslv--stock-lightgray.png?logo=github
:target: https://github.com/solvosci/slv-stock/tree/17.0/logistics_planning_invoicing
:alt: solvosci/slv-stock

|badge1| |badge2| |badge3|

Links Logistics Planning with Invoicing

**Table of contents**

.. contents::
:local:

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

Bugs are tracked on `GitHub Issues <https://github.com/solvosci/slv-stock/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/solvosci/slv-stock/issues/new?body=module:%20logistics_planning_invoicing%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
-------

* Solvos

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

- Christian Santamaría <christian.santamaria@solvos.es>
- David Alonso <david.alonso@solvos.es>

Maintainers
-----------

This module is part of the `solvosci/slv-stock <https://github.com/solvosci/slv-stock/tree/17.0/logistics_planning_invoicing>`_ project on GitHub.

You are welcome to contribute.
2 changes: 2 additions & 0 deletions logistics_planning_invoicing/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from . import models
from . import wizards
27 changes: 27 additions & 0 deletions logistics_planning_invoicing/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# © 2024 Solvos Consultoría Informática (<http://www.solvos.es>)
# License LGPL-3 - See http://www.gnu.org/licenses/lgpl-3.0.html
{
'name': 'Logistics Planning Invoicing',
'summary': '''
Links Logistics Planning with Invoicing
''',
'author': 'Solvos',
'license': 'LGPL-3',
'version': '17.0.1.0.0',
'category': 'stock',
'website': 'https://github.com/solvosci/slv-stock',
'depends': [
'account',
'logistics_planning_base',
],
'data': [
"views/account_incoterms_views.xml",
'views/account_move_views.xml',
'views/logistics_schedule_views.xml',
'views/res_config_settings_views.xml',
'wizards/logistics_schedule_account_move_wizard_views.xml',
'wizards/logistics_schedule_existing_account_move_wizard_views.xml',
"views/logistics_schedule_invoicing_menu.xml",
],
'installable': True,
}
Loading