-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[3906][ADD] purchase_order_line_menu
- Loading branch information
1 parent
c148ba5
commit 09c46a4
Showing
18 changed files
with
1,378 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
======================== | ||
Purchase Order Line Menu | ||
======================== | ||
|
||
.. | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
!! This file is generated by oca-gen-addon-readme !! | ||
!! changes will be overwritten. !! | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
!! source digest: sha256:fa367efc2461fea7a8e61df2e79e35b37f588413eb00cd32003d9e7bb7a4e887 | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
.. |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%2Fpurchase--workflow-lightgray.png?logo=github | ||
:target: https://github.com/OCA/purchase-workflow/tree/16.0/purchase_order_line_menu | ||
:alt: OCA/purchase-workflow | ||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png | ||
:target: https://translation.odoo-community.org/projects/purchase-workflow-16-0/purchase-workflow-16-0-purchase_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/purchase-workflow&target_branch=16.0 | ||
:alt: Try me on Runboat | ||
|
||
|badge1| |badge2| |badge3| |badge4| |badge5| | ||
|
||
Adds a menu item and some views to navigate through Purchase Order lines. | ||
|
||
**Table of contents** | ||
|
||
.. contents:: | ||
:local: | ||
|
||
Usage | ||
===== | ||
|
||
Menu option available at Purchase > Orders > Purchase Order Lines. | ||
|
||
Bug Tracker | ||
=========== | ||
|
||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/purchase-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/purchase-workflow/issues/new?body=module:%20purchase_order_line_menu%0Aversion:%2016.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 <dreis@opensourceintegrators.com> | ||
* Freni Patel <fpatel@opensourceintegrators.com> | ||
* Murtaza Mithaiwala <mmithaiwala@opensourceintegrators.com> | ||
|
||
* `Moduon Team <https://moduon.team>`: | ||
|
||
* Eduardo de Miguel <edu@moduon.team> | ||
* Emilio Pascual <emilio@moduon.team> | ||
* Rafael Blasco <rblasco@moduon.team> | ||
|
||
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/purchase-workflow <https://github.com/OCA/purchase-workflow/tree/16.0/purchase_order_line_menu>`_ project on GitHub. | ||
|
||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Copyright (C) 2021 Open Source Integrators | ||
# Copyright (C) 2023 Moduon Team | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). | ||
from . import models |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Copyright (C) 2021 Open Source Integrators | ||
# Copyright (C) 2023 Moduon Team | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). | ||
|
||
{ | ||
"name": "Purchase Order Line Menu", | ||
"version": "16.0.2.1.0", | ||
"author": "Open Source Integrators, Odoo Community Association (OCA)", | ||
"summary": "Adds Purchase Order Lines Menu", | ||
"website": "https://github.com/OCA/purchase-workflow", | ||
"license": "AGPL-3", | ||
"depends": ["purchase"], | ||
"category": "Inventory/Purchase", | ||
"data": [ | ||
"views/purchase_order_line_views.xml", | ||
], | ||
"installable": True, | ||
"maintainer": ["dreispt", "Shide", "EmilioPascual"], | ||
"development_status": "Beta", | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,124 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * purchase_order_line_menu | ||
# | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 14.0\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"PO-Revision-Date: 2023-09-03 13:40+0000\n" | ||
"Last-Translator: Ivorra78 <informatica@totmaterial.es>\n" | ||
"Language-Team: none\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: purchase_order_line_menu | ||
#: model:ir.model.fields,field_description:purchase_order_line_menu.field_purchase_order_line__invoice_status | ||
#: model_terms:ir.ui.view,arch_db:purchase_order_line_menu.purchase_order_line_search | ||
msgid "Billing Status" | ||
msgstr "Estado de facturación" | ||
|
||
#. module: purchase_order_line_menu | ||
#: model_terms:ir.ui.view,arch_db:purchase_order_line_menu.purchase_order_line_search | ||
msgid "Cancelled" | ||
msgstr "Cancelado/a" | ||
|
||
#. module: purchase_order_line_menu | ||
#: model:ir.model.fields,help:purchase_order_line_menu.field_purchase_order_line__date_order | ||
msgid "" | ||
"Depicts the date within which the Quotation should be confirmed and " | ||
"converted into a purchase order." | ||
msgstr "" | ||
"Indica la fecha en la que la oferta debe confirmarse y convertirse en un " | ||
"pedido de compra." | ||
|
||
#. module: purchase_order_line_menu | ||
#: model_terms:ir.ui.view,arch_db:purchase_order_line_menu.purchase_order_line_search | ||
msgid "Fully Billed" | ||
msgstr "Completamente facturado" | ||
|
||
#. module: purchase_order_line_menu | ||
#: model_terms:ir.ui.view,arch_db:purchase_order_line_menu.purchase_order_line_search | ||
msgid "Locked" | ||
msgstr "Bloqueado" | ||
|
||
#. module: purchase_order_line_menu | ||
#: model_terms:ir.ui.view,arch_db:purchase_order_line_menu.purchase_order_line_search | ||
msgid "Nothing to Bill" | ||
msgstr "Nada para facturar" | ||
|
||
#. module: purchase_order_line_menu | ||
#: model:ir.model.fields,field_description:purchase_order_line_menu.field_purchase_order_line__date_order | ||
#: model_terms:ir.ui.view,arch_db:purchase_order_line_menu.purchase_order_line_search | ||
msgid "Order Date" | ||
msgstr "Fecha del Pedido" | ||
|
||
#. module: purchase_order_line_menu | ||
#: model_terms:ir.ui.view,arch_db:purchase_order_line_menu.view_purchase_order_line_pivot | ||
msgid "Order Lines" | ||
msgstr "Líneas de pedido" | ||
|
||
#. module: purchase_order_line_menu | ||
#: model_terms:ir.ui.view,arch_db:purchase_order_line_menu.purchase_order_line_search | ||
msgid "Order date" | ||
msgstr "Fecha del pedido" | ||
|
||
#. module: purchase_order_line_menu | ||
#: model_terms:ir.ui.view,arch_db:purchase_order_line_menu.purchase_order_line_search | ||
msgid "Planned date" | ||
msgstr "Fecha Planeada" | ||
|
||
#. module: purchase_order_line_menu | ||
#: model_terms:ir.ui.view,arch_db:purchase_order_line_menu.purchase_order_line_tree | ||
msgid "Price Subtotal" | ||
msgstr "Subtotal del precio" | ||
|
||
#. module: purchase_order_line_menu | ||
#: model_terms:ir.ui.view,arch_db:purchase_order_line_menu.purchase_order_line_tree | ||
msgid "Price Tax" | ||
msgstr "Precio del impuesto" | ||
|
||
#. module: purchase_order_line_menu | ||
#: model_terms:ir.ui.view,arch_db:purchase_order_line_menu.purchase_order_line_tree | ||
msgid "Price Total" | ||
msgstr "Precio total" | ||
|
||
#. module: purchase_order_line_menu | ||
#: model_terms:ir.ui.view,arch_db:purchase_order_line_menu.purchase_order_line_search | ||
msgid "Purchase Order" | ||
msgstr "Orden de Compra" | ||
|
||
#. module: purchase_order_line_menu | ||
#: model:ir.model,name:purchase_order_line_menu.model_purchase_order_line | ||
msgid "Purchase Order Line" | ||
msgstr "Línea de Orden de Compra" | ||
|
||
#. module: purchase_order_line_menu | ||
#: model:ir.actions.act_window,name:purchase_order_line_menu.action_purchase_orders_lines | ||
#: model:ir.ui.menu,name:purchase_order_line_menu.purchase_order_line_menu | ||
msgid "Purchase Order Lines" | ||
msgstr "Líneas de pedido de compra" | ||
|
||
#. module: purchase_order_line_menu | ||
#: model_terms:ir.ui.view,arch_db:purchase_order_line_menu.purchase_order_line_search | ||
msgid "RFQ" | ||
msgstr "SDO (Solicitud de Oferta)" | ||
|
||
#. module: purchase_order_line_menu | ||
#: model_terms:ir.ui.view,arch_db:purchase_order_line_menu.purchase_order_line_search | ||
msgid "RFQ Sent" | ||
msgstr "SDO enviada" | ||
|
||
#. module: purchase_order_line_menu | ||
#: model_terms:ir.ui.view,arch_db:purchase_order_line_menu.purchase_order_line_search | ||
msgid "To Approve" | ||
msgstr "A aprobar" | ||
|
||
#. module: purchase_order_line_menu | ||
#: model_terms:ir.ui.view,arch_db:purchase_order_line_menu.purchase_order_line_search | ||
msgid "Waiting Bills" | ||
msgstr "Facturas en espera" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * purchase_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 <yld@alliasys.fr>\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: purchase_order_line_menu | ||
#: model:ir.model.fields,field_description:purchase_order_line_menu.field_purchase_order_line__invoice_status | ||
#: model_terms:ir.ui.view,arch_db:purchase_order_line_menu.purchase_order_line_search | ||
msgid "Billing Status" | ||
msgstr "" | ||
|
||
#. module: purchase_order_line_menu | ||
#: model_terms:ir.ui.view,arch_db:purchase_order_line_menu.purchase_order_line_search | ||
msgid "Cancelled" | ||
msgstr "" | ||
|
||
#. module: purchase_order_line_menu | ||
#: model:ir.model.fields,help:purchase_order_line_menu.field_purchase_order_line__date_order | ||
msgid "" | ||
"Depicts the date within which the Quotation should be confirmed and " | ||
"converted into a purchase order." | ||
msgstr "" | ||
|
||
#. module: purchase_order_line_menu | ||
#: model_terms:ir.ui.view,arch_db:purchase_order_line_menu.purchase_order_line_search | ||
msgid "Fully Billed" | ||
msgstr "" | ||
|
||
#. module: purchase_order_line_menu | ||
#: model_terms:ir.ui.view,arch_db:purchase_order_line_menu.purchase_order_line_search | ||
msgid "Locked" | ||
msgstr "" | ||
|
||
#. module: purchase_order_line_menu | ||
#: model_terms:ir.ui.view,arch_db:purchase_order_line_menu.purchase_order_line_search | ||
msgid "Nothing to Bill" | ||
msgstr "" | ||
|
||
#. module: purchase_order_line_menu | ||
#: model:ir.model.fields,field_description:purchase_order_line_menu.field_purchase_order_line__date_order | ||
#: model_terms:ir.ui.view,arch_db:purchase_order_line_menu.purchase_order_line_search | ||
msgid "Order Date" | ||
msgstr "" | ||
|
||
#. module: purchase_order_line_menu | ||
#: model_terms:ir.ui.view,arch_db:purchase_order_line_menu.view_purchase_order_line_pivot | ||
msgid "Order Lines" | ||
msgstr "Lignes de commande" | ||
|
||
#. module: purchase_order_line_menu | ||
#: model_terms:ir.ui.view,arch_db:purchase_order_line_menu.purchase_order_line_search | ||
msgid "Order date" | ||
msgstr "" | ||
|
||
#. module: purchase_order_line_menu | ||
#: model_terms:ir.ui.view,arch_db:purchase_order_line_menu.purchase_order_line_search | ||
msgid "Planned date" | ||
msgstr "" | ||
|
||
#. module: purchase_order_line_menu | ||
#: model_terms:ir.ui.view,arch_db:purchase_order_line_menu.purchase_order_line_tree | ||
msgid "Price Subtotal" | ||
msgstr "" | ||
|
||
#. module: purchase_order_line_menu | ||
#: model_terms:ir.ui.view,arch_db:purchase_order_line_menu.purchase_order_line_tree | ||
msgid "Price Tax" | ||
msgstr "" | ||
|
||
#. module: purchase_order_line_menu | ||
#: model_terms:ir.ui.view,arch_db:purchase_order_line_menu.purchase_order_line_tree | ||
msgid "Price Total" | ||
msgstr "" | ||
|
||
#. module: purchase_order_line_menu | ||
#: model_terms:ir.ui.view,arch_db:purchase_order_line_menu.purchase_order_line_search | ||
msgid "Purchase Order" | ||
msgstr "" | ||
|
||
#. module: purchase_order_line_menu | ||
#: model:ir.model,name:purchase_order_line_menu.model_purchase_order_line | ||
msgid "Purchase Order Line" | ||
msgstr "" | ||
|
||
#. module: purchase_order_line_menu | ||
#: model:ir.actions.act_window,name:purchase_order_line_menu.action_purchase_orders_lines | ||
#: model:ir.ui.menu,name:purchase_order_line_menu.purchase_order_line_menu | ||
msgid "Purchase Order Lines" | ||
msgstr "Lignes de commande d'achat" | ||
|
||
#. module: purchase_order_line_menu | ||
#: model_terms:ir.ui.view,arch_db:purchase_order_line_menu.purchase_order_line_search | ||
msgid "RFQ" | ||
msgstr "" | ||
|
||
#. module: purchase_order_line_menu | ||
#: model_terms:ir.ui.view,arch_db:purchase_order_line_menu.purchase_order_line_search | ||
msgid "RFQ Sent" | ||
msgstr "" | ||
|
||
#. module: purchase_order_line_menu | ||
#: model_terms:ir.ui.view,arch_db:purchase_order_line_menu.purchase_order_line_search | ||
msgid "To Approve" | ||
msgstr "" | ||
|
||
#. module: purchase_order_line_menu | ||
#: model_terms:ir.ui.view,arch_db:purchase_order_line_menu.purchase_order_line_search | ||
msgid "Waiting Bills" | ||
msgstr "" |
Oops, something went wrong.