Skip to content

Commit

Permalink
Merge PR #651 into 12.0
Browse files Browse the repository at this point in the history
Signed-off-by lreficent
  • Loading branch information
OCA-git-bot committed Jul 12, 2019
2 parents 7935e7c + 5ab473c commit 8a90d6c
Show file tree
Hide file tree
Showing 92 changed files with 15,131 additions and 1 deletion.
2 changes: 1 addition & 1 deletion setup/_metapackage/VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
12.0.20190712.0
12.0.20190712.1
1 change: 1 addition & 0 deletions setup/_metapackage/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
'odoo12-addon-stock_orderpoint_uom',
'odoo12-addon-stock_packaging',
'odoo12-addon-stock_picking_procure_method',
'odoo12-addon-stock_quant_manual_assign',
'odoo12-addon-stock_removal_location_by_priority',
'odoo12-addon-stock_request',
'odoo12-addon-stock_request_kanban',
Expand Down
6 changes: 6 additions & 0 deletions setup/stock_quant_manual_assign/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import setuptools

setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)
97 changes: 97 additions & 0 deletions stock_quant_manual_assign/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
===============================
Stock - Manual Quant Assignment
===============================

.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |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%2Fstock--logistics--warehouse-lightgray.png?logo=github
:target: https://github.com/OCA/stock-logistics-warehouse/tree/12.0/stock_quant_manual_assign
:alt: OCA/stock-logistics-warehouse
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/stock-logistics-warehouse-12-0/stock-logistics-warehouse-12-0-stock_quant_manual_assign
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
:target: https://runbot.odoo-community.org/runbot/153/12.0
:alt: Try me on Runbot

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

This module allows you to manually change the automatic quant selection.

**Table of contents**

.. contents::
:local:

Usage
=====

To use this module, you need to:

#. Click on the tags icon at the end of move line.
#. Open the wizard with the button "Manual Quants".
#. Select the quants to assign (reserve), then Confirm.

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

Bugs are tracked on `GitHub Issues <https://github.com/OCA/stock-logistics-warehouse/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us smashing it by providing a detailed and welcomed
`feedback <https://github.com/OCA/stock-logistics-warehouse/issues/new?body=module:%20stock_quant_manual_assign%0Aversion:%2012.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
~~~~~~~

* AvanzOSC
* Tecnativa
* Eficent
* Fanha Giang

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

* Mikel Arregi <mikelarregi@avanzosc.es>
* Ana Juaristi <anajuaristi@avanzosc.es>
* Oihane Crucelaegui <oihanecrucelaegi@avanzosc.es>
* Fanha Giang <fanha99@hotmail.com>
* `Tecnativa <https://www.tecnativa.com>`_:

* Pedro M. Baeza <pedro.baeza@tecnativa.com>
* Vicent Cubells <vicent.cubells@tecnativa.com>

* `Eficent <https://www.eficent.com>`_:

* Jordi Ballester <jordi.ballester@eficent.com>
* Lois Rilo <lois.rilo@eficent.com>

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/stock-logistics-warehouse <https://github.com/OCA/stock-logistics-warehouse/tree/12.0/stock_quant_manual_assign>`_ 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 stock_quant_manual_assign/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import wizard
27 changes: 27 additions & 0 deletions stock_quant_manual_assign/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Copyright 2015 Mikel Arregi - AvanzOSC
# Copyright 2017 Eficent - Jordi Ballester
# Copyright 2018 Fanha Giang
# Copyright 2018 Tecnativa - Vicent Cubells
# Copyright 2016-2018 Tecnativa - Pedro M. Baeza
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html

