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

[18.0][MIG] purchase_order_type_dashboard: Migration to 18.0 #2493

Open
wants to merge 18 commits into
base: 18.0
Choose a base branch
from
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
86 changes: 86 additions & 0 deletions purchase_order_type_dashboard/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
=============================
Purchase Order Type Dashboard
=============================

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

.. |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/18.0/purchase_order_type_dashboard
: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-18-0/purchase-workflow-18-0-purchase_order_type_dashboard
: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=18.0
:alt: Try me on Runboat

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

Adds a dashboard for Purchase Orders based on Purchase Order Types.

**Table of contents**

.. contents::
:local:

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_type_dashboard%0Aversion:%2018.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
------------

- David Alonso <[email protected]>
- Angel Rivas <[email protected]>
- ``Heliconia Solutions Pvt. Ltd. <https://www.heliconia.io>``\ \_

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-dalonsod| image:: https://github.com/dalonsod.png?size=40px
:target: https://github.com/dalonsod
:alt: dalonsod

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

|maintainer-dalonsod|

This module is part of the `OCA/purchase-workflow <https://github.com/OCA/purchase-workflow/tree/18.0/purchase_order_type_dashboard>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
1 change: 1 addition & 0 deletions purchase_order_type_dashboard/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import models
21 changes: 21 additions & 0 deletions purchase_order_type_dashboard/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# © 2021 Solvos Consultoría Informática (<http://www.solvos.es>)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).

{
"name": "Purchase Order Type Dashboard",
"version": "18.0.1.0.0",
"author": "Solvos, Odoo Community Association (OCA)",
"license": "AGPL-3",
"category": "Purchase Management",
"depends": ["purchase_order_type"],
"website": "https://github.com/OCA/purchase-workflow",
"data": [
"views/view_purchase_order.xml",
"views/view_purchase_order_type.xml",
"views/menu_purchase_order.xml",
],
"demo": ["demo/purchase_order_type_dashboard.xml"],
"maintainers": ["dalonsod"],
"installable": True,
"auto_install": False,
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8" ?>
<odoo noupdate="1">
<record id="purchase.purchase_order_1" model="purchase.order">
<field name="order_type" ref="purchase_order_type.po_type_regular" />
</record>
<record id="purchase.purchase_order_2" model="purchase.order">
<field name="order_type" ref="purchase_order_type.po_type_regular" />
</record>
<record id="purchase.purchase_order_3" model="purchase.order">
<field name="order_type" ref="purchase_order_type.po_type_blanket" />
</record>
<record id="purchase.purchase_order_4" model="purchase.order">
<field name="order_type" ref="purchase_order_type.po_type_planned" />
</record>
<record id="purchase.purchase_order_5" model="purchase.order">
<field name="order_type" ref="purchase_order_type.po_type_planned" />
</record>
<record id="purchase.purchase_order_6" model="purchase.order">
<field name="order_type" ref="purchase_order_type.po_type_planned" />
</record>
</odoo>
105 changes: 105 additions & 0 deletions purchase_order_type_dashboard/i18n/es.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * purchase_order_type_dashboard
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 13.0\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-07-20 18:09+0000\n"
"Last-Translator: Ivorra78 <[email protected]>\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_type_dashboard
#: model_terms:ir.ui.view,arch_db:purchase_order_type_dashboard.view_purchase_order_type_kanban
msgid "<span>View</span>"
msgstr "<span>Ver</span>"

#. module: purchase_order_type_dashboard
#: model_terms:ir.ui.view,arch_db:purchase_order_type_dashboard.view_purchase_order_type_kanban
msgid "All"
msgstr "Todos"

#. module: purchase_order_type_dashboard
#: model:ir.actions.act_window,name:purchase_order_type_dashboard.purchase_order_type_dashboard_action
#: model:ir.ui.menu,name:purchase_order_type_dashboard.purchase_order_dashboard_menu
msgid "Dashboard"
msgstr "Tablero"

#. module: purchase_order_type_dashboard
#: model:ir.model.fields,field_description:purchase_order_type_dashboard.field_purchase_order_type__invoice_status_no_po_count
#: model_terms:ir.ui.view,arch_db:purchase_order_type_dashboard.purchase_order_view_search
#: model_terms:ir.ui.view,arch_db:purchase_order_type_dashboard.view_purchase_order_type_kanban
msgid "Nothing to Bill"
msgstr "Nada para facturar"

#. module: purchase_order_type_dashboard
#: model_terms:ir.ui.view,arch_db:purchase_order_type_dashboard.view_purchase_order_type_kanban
msgid "Number of Purchase Orders that have nothing to bill yet"
msgstr "Número de pedidos de compra que no tienen todavía nada que facturar"

#. module: purchase_order_type_dashboard
#: model_terms:ir.ui.view,arch_db:purchase_order_type_dashboard.view_purchase_order_type_kanban
msgid "Number of Purchase Orders waiting for bills"
msgstr "Número de pedidos de compra esperando por facturas"

#. module: purchase_order_type_dashboard
#: model_terms:ir.ui.view,arch_db:purchase_order_type_dashboard.view_purchase_order_type_kanban
msgid "Number of Requests for Quotations"
msgstr "Número de solicitudes de presupuesto"

#. module: purchase_order_type_dashboard
#: model:ir.actions.act_window,name:purchase_order_type_dashboard.action_purchase_order_from_dashboard
msgid "Purchase Order"
msgstr "Pedido de compra"

#. module: purchase_order_type_dashboard
#: model:ir.model.fields,field_description:purchase_order_type_dashboard.field_purchase_order_type__purchase_order_ids
msgid "Purchase Orders"
msgstr "Pedidos de compra"

#. module: purchase_order_type_dashboard
#: model:ir.model.fields,field_description:purchase_order_type_dashboard.field_purchase_order_type__state_rfq_po_count
#: model_terms:ir.ui.view,arch_db:purchase_order_type_dashboard.view_purchase_order_type_kanban
msgid "RFQs"
msgstr "Sol. ppto."

#. module: purchase_order_type_dashboard
#: model:ir.actions.act_window,name:purchase_order_type_dashboard.action_purchase_rfq_from_dashboard
msgid "Request for Quotation"
msgstr "Solicitud de presupuesto"

#. module: purchase_order_type_dashboard
#: model_terms:ir.ui.view,arch_db:purchase_order_type_dashboard.view_purchase_order_type_tree
msgid "Total Nothing to Bill"
msgstr "Total Nada que facturar"

#. module: purchase_order_type_dashboard
#: model_terms:ir.ui.view,arch_db:purchase_order_type_dashboard.view_purchase_order_type_tree
msgid "Total RFQs"
msgstr "Total de peticiones de ofertas"

#. module: purchase_order_type_dashboard
#: model_terms:ir.ui.view,arch_db:purchase_order_type_dashboard.view_purchase_order_type_tree
msgid "Total Waiting Bills"
msgstr "Total de facturas en espera"

#. module: purchase_order_type_dashboard
#: model:ir.model,name:purchase_order_type_dashboard.model_purchase_order_type
msgid "Type of purchase order"
msgstr "Tipo de pedido de compra"

#. module: purchase_order_type_dashboard
#: model:ir.model.fields,field_description:purchase_order_type_dashboard.field_purchase_order_type__invoice_status_ti_po_count
#: model_terms:ir.ui.view,arch_db:purchase_order_type_dashboard.view_purchase_order_type_kanban
msgid "Waiting Bills"
msgstr "Para facturar"

#~ msgid "Show other options"
#~ msgstr "Mostrar otras opciones"
105 changes: 105 additions & 0 deletions purchase_order_type_dashboard/i18n/it.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * purchase_order_type_dashboard
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2024-08-20 09:58+0000\n"
"Last-Translator: mymage <[email protected]>\n"
"Language-Team: none\n"
"Language: it\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 5.6.2\n"

#. module: purchase_order_type_dashboard
#: model_terms:ir.ui.view,arch_db:purchase_order_type_dashboard.view_purchase_order_type_kanban
msgid "<span>View</span>"
msgstr "<span>Vista</span>"

#. module: purchase_order_type_dashboard
#: model_terms:ir.ui.view,arch_db:purchase_order_type_dashboard.view_purchase_order_type_kanban
msgid "All"
msgstr "Tutti"

#. module: purchase_order_type_dashboard
#: model:ir.actions.act_window,name:purchase_order_type_dashboard.purchase_order_type_dashboard_action
#: model:ir.ui.menu,name:purchase_order_type_dashboard.purchase_order_dashboard_menu
msgid "Dashboard"
msgstr "Bacheca"

#. module: purchase_order_type_dashboard
#: model:ir.model.fields,field_description:purchase_order_type_dashboard.field_purchase_order_type__invoice_status_no_po_count
#: model_terms:ir.ui.view,arch_db:purchase_order_type_dashboard.purchase_order_view_search
#: model_terms:ir.ui.view,arch_db:purchase_order_type_dashboard.view_purchase_order_type_kanban
msgid "Nothing to Bill"
msgstr "Niente da pagare"

#. module: purchase_order_type_dashboard
#: model_terms:ir.ui.view,arch_db:purchase_order_type_dashboard.view_purchase_order_type_kanban
msgid "Number of Purchase Orders that have nothing to bill yet"
msgstr "Numero di ordinidi acquisto che non hanno ancora niente da pagare"

#. module: purchase_order_type_dashboard
#: model_terms:ir.ui.view,arch_db:purchase_order_type_dashboard.view_purchase_order_type_kanban
msgid "Number of Purchase Orders waiting for bills"
msgstr "Numero di ordini di acquisto in atteda di pagamenti"

#. module: purchase_order_type_dashboard
#: model_terms:ir.ui.view,arch_db:purchase_order_type_dashboard.view_purchase_order_type_kanban
msgid "Number of Requests for Quotations"
msgstr "Numero di richieste preventivi"

#. module: purchase_order_type_dashboard
#: model:ir.actions.act_window,name:purchase_order_type_dashboard.action_purchase_order_from_dashboard
msgid "Purchase Order"
msgstr "Ordine di acquisto"

#. module: purchase_order_type_dashboard
#: model:ir.model.fields,field_description:purchase_order_type_dashboard.field_purchase_order_type__purchase_order_ids
msgid "Purchase Orders"
msgstr "Ordini di acquisto"

#. module: purchase_order_type_dashboard
#: model:ir.model.fields,field_description:purchase_order_type_dashboard.field_purchase_order_type__state_rfq_po_count
#: model_terms:ir.ui.view,arch_db:purchase_order_type_dashboard.view_purchase_order_type_kanban
msgid "RFQs"
msgstr "RdP"

#. module: purchase_order_type_dashboard
#: model:ir.actions.act_window,name:purchase_order_type_dashboard.action_purchase_rfq_from_dashboard
msgid "Request for Quotation"
msgstr "Richiesta di preventivo"

#. module: purchase_order_type_dashboard
#: model_terms:ir.ui.view,arch_db:purchase_order_type_dashboard.view_purchase_order_type_tree
msgid "Total Nothing to Bill"
msgstr "Nulla da fatturare"

#. module: purchase_order_type_dashboard
#: model_terms:ir.ui.view,arch_db:purchase_order_type_dashboard.view_purchase_order_type_tree
msgid "Total RFQs"
msgstr "Totale RdP"

#. module: purchase_order_type_dashboard
#: model_terms:ir.ui.view,arch_db:purchase_order_type_dashboard.view_purchase_order_type_tree
msgid "Total Waiting Bills"
msgstr "Totale conti in attesa"

#. module: purchase_order_type_dashboard
#: model:ir.model,name:purchase_order_type_dashboard.model_purchase_order_type
msgid "Type of purchase order"
msgstr "Tipo ordine di acquisto"

#. module: purchase_order_type_dashboard
#: model:ir.model.fields,field_description:purchase_order_type_dashboard.field_purchase_order_type__invoice_status_ti_po_count
#: model_terms:ir.ui.view,arch_db:purchase_order_type_dashboard.view_purchase_order_type_kanban
msgid "Waiting Bills"
msgstr "Fatture in attesa"

#~ msgid "Show other options"
#~ msgstr "Visualizza altre opzioni"
Loading
Loading