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

[16.0][ADD] stock_barcodes_gs1_expiry_simple #647

Open
wants to merge 1 commit into
base: 16.0
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 6 additions & 0 deletions setup/stock_barcodes_gs1_expiry_simple/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,
)
86 changes: 86 additions & 0 deletions stock_barcodes_gs1_expiry_simple/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
================================
Stock Barcodes GS1 Expiry Simple
================================

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

.. |badge1| image:: https://img.shields.io/badge/maturity-Mature-brightgreen.png
:target: https://odoo-community.org/page/development-status
:alt: Mature
.. |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--barcode-lightgray.png?logo=github
:target: https://github.com/OCA/stock-logistics-barcode/tree/16.0/stock_barcodes_gs1_expiry_simple
:alt: OCA/stock-logistics-barcode
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/stock-logistics-barcode-16-0/stock-logistics-barcode-16-0-stock_barcodes_gs1_expiry_simple
: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-barcode&target_branch=16.0
:alt: Try me on Runboat

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

This module is a glue module between the module **stock_barcodes** from `github.com/OCA/stock-logistics-barcode <https://github.com/OCA/stock-logistics-barcode/>`_ and the module **product_expiry_simple** from `github.com/OCA/stock-logistics-workflow <https://github.com/OCA/stock-logistics-workflow/>`_.

The OCA module **product_expiry_simple** is an equivalent of the official module **product_expiry** that add a single date field on lots for the expiry date (instead of adding 4 datetime fields).

**Table of contents**

.. contents::
:local:

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

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

* Akretion

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

* Alexis de Lattre <alexis.delattre@akretion.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.

.. |maintainer-alexis-via| image:: https://github.com/alexis-via.png?size=40px
:target: https://github.com/alexis-via
:alt: alexis-via

Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:

|maintainer-alexis-via|

This module is part of the `OCA/stock-logistics-barcode <https://github.com/OCA/stock-logistics-barcode/tree/16.0/stock_barcodes_gs1_expiry_simple>`_ 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_barcodes_gs1_expiry_simple/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import wizards
21 changes: 21 additions & 0 deletions stock_barcodes_gs1_expiry_simple/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Copyright 2024 Akretion France (http://www.akretion.com/)
# @author: Alexis de Lattre <alexis.delattre@akretion.com>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

{
"name": "Stock Barcodes GS1 Expiry Simple",
"version": "16.0.1.0.0",
"category": "Warehouse",
"license": "AGPL-3",
"summary": "Glue module between stock_barcodes_gs1 and product_expiry_simple",
"author": "Akretion,Odoo Community Association (OCA)",
"maintainers": ["alexis-via"],
"development_status": "Mature",
"website": "https://github.com/OCA/stock-logistics-barcode",
"depends": ["stock_barcodes_gs1", "product_expiry_simple"],
"data": [
"wizards/stock_barcodes_read_view.xml",
],
"installable": True,
"auto_install": True,
}
28 changes: 28 additions & 0 deletions stock_barcodes_gs1_expiry_simple/i18n/fr.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * stock_barcodes_gs1_expiry_simple
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-27 14:39+0000\n"
"PO-Revision-Date: 2024-09-27 14:39+0000\n"
"Last-Translator: \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"

#. module: stock_barcodes_gs1_expiry_simple
#: model:ir.model.fields,field_description:stock_barcodes_gs1_expiry_simple.field_wiz_stock_barcodes_read__expiry_date
#: model:ir.model.fields,field_description:stock_barcodes_gs1_expiry_simple.field_wiz_stock_barcodes_read_inventory__expiry_date
#: model:ir.model.fields,field_description:stock_barcodes_gs1_expiry_simple.field_wiz_stock_barcodes_read_picking__expiry_date
msgid "Expiry Date"
msgstr "Date de péremption"

#. module: stock_barcodes_gs1_expiry_simple
#: model:ir.model,name:stock_barcodes_gs1_expiry_simple.model_wiz_stock_barcodes_read
msgid "Wizard to read barcode"
msgstr "Assistant de lecture de code-barre"
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * stock_barcodes_gs1_expiry_simple
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-27 14:39+0000\n"
"PO-Revision-Date: 2024-09-27 14:39+0000\n"
"Last-Translator: \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"

#. module: stock_barcodes_gs1_expiry_simple
#: model:ir.model.fields,field_description:stock_barcodes_gs1_expiry_simple.field_wiz_stock_barcodes_read__expiry_date
#: model:ir.model.fields,field_description:stock_barcodes_gs1_expiry_simple.field_wiz_stock_barcodes_read_inventory__expiry_date
#: model:ir.model.fields,field_description:stock_barcodes_gs1_expiry_simple.field_wiz_stock_barcodes_read_picking__expiry_date
msgid "Expiry Date"
msgstr ""

#. module: stock_barcodes_gs1_expiry_simple
#: model:ir.model,name:stock_barcodes_gs1_expiry_simple.model_wiz_stock_barcodes_read
msgid "Wizard to read barcode"
msgstr ""
1 change: 1 addition & 0 deletions stock_barcodes_gs1_expiry_simple/readme/CONTRIBUTORS.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* Alexis de Lattre <alexis.delattre@akretion.com>
3 changes: 3 additions & 0 deletions stock_barcodes_gs1_expiry_simple/readme/DESCRIPTION.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
This module is a glue module between the module **stock_barcodes** from `github.com/OCA/stock-logistics-barcode <https://github.com/OCA/stock-logistics-barcode/>`_ and the module **product_expiry_simple** from `github.com/OCA/stock-logistics-workflow <https://github.com/OCA/stock-logistics-workflow/>`_.

The OCA module **product_expiry_simple** is an equivalent of the official module **product_expiry** that add a single date field on lots for the expiry date (instead of adding 4 datetime fields).
Loading
Loading