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

14.0 stock picking report cmr #1

Open
wants to merge 5 commits into
base: 14.0
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
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
95 changes: 95 additions & 0 deletions stock_picking_report_cmr/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
=========================
Print Formats Picking CMR
=========================

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

.. |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--reporting-lightgray.png?logo=github
:target: https://github.com/OCA/stock-logistics-reporting/tree/14.0/stock_picking_report_cmr
:alt: OCA/stock-logistics-reporting
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/stock-logistics-reporting-14-0/stock-logistics-reporting-14-0-stock_picking_report_cmr
: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-reporting&target_branch=14.0
:alt: Try me on Runboat

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

This module allows the printing of the CMR report from a given delivery note.

**Table of contents**

.. contents::
:local:

Usage
=====

To use features of this module, you need to:

#. First, fill in the "CMR Code" field.
#. Once you are in the delivery note, click on the "Print" drop-down menu and then select "CMR Report".

Changelog
=========

14.0.1.0.0
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

* Initial release

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

Bugs are tracked on `GitHub Issues <https://github.com/OCA/stock-logistics-reporting/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-reporting/issues/new?body=module:%20stock_picking_report_cmr%0Aversion:%2014.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
~~~~~~~

* Trey
* Therp BV

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

* Roberto Lizana
* Ashish Hirpara <ashish.hirapara1995@gmail.com>
* Nikos Tsirintanis <ntsirintanis@therp.nl>

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-reporting <https://github.com/OCA/stock-logistics-reporting/tree/14.0/stock_picking_report_cmr>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
5 changes: 4 additions & 1 deletion stock_picking_report_cmr/__manifest__.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
# © 2022 Roberto Lizana (Trey)
# Copyright 2025 Therp BV <https://therp.nl>
# License: LGPL-3 or later (https://www.gnu.org/licenses/lgpl.html).
{
"name": "Print Formats Picking CMR",
"summary": "CMR Report from Picking",
"version": "14.0.1.0.0",
"category": "Warehouse Management",
"author": "Trey, " "Odoo Community Association (OCA)",
"author": "Trey, " "Therp BV, " "Odoo Community Association (OCA)",
"license": "LGPL-3",
"website": "https://github.com/OCA/stock-logistics-reporting",
"contributors": ["AshishHirapara"],
"depends": [
"delivery_carrier_partner",
"delivery_package_number",
"stock",
"web",
],
Expand Down
1 change: 1 addition & 0 deletions stock_picking_report_cmr/models/stock_picking.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ class StockPicking(models.Model):
default=0,
help="Code needed for CMR Report",
)
nature_of_goods = fields.Char()
1 change: 1 addition & 0 deletions stock_picking_report_cmr/readme/CONTRIBUTORS.rst
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
* Roberto Lizana
* Ashish Hirpara <ashish.hirapara1995@gmail.com>
* Nikos Tsirintanis <ntsirintanis@therp.nl>
Loading
Loading