Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Syncing from upstream OCA/sale-workflow (13.0) #1841

Merged
merged 14 commits into from
Jan 22, 2024
Merged
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ addon | version | maintainers | summary
[sale_order_line_delivery_state](sale_order_line_delivery_state/) | 13.0.1.0.0 | | Show the delivery state on the sale order line
[sale_order_line_description](sale_order_line_description/) | 13.0.1.0.0 | | Sale order line description
[sale_order_line_input](sale_order_line_input/) | 13.0.1.1.2 | | Search, create or modify directly sale order lines
[sale_order_line_menu](sale_order_line_menu/) | 13.0.1.0.0 | [![dreispt](https://github.com/dreispt.png?size=30px)](https://github.com/dreispt) | Adds a Sale Order Lines Menu
[sale_order_line_packaging_qty](sale_order_line_packaging_qty/) | 13.0.1.3.1 | | Define quantities according to product packaging on sale order lines
[sale_order_line_price_history](sale_order_line_price_history/) | 13.0.2.1.0 | | Sale order line price history
[sale_order_line_remove](sale_order_line_remove/) | 13.0.1.0.0 | | Allows removal of sale order lines from confirmed orders if not invoiced or received
Expand Down
92 changes: 92 additions & 0 deletions sale_order_line_menu/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
====================
Sale Order Line Menu
====================

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

.. |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%2Fsale--workflow-lightgray.png?logo=github
:target: https://github.com/OCA/sale-workflow/tree/13.0/sale_order_line_menu
:alt: OCA/sale-workflow
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/sale-workflow-13-0/sale-workflow-13-0-sale_order_line_menu
: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-workflow&target_branch=13.0
:alt: Try me on Runboat

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

Adds a menu item to list all Sales order lines.

**Table of contents**

.. contents::
:local:

Usage
=====

Menu option available at Sales > Orders > Order Lines.

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

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

* Open Source Integrators

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

* `Open Source Integrators <https://opensourceintegrators.com>`:

* Daniel Reis <[email protected]>
* Freni Patel <[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.

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

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

|maintainer-dreispt|

This module is part of the `OCA/sale-workflow <https://github.com/OCA/sale-workflow/tree/13.0/sale_order_line_menu>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
2 changes: 2 additions & 0 deletions sale_order_line_menu/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Copyright (C) 2021 Open Source Integrators
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
17 changes: 17 additions & 0 deletions sale_order_line_menu/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Copyright (C) 2021 Open Source Integrators
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

{
"name": "Sale Order Line Menu",
"version": "13.0.1.0.0",
"author": "Open Source Integrators, Odoo Community Association (OCA)",
"summary": "Adds a Sale Order Lines Menu",
"website": "https://github.com/OCA/sale-workflow",
"license": "AGPL-3",
"depends": ["sale"],
"category": "Sales/Sales",
"data": ["views/sale_order_line_views.xml"],
"installable": True,
"maintainers": ["dreispt"],
"development_status": "Beta",
}
29 changes: 29 additions & 0 deletions sale_order_line_menu/i18n/fr_FR.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_order_line_menu
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 14.0\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2021-04-11 17:46+0000\n"
"Last-Translator: Yves Le Doeuff <[email protected]>\n"
"Language-Team: none\n"
"Language: fr_FR\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_line_menu
#: model_terms:ir.ui.view,arch_db:sale_order_line_menu.view_sales_order_line_filter
msgid "Only Product Lines"
msgstr ""

#. module: sale_order_line_menu
#: model:ir.actions.act_window,name:sale_order_line_menu.action_orders_lines
#: model:ir.ui.menu,name:sale_order_line_menu.sale_order_line_menu
#: model_terms:ir.ui.view,arch_db:sale_order_line_menu.view_sale_order_line_pivot
msgid "Order Lines"
msgstr "Lignes de commande"
26 changes: 26 additions & 0 deletions sale_order_line_menu/i18n/sale_order_line_menu.pot
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_order_line_menu
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 13.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_order_line_menu
#: model_terms:ir.ui.view,arch_db:sale_order_line_menu.view_sales_order_line_filter
msgid "Only Product Lines"
msgstr ""

#. module: sale_order_line_menu
#: model:ir.actions.act_window,name:sale_order_line_menu.action_orders_lines
#: model:ir.ui.menu,name:sale_order_line_menu.sale_order_line_menu
#: model_terms:ir.ui.view,arch_db:sale_order_line_menu.view_sale_order_line_pivot
msgid "Order Lines"
msgstr ""
4 changes: 4 additions & 0 deletions sale_order_line_menu/readme/CONTRIBUTORS.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
* `Open Source Integrators <https://opensourceintegrators.com>`:

* Daniel Reis <[email protected]>
* Freni Patel <[email protected]>
1 change: 1 addition & 0 deletions sale_order_line_menu/readme/DESCRIPTION.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Adds a menu item to list all Sales order lines.
1 change: 1 addition & 0 deletions sale_order_line_menu/readme/USAGE.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Menu option available at Sales > Orders > Order Lines.
Binary file added sale_order_line_menu/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
Loading