Skip to content

Commit

Permalink
[MIG] picking_waybill: Migration to 18.0
Browse files Browse the repository at this point in the history
closes #577

Signed-off-by: Juan Carreras <[email protected]>
  • Loading branch information
mav-adhoc committed Dec 5, 2024
1 parent 2de7a3c commit 5d20d02
Show file tree
Hide file tree
Showing 5 changed files with 134 additions and 0 deletions.
70 changes: 70 additions & 0 deletions picking_waybill/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
.. |company| replace:: ADHOC SA

.. |company_logo| image:: https://raw.githubusercontent.com/ingadhoc/maintainer-tools/master/resources/adhoc-logo.png
:alt: ADHOC SA
:target: https://www.adhoc.com.ar

.. |icon| image:: https://raw.githubusercontent.com/ingadhoc/maintainer-tools/master/resources/adhoc-icon.png

.. image:: https://img.shields.io/badge/license-AGPL--3-blue.png
:target: https://www.gnu.org/licenses/agpl
:alt: License: AGPL-3

====================
Stock Picking Labels
====================

#. Prints picking waybill.

Installation
============

To install this module, you need to:

#. Just install this module

Configuration
=============

To configure this module, you need to:

#. No configuration needed.

Usage
=====

To use this module, you need to:

#. Go to the Picking and print the report "Stock Picking Labels".

.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot
:target: http://runbot.adhoc.com.ar/

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

Bugs are tracked on `GitHub Issues
<https://github.com/ingadhoc/stock/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.

Credits
=======

Images
------

* |company| |icon|

Contributors
------------

Maintainer
----------

|company_logo|

This module is maintained by the |company|.

To contribute to this module, please visit https://www.adhoc.com.ar.
4 changes: 4 additions & 0 deletions picking_waybill/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
##############################################################################
# For copyright and license notices, see __manifest__.py file in module root
# directory
##############################################################################
44 changes: 44 additions & 0 deletions picking_waybill/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
##############################################################################
#
# Copyright (C) 2015 ADHOC SA (http://www.adhoc.com.ar)
# All Rights Reserved.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
{
'name': 'Picking Waybill',
'version': "18.0.1.0.0",
'category': 'Warehouse Management',
'sequence': 14,
'summary': '',
'author': 'ADHOC SA',
'website': 'www.adhoc.com.ar',
'license': 'AGPL-3',
'images': [
],
'depends': [
'stock',
'report_aeroo',
'stock_voucher',
],
'data': [
'report/stock_report_data.xml',
],
'demo': [
],
'installable': True,
'auto_install': False,
'application': False,
}
Binary file added picking_waybill/report/picking_waybill.ods
Binary file not shown.
16 changes: 16 additions & 0 deletions picking_waybill/report/stock_report_data.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?xml version="1.0"?>
<odoo noupdate="1">

<record id="picking_waybill" model="ir.actions.report">
<field name="name">Hoja de ruta</field>
<field name="model">stock.picking</field>
<field name="binding_model_id" ref="stock.model_stock_picking"/>
<field name="report_name">Hoja de ruta</field>
<field name="report_type">aeroo</field>
<field name="in_format">oo-ods</field>
<field name="report_file">picking_waybill/report/picking_waybill.ods</field>
<field name="out_format" ref="report_aeroo.report_mimetypes_xls_odt"/>
<field name="tml_source">file</field>
</record>

</odoo>

0 comments on commit 5d20d02

Please sign in to comment.