{
"name": "Stock - Manual Quant Assignment",
"version": "12.0.1.0.0",
"category": "Warehouse",
"license": "AGPL-3",
"author": "AvanzOSC, "
"Tecnativa, "
"Eficent, "
"Fanha Giang, "
"Odoo Community Association (OCA)",
"website": "https://github.com/OCA/stock-logistics-warehouse",
"depends": [
"stock",
],
"data": [
"wizard/assign_manual_quants_view.xml",
"views/stock_move_view.xml",
],
"installable": True,
}
187 changes: 187 additions & 0 deletions stock_quant_manual_assign/i18n/am.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,187 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * stock_quant_manual_assign
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-12-24 04:10+0000\n"
"PO-Revision-Date: 2016-12-24 04:10+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n"
"Language: am\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"

#. module: stock_quant_manual_assign
#: model:ir.ui.view,arch_db:stock_quant_manual_assign.assign_manual_quants_form_view
msgid "Cancel"
msgstr "Cancelar"

#. module: stock_quant_manual_assign
#: model:ir.ui.view,arch_db:stock_quant_manual_assign.assign_manual_quants_form_view
msgid "Confirm"
msgstr ""

#. module: stock_quant_manual_assign
#: model:ir.model.fields,field_description:stock_quant_manual_assign.field_assign_manual_quants_create_uid
#: model:ir.model.fields,field_description:stock_quant_manual_assign.field_assign_manual_quants_lines_create_uid
msgid "Created by"
msgstr "Creado por"

#. module: stock_quant_manual_assign
#: model:ir.model.fields,field_description:stock_quant_manual_assign.field_assign_manual_quants_create_date
#: model:ir.model.fields,field_description:stock_quant_manual_assign.field_assign_manual_quants_lines_create_date
msgid "Created on"
msgstr "Creado en"

#. module: stock_quant_manual_assign
#: model:ir.model.fields,field_description:stock_quant_manual_assign.field_assign_manual_quants_display_name
#: model:ir.model.fields,field_description:stock_quant_manual_assign.field_assign_manual_quants_lines_display_name
msgid "Display Name"
msgstr ""

#. module: stock_quant_manual_assign
#: model:ir.model.fields,field_description:stock_quant_manual_assign.field_assign_manual_quants_id
#: model:ir.model.fields,field_description:stock_quant_manual_assign.field_assign_manual_quants_lines_id
msgid "ID"
msgstr "ID"

#. module: stock_quant_manual_assign
#: model:ir.model.fields,field_description:stock_quant_manual_assign.field_assign_manual_quants___last_update
#: model:ir.model.fields,field_description:stock_quant_manual_assign.field_assign_manual_quants_lines___last_update
msgid "Last Modified on"
msgstr ""

#. module: stock_quant_manual_assign
#: model:ir.model.fields,field_description:stock_quant_manual_assign.field_assign_manual_quants_lines_write_uid
#: model:ir.model.fields,field_description:stock_quant_manual_assign.field_assign_manual_quants_write_uid
msgid "Last Updated by"
msgstr "Última actualización por"

#. module: stock_quant_manual_assign
#: model:ir.model.fields,field_description:stock_quant_manual_assign.field_assign_manual_quants_lines_write_date
#: model:ir.model.fields,field_description:stock_quant_manual_assign.field_assign_manual_quants_write_date
msgid "Last Updated on"
msgstr "Última actualización en"

#. module: stock_quant_manual_assign
#: model:ir.model.fields,field_description:stock_quant_manual_assign.field_assign_manual_quants_lines_location_id
msgid "Location"
msgstr ""

#. module: stock_quant_manual_assign
#: model:ir.model.fields,field_description:stock_quant_manual_assign.field_assign_manual_quants_lines_lot_id
msgid "Lot"
msgstr ""

#. module: stock_quant_manual_assign
#: model:ir.ui.view,arch_db:stock_quant_manual_assign.stock_picking_manual_quants_form_view
msgid "Manual Quants"
msgstr ""

#. module: stock_quant_manual_assign
#: model:ir.actions.act_window,name:stock_quant_manual_assign.assign_manual_quants_action
msgid "Manual assignment"
msgstr ""

