Skip to content

Commit ef1fd66

Browse files
committed
[ADD] stock_picking_batch_packaging_qty: Packaging in stock picking batch
@moduon MT-5810
1 parent 8b67562 commit ef1fd66

File tree

13 files changed

+643
-0
lines changed

13 files changed

+643
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../../stock_picking_batch_packaging_qty
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import setuptools
2+
3+
setuptools.setup(
4+
setup_requires=['setuptools-odoo'],
5+
odoo_addon=True,
6+
)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
=========================
2+
Stock Batch Packaging Qty
3+
=========================
4+
5+
..
6+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
7+
!! This file is generated by oca-gen-addon-readme !!
8+
!! changes will be overwritten. !!
9+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10+
!! source digest: sha256:e218c233fb4d5484d9187b62ec1994aa29278a35a8df7d63a76f5f5632c335a3
11+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12+
13+
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
14+
:target: https://odoo-community.org/page/development-status
15+
:alt: Beta
16+
.. |badge2| image:: https://img.shields.io/badge/licence-LGPL--3-blue.png
17+
:target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html
18+
:alt: License: LGPL-3
19+
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fstock--logistics--warehouse-lightgray.png?logo=github
20+
:target: https://github.com/OCA/stock-logistics-warehouse/tree/16.0/stock_picking_batch_packaging_qty
21+
:alt: OCA/stock-logistics-warehouse
22+
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
23+
:target: https://translation.odoo-community.org/projects/stock-logistics-warehouse-16-0/stock-logistics-warehouse-16-0-stock_picking_batch_packaging_qty
24+
:alt: Translate me on Weblate
25+
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
26+
:target: https://runboat.odoo-community.org/builds?repo=OCA/stock-logistics-warehouse&target_branch=16.0
27+
:alt: Try me on Runboat
28+
29+
|badge1| |badge2| |badge3| |badge4| |badge5|
30+
31+
Add packaging fields in tree views inside picking batch.
32+
33+
**Table of contents**
34+
35+
.. contents::
36+
:local:
37+
38+
Bug Tracker
39+
===========
40+
41+
Bugs are tracked on `GitHub Issues <https://github.com/OCA/stock-logistics-warehouse/issues>`_.
42+
In case of trouble, please check there if your issue has already been reported.
43+
If you spotted it first, help us to smash it by providing a detailed and welcomed
44+
`feedback <https://github.com/OCA/stock-logistics-warehouse/issues/new?body=module:%20stock_picking_batch_packaging_qty%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
45+
46+
Do not contact contributors directly about support or help with technical issues.
47+
48+
Credits
49+
=======
50+
51+
Authors
52+
~~~~~~~
53+
54+
* Moduon
55+
56+
Contributors
57+
~~~~~~~~~~~~
58+
59+
* Emilio Pascual (`Moduon <https://www.moduon.team/>`__)
60+
61+
Maintainers
62+
~~~~~~~~~~~
63+
64+
This module is maintained by the OCA.
65+
66+
.. image:: https://odoo-community.org/logo.png
67+
:alt: Odoo Community Association
68+
:target: https://odoo-community.org
69+
70+
OCA, or the Odoo Community Association, is a nonprofit organization whose
71+
mission is to support the collaborative development of Odoo features and
72+
promote its widespread use.
73+
74+
.. |maintainer-EmilioPascual| image:: https://github.com/EmilioPascual.png?size=40px
75+
:target: https://github.com/EmilioPascual
76+
:alt: EmilioPascual
77+
.. |maintainer-rafaelbn| image:: https://github.com/rafaelbn.png?size=40px
78+
:target: https://github.com/rafaelbn
79+
:alt: rafaelbn
80+
81+
Current `maintainers <https://odoo-community.org/page/maintainer-role>`__:
82+
83+
|maintainer-EmilioPascual| |maintainer-rafaelbn|
84+
85+
This module is part of the `OCA/stock-logistics-warehouse <https://github.com/OCA/stock-logistics-warehouse/tree/16.0/stock_picking_batch_packaging_qty>`_ project on GitHub.
86+
87+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

stock_picking_batch_packaging_qty/__init__.py

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Copyright 2024 Moduon Team S.L.
2+
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl-3.0)
3+
{
4+
"name": "Stock Batch Packaging Qty",
5+
"summary": "Add packaging fields in stock picking batch",
6+
"version": "16.0.1.0.0",
7+
"author": "Moduon, Odoo Community Association (OCA)",
8+
"website": "https://github.com/OCA/stock-logistics-warehouse",
9+
"category": "Warehouse",
10+
"depends": ["stock_picking_batch", "stock_move_packaging_qty"],
11+
"data": [
12+
"views/stock_move_line_view.xml",
13+
"views/stock_move_view.xml",
14+
],
15+
"license": "LGPL-3",
16+
"installable": True,
17+
"autoinstall": True,
18+
"maintainers": ["EmilioPascual", "rafaelbn"],
19+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Translation of Odoo Server.
2+
# This file contains the translation of the following modules:
3+
# * stock_picking_batch_packaging_qty
4+
#
5+
msgid ""
6+
msgstr ""
7+
"Project-Id-Version: Odoo Server 16.0+e\n"
8+
"Report-Msgid-Bugs-To: \n"
9+
"POT-Creation-Date: 2024-04-18 13:59+0000\n"
10+
"PO-Revision-Date: 2024-04-18 16:00+0200\n"
11+
"Last-Translator: Emilio Pascual <emilio@moduom.team>\n"
12+
"Language-Team: \n"
13+
"Language: es\n"
14+
"MIME-Version: 1.0\n"
15+
"Content-Type: text/plain; charset=UTF-8\n"
16+
"Content-Transfer-Encoding: 8bit\n"
17+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
18+
"X-Generator: Poedit 3.4.2\n"
19+
20+
#. module: stock_picking_batch_packaging_qty
21+
#: model_terms:ir.ui.view,arch_db:stock_picking_batch_packaging_qty.view_picking_move_tree_inherited
22+
msgid "Pack Qty"
23+
msgstr "Cant. Env."
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Translation of Odoo Server.
2+
# This file contains the translation of the following modules:
3+
# * stock_picking_batch_packaging_qty
4+
#
5+
msgid ""
6+
msgstr ""
7+
"Project-Id-Version: Odoo Server 16.0+e\n"
8+
"Report-Msgid-Bugs-To: \n"
9+
"POT-Creation-Date: 2024-04-18 13:59+0000\n"
10+
"PO-Revision-Date: 2024-04-18 13:59+0000\n"
11+
"Last-Translator: \n"
12+
"Language-Team: \n"
13+
"MIME-Version: 1.0\n"
14+
"Content-Type: text/plain; charset=UTF-8\n"
15+
"Content-Transfer-Encoding: \n"
16+
"Plural-Forms: \n"
17+
18+
#. module: stock_picking_batch_packaging_qty
19+
#: model_terms:ir.ui.view,arch_db:stock_picking_batch_packaging_qty.view_picking_move_tree_inherited
20+
msgid "Pack Qty"
21+
msgstr ""
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* Emilio Pascual (`Moduon <https://www.moduon.team/>`__)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Add packaging fields in tree views inside picking batch.
Loading

0 commit comments

Comments
 (0)