-
-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by max3903
- Loading branch information
Showing
23 changed files
with
1,971 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,97 @@ | ||
========================== | ||
Stock Request Picking Type | ||
========================== | ||
|
||
.. | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
!! This file is generated by oca-gen-addon-readme !! | ||
!! changes will be overwritten. !! | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
!! source digest: sha256:ee201635a3febbcba6e6023c0a23b866ec29c66e143a839b7bd41970e6a2ce46 | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
.. |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-OCA%2Fstock--logistics--request-lightgray.png?logo=github | ||
:target: https://github.com/OCA/stock-logistics-request/tree/17.0/stock_request_picking_type | ||
:alt: OCA/stock-logistics-request | ||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png | ||
:target: https://translation.odoo-community.org/projects/stock-logistics-request-17-0/stock-logistics-request-17-0-stock_request_picking_type | ||
: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/stock-logistics-request&target_branch=17.0 | ||
:alt: Try me on Runboat | ||
|
||
|badge1| |badge2| |badge3| |badge4| |badge5| | ||
|
||
This module adds stock request orders within the Inventory app with a | ||
new operation type. | ||
|
||
**Table of contents** | ||
|
||
.. contents:: | ||
:local: | ||
|
||
Usage | ||
===== | ||
|
||
- Go to Inventory | ||
- Click on the Stock Request Orders tile to process stock requests | ||
- You can also go to Inventory > Operations > Stock Request Orders | ||
|
||
Bug Tracker | ||
=========== | ||
|
||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/stock-logistics-request/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/stock-logistics-request/issues/new?body=module:%20stock_request_picking_type%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 | ||
------- | ||
|
||
* Open Source Integrators | ||
|
||
Contributors | ||
------------ | ||
|
||
- Maxime Chambreuil <mchambreuil@opensourceintegrators.com> | ||
- Pimolnat Suntian <pimolnats@ecosoft.co.th> | ||
- Raphael Lee <rlee@opensourceintegrators.com> | ||
- [APSL-Nagarro](https://apsl.tech): | ||
|
||
- Antoni Marroig <amarroig@apsl.net> | ||
|
||
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-max3903| image:: https://github.com/max3903.png?size=40px | ||
:target: https://github.com/max3903 | ||
:alt: max3903 | ||
|
||
Current `maintainer <https://odoo-community.org/page/maintainer-role>`__: | ||
|
||
|maintainer-max3903| | ||
|
||
This module is part of the `OCA/stock-logistics-request <https://github.com/OCA/stock-logistics-request/tree/17.0/stock_request_picking_type>`_ 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 2019 Open Source Integrators | ||
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html). | ||
|
||
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 2019 Open Source Integrators | ||
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html). | ||
|
||
{ | ||
"name": "Stock Request Picking Type", | ||
"summary": "Add Stock Requests to the Inventory App", | ||
"version": "17.0.1.0.0", | ||
"license": "LGPL-3", | ||
"website": "https://github.com/OCA/stock-logistics-request", | ||
"author": "Open Source Integrators, Odoo Community Association (OCA)", | ||
"category": "Warehouse", | ||
"depends": ["stock_request"], | ||
"data": [ | ||
"data/stock_picking_type.xml", | ||
"views/stock_request_order_views.xml", | ||
"views/stock_picking_views.xml", | ||
], | ||
"development_status": "Beta", | ||
"maintainers": ["max3903"], | ||
} |
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,8 @@ | ||
<odoo noupdate="1"> | ||
<record id="stock_request_order" model="stock.picking.type"> | ||
<field name="name">Stock Requests</field> | ||
<field name="sequence_id" ref="stock_request.seq_stock_request_order" /> | ||
<field name="code">stock_request_order</field> | ||
<field name="sequence_code">SRO</field> | ||
</record> | ||
</odoo> |
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,163 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * stock_request_picking_type | ||
# | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 12.0\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"PO-Revision-Date: 2020-01-17 05:13+0000\n" | ||
"Last-Translator: Nelson Ramírez Sánchez <info@konos.cl>\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 3.10\n" | ||
|
||
#. module: stock_request_picking_type | ||
#: model_terms:ir.ui.view,arch_db:stock_request_picking_type.stock_request_type_kanban | ||
msgid "" | ||
"<i class=\"fa fa-ellipsis-v\" role=\"img\" aria-label=\"Manage\" title=" | ||
"\"Manage\"/>" | ||
msgstr "" | ||
"<i class=\"fa fa-ellipsis-v\" role=\"img\" aria-label=\"Gestionar\" title=" | ||
"\"Gestionar\"/>" | ||
|
||
#. module: stock_request_picking_type | ||
#: model_terms:ir.ui.view,arch_db:stock_request_picking_type.stock_request_type_kanban | ||
msgid "<span>New</span>" | ||
msgstr "<span>Nuevo</span>" | ||
|
||
#. module: stock_request_picking_type | ||
#: model_terms:ir.ui.view,arch_db:stock_request_picking_type.stock_request_type_kanban | ||
msgid "<span>View</span>" | ||
msgstr "<span>Ver</span>" | ||
|
||
#. module: stock_request_picking_type | ||
#: model_terms:ir.ui.view,arch_db:stock_request_picking_type.stock_request_type_kanban | ||
msgid "All" | ||
msgstr "Todo" | ||
|
||
#. module: stock_request_picking_type | ||
#: model:ir.model.fields,field_description:stock_request_picking_type.field_stock_picking_type__display_name | ||
#: model:ir.model.fields,field_description:stock_request_picking_type.field_stock_request_order__display_name | ||
msgid "Display Name" | ||
msgstr "" | ||
|
||
#. module: stock_request_picking_type | ||
#: model_terms:ir.ui.view,arch_db:stock_request_picking_type.stock_request_type_kanban | ||
msgid "Done" | ||
msgstr "Hecho" | ||
|
||
#. module: stock_request_picking_type | ||
#: model:ir.model.fields,field_description:stock_request_picking_type.field_stock_picking_type__id | ||
#: model:ir.model.fields,field_description:stock_request_picking_type.field_stock_request_order__id | ||
msgid "ID" | ||
msgstr "" | ||
|
||
#. module: stock_request_picking_type | ||
#: model:ir.model.fields,field_description:stock_request_picking_type.field_stock_picking_type__count_sr_open | ||
#: model_terms:ir.ui.view,arch_db:stock_request_picking_type.stock_request_type_kanban | ||
msgid "In Progress" | ||
msgstr "En Progreso" | ||
|
||
#. module: stock_request_picking_type | ||
#: model:ir.model.fields,field_description:stock_request_picking_type.field_stock_picking_type____last_update | ||
#: model:ir.model.fields,field_description:stock_request_picking_type.field_stock_request_order____last_update | ||
msgid "Last Modified on" | ||
msgstr "" | ||
|
||
#. module: stock_request_picking_type | ||
#: model:ir.model.fields,field_description:stock_request_picking_type.field_stock_picking_type__count_sr_late | ||
#: model_terms:ir.ui.view,arch_db:stock_request_picking_type.stock_request_type_kanban | ||
msgid "Late" | ||
msgstr "Tarde" | ||
|
||
#. module: stock_request_picking_type | ||
#: model:ir.model.fields,field_description:stock_request_picking_type.field_stock_request_order__picking_type_id | ||
#: model_terms:ir.ui.view,arch_db:stock_request_picking_type.stock_request_order_search | ||
msgid "Operation Type" | ||
msgstr "Tipo de Operación" | ||
|
||
#. module: stock_request_picking_type | ||
#: model:ir.model,name:stock_request_picking_type.model_stock_picking_type | ||
msgid "Picking Type" | ||
msgstr "Tipo de Picking" | ||
|
||
#. module: stock_request_picking_type | ||
#: model_terms:ir.ui.view,arch_db:stock_request_picking_type.stock_request_type_kanban | ||
msgid "Settings" | ||
msgstr "Configuración" | ||
|
||
#. module: stock_request_picking_type | ||
#: model:ir.model,name:stock_request_picking_type.model_stock_request_order | ||
#: model:ir.model.fields.selection,name:stock_request_picking_type.selection__stock_picking_type__code__stock_request_order | ||
#: model_terms:ir.ui.view,arch_db:stock_request_picking_type.stock_request_type_kanban | ||
msgid "Stock Request Order" | ||
msgstr "Pedido de Solicitud de Stock" | ||
|
||
#. module: stock_request_picking_type | ||
#: model:ir.actions.act_window,name:stock_request_picking_type.action_picking_dashboard | ||
#: model:ir.actions.act_window,name:stock_request_picking_type.action_stock_request_order_form | ||
#: model:ir.ui.menu,name:stock_request_picking_type.menu_stock_request_order | ||
msgid "Stock Request Orders" | ||
msgstr "Pedidos de Solicitud de Stock" | ||
|
||
#. module: stock_request_picking_type | ||
#: model:stock.picking.type,name:stock_request_picking_type.stock_request_order | ||
msgid "Stock Requests" | ||
msgstr "Solicitudes de Stock" | ||
|
||
#. module: stock_request_picking_type | ||
#: model:ir.model.fields,field_description:stock_request_picking_type.field_stock_picking_type__count_sr_todo | ||
#: model_terms:ir.ui.view,arch_db:stock_request_picking_type.stock_request_type_kanban | ||
msgid "To Do" | ||
msgstr "Por Hacer" | ||
|
||
#. module: stock_request_picking_type | ||
#: model_terms:ir.ui.view,arch_db:stock_request_picking_type.stock_request_type_kanban | ||
msgid "To Process" | ||
msgstr "A Procesar" | ||
|
||
#. module: stock_request_picking_type | ||
#: model:ir.model.fields,field_description:stock_request_picking_type.field_stock_picking_type__code | ||
msgid "Type of Operation" | ||
msgstr "Tipo de Operación" | ||
|
||
#~ msgid "Customers" | ||
#~ msgstr "Clientes" | ||
|
||
#~ msgid "Expected Date" | ||
#~ msgstr "Fecha Esperada" | ||
|
||
#~ msgid "Expected Date by Month" | ||
#~ msgstr "Fecha Esperada por Mes" | ||
|
||
#~ msgid "Group By..." | ||
#~ msgstr "Agrupar por..." | ||
|
||
#~ msgid "Internal" | ||
#~ msgstr "Interno" | ||
|
||
#~ msgid "Late Stock Requests" | ||
#~ msgstr "Solicitudes de Stock Tardías" | ||
|
||
#~ msgid "Manufacturing Operation" | ||
#~ msgstr "Operación de Fabricación" | ||
|
||
#~ msgid "Search Stock Request Orders" | ||
#~ msgstr "Buscar Pedidos de Solicitud de Stock" | ||
|
||
#~ msgid "State" | ||
#~ msgstr "Estado" | ||
|
||
#~ msgid "Stock Requests To Do." | ||
#~ msgstr "Solicitudes de acciones para hacer." | ||
|
||
#~ msgid "Stock Requests in Progress." | ||
#~ msgstr "Solicitudes de stock en curso." | ||
|
||
#~ msgid "Vendors" | ||
#~ msgstr "Proveedores" |
Oops, something went wrong.