#. module: stock_quant_manual_assign
#: model:ir.model.fields,field_description:stock_quant_manual_assign.field_assign_manual_quants_lines_assign_wizard
#: model:ir.model.fields,field_description:stock_quant_manual_assign.field_assign_manual_quants_move_id
msgid "Move"
msgstr ""

#. module: stock_quant_manual_assign
#: model:ir.model.fields,field_description:stock_quant_manual_assign.field_assign_manual_quants_lines_on_hand
msgid "On Hand"
msgstr ""

#. module: stock_quant_manual_assign
#: model:ir.model.fields,field_description:stock_quant_manual_assign.field_assign_manual_quants_lines_reserved
msgid "Others Reserved"
msgstr ""

#. module: stock_quant_manual_assign
#: model:ir.model.fields,field_description:stock_quant_manual_assign.field_assign_manual_quants_lines_owner_id
msgid "Owner"
msgstr ""

#. module: stock_quant_manual_assign
#: model:ir.model.fields,field_description:stock_quant_manual_assign.field_assign_manual_quants_lines_package_id
msgid "Package"
msgstr ""

#. module: stock_quant_manual_assign
#: model:ir.model.fields,field_description:stock_quant_manual_assign.field_assign_manual_quants_lines_qty_5753
msgid "QTY"
msgstr ""

#. module: stock_quant_manual_assign
#: model:ir.model.fields,field_description:stock_quant_manual_assign.field_assign_manual_quants_lines_quant_id
msgid "Quant"
msgstr ""

#. module: stock_quant_manual_assign
#: code:addons/stock_quant_manual_assign/wizard/assign_manual_quants.py:26
#, python-format
msgid "Quantity is higher than the needed one"
msgstr ""

#. module: stock_quant_manual_assign
#: model:ir.model.fields,field_description:stock_quant_manual_assign.field_assign_manual_quants_quants_lines
msgid "Quants"
msgstr ""

#. module: stock_quant_manual_assign
#: model:ir.model.fields,field_description:stock_quant_manual_assign.field_assign_manual_quants_move_qty
msgid "Remaining qty"
msgstr ""

#. module: stock_quant_manual_assign
#: model:ir.model.fields,field_description:stock_quant_manual_assign.field_assign_manual_quants_lines_qty
msgid "Reserved qty"
msgstr ""

#. module: stock_quant_manual_assign
#: model:ir.model.fields,field_description:stock_quant_manual_assign.field_assign_manual_quants_lines_selected
msgid "Select"
msgstr ""

#. module: stock_quant_manual_assign
#: code:addons/stock_quant_manual_assign/wizard/assign_manual_quants.py:175
#, python-format
msgid ""
"Selected line quantity is higher than the available one. Maybe an operation "
"with this product has been done meanwhile or you have manually increased the "
"suggested value."
msgstr ""

#. module: stock_quant_manual_assign
#: model:ir.model.fields,help:stock_quant_manual_assign.field_assign_manual_quants_lines_package_id
msgid "The package containing this quant"
msgstr ""

#. module: stock_quant_manual_assign
#: model:ir.model.fields,help:stock_quant_manual_assign.field_assign_manual_quants_lines_owner_id
msgid "This is the owner of the quant"
msgstr ""

#. module: stock_quant_manual_assign
#: model:ir.model,name:stock_quant_manual_assign.model_assign_manual_quants
msgid "assign.manual.quants"
msgstr ""

#. module: stock_quant_manual_assign
#: model:ir.model,name:stock_quant_manual_assign.model_assign_manual_quants_lines
msgid "assign.manual.quants.lines"
msgstr ""

#. module: stock_quant_manual_assign
#: model:ir.ui.view,arch_db:stock_quant_manual_assign.assign_manual_quants_form_view
msgid "qty"
msgstr ""

0 comments on commit 8a90d6c

Please sign in to comment.