Skip to content

Commit

Permalink
Merge PR #1227 into 16.0
Browse files Browse the repository at this point in the history
Signed-off-by ivantodorovich
  • Loading branch information
OCA-git-bot committed Sep 18, 2024
2 parents f808797 + 312d045 commit cea60a3
Show file tree
Hide file tree
Showing 29 changed files with 1,280 additions and 0 deletions.
144 changes: 144 additions & 0 deletions pos_picking_delayed/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,144 @@
========================================
Point of Sale - Picking Creation Delayed
========================================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:622db1c8626b1b09ead079043386a1f40457fbc59e7dea9a5f62ae9782b9e4c1
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |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%2Fpos-lightgray.png?logo=github
:target: https://github.com/OCA/pos/tree/16.0/pos_picking_delayed
:alt: OCA/pos
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/pos-16-0/pos-16-0-pos_picking_delayed
: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/pos&target_branch=16.0
:alt: Try me on Runboat

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

This module extends the functionality of odoo Point Of Sale to reduce creation
time of the PoS orders, via the front UI.

For that purpose, it delays the creation of the picking associated, that will
be created later by queue job.

This module is interesting specially in a context of Synchroneous Point Of
Sale that is introduced by certification modules like 'l10n_fr_pos_cert' because
in such cases, the bill will be printed only when the pos order is created (
after the call of the function create_from_ui) and the creation of the picking
is the process that takes the most time.

See https://github.com/odoo/odoo/pull/26314#issuecomment-422949266
for more information.

**Table of contents**

.. contents::
:local:

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

* Go to 'Point of Sale' / 'Configuration' / 'Point of Sale'
* Select your Point of Sale
* Set the value in the field 'Picking Creation Delayed'. (Checked by default)

.. image:: https://raw.githubusercontent.com/pos_picking_delayed/static/description/pos_config_form.png

* This module depends on ``queue_job`` module that requires specific
configuration to works properly. Make sure your config file is correctly set.
See https://github.com/OCA/queue/tree/12.0/queue_job

You should update your ``odoo.cfg`` file to add a new channel named
``root.pos_picking_delayed``:


.. code-block::
[queue_job]
channels = root:2,root.pos_picking_delayed:1
Otherwise, you'll have a non blocking warning in your log, like this one.

.. code-block::
WARNING ? odoo.addons.queue_job.jobrunner.channels: unknown channel root.pos_picking_delayed, using root channel for job 23f6b872-1d2c-4003-bd38-a8486bbec664
Usage
=====

* Use your Point of Sale as usual. When validating an order, the order will
be in a different color until the job is executed

.. image:: https://raw.githubusercontent.com/pos_picking_delayed/static/description/pos_order_tree.png

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

Bugs are tracked on `GitHub Issues <https://github.com/OCA/pos/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/pos/issues/new?body=module:%20pos_picking_delayed%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
~~~~~~~

* GRAP

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

* Sylvain LE GAL <https://twitter.com/legalsylvain>
* `Tecnativa <https://www.tecnativa.com>`_:

* Carlos Roca

Other credits
~~~~~~~~~~~~~

The development of this module has been financially supported by:

* GRAP, Groupement Régional Alimentaire de Proximité (www.grap.coop)
* Mind & Go, (https://mind-and-go.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-legalsylvain| image:: https://github.com/legalsylvain.png?size=40px
:target: https://github.com/legalsylvain
:alt: legalsylvain

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

|maintainer-legalsylvain|

This module is part of the `OCA/pos <https://github.com/OCA/pos/tree/16.0/pos_picking_delayed>`_ 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 pos_picking_delayed/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import models
23 changes: 23 additions & 0 deletions pos_picking_delayed/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Copyright 2018 - Today Sylvain LE GAL (https://twitter.com/legalsylvain)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).

{
"name": "Point of Sale - Picking Creation Delayed",
"summary": "Delay the creation of the picking when PoS order is created",
"version": "16.0.1.0.0",
"category": "Point Of Sale",
"author": "GRAP, " "Odoo Community Association (OCA)",
"maintainers": ["legalsylvain"],
"license": "AGPL-3",
"website": "https://github.com/OCA/pos",
"depends": ["point_of_sale", "queue_job"],
"data": [
"data/queue_job_channel.xml",
"data/queue_job_function.xml",
"views/view_pos_config.xml",
"views/view_pos_order.xml",
],
"demo": ["demo/pos_config.xml"],
"images": ["static/description/pos_order_tree.png"],
"installable": True,
}
11 changes: 11 additions & 0 deletions pos_picking_delayed/data/queue_job_channel.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" ?>
<!-- Copyright 2021 - Today Sylvain LE GAL (https://twitter.com/legalsylvain)
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).-->
<odoo>

<record id="channel_pos_picking_delayed" model="queue.job.channel">
<field name="name">pos_picking_delayed</field>
<field name="parent_id" ref="queue_job.channel_root" />
</record>

</odoo>
12 changes: 12 additions & 0 deletions pos_picking_delayed/data/queue_job_function.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" ?>
<!-- Copyright 2021 - Today Sylvain LE GAL (https://twitter.com/legalsylvain)
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).-->
<odoo>

<record id="job_function_create_delayed_picking" model="queue.job.function">
<field name="model_id" ref="point_of_sale.model_pos_order" />
<field name="method">_create_delayed_picking</field>
<field name="channel_id" ref="channel_pos_picking_delayed" />
</record>

</odoo>
16 changes: 16 additions & 0 deletions pos_picking_delayed/demo/pos_config.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?xml version="1.0" ?>
<!--
Copyright 2020 - Today Sylvain LE GAL (https://twitter.com/legalsylvain)
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
-->
<odoo>

<!--
we disable the feature for the demo pos config to avoid
other module to fail during the test.
-->
<record id="point_of_sale.pos_config_main" model="pos.config">
<field name="picking_creation_delayed" eval="False" />
</record>

</odoo>
62 changes: 62 additions & 0 deletions pos_picking_delayed/i18n/es.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_picking_delayed
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 12.0\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2020-07-27 11:19+0000\n"
"Last-Translator: Daniel Martinez Vila <[email protected]>\n"
"Language-Team: none\n"
"Language: es\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"
"X-Generator: Weblate 3.10\n"

#. module: pos_picking_delayed
#: model:ir.model.fields,help:pos_picking_delayed.field_pos_config__picking_creation_delayed
msgid ""
"Check this box if you want to delay the creation of the picking created by "
"the PoS orders. If checked, the pickings will be created later, by a cron "
"task."
msgstr ""
"Marque esta casilla si desea retrasar la creación de la selección creada por "
"los pedidos PdV. Si está marcada, las selecciones se crearán más tarde, por "
"una tarea cron."

#. module: pos_picking_delayed
#: model_terms:ir.ui.view,arch_db:pos_picking_delayed.view_pos_config_form
msgid "Delay the creation of the picking created by the PoS orders"
msgstr "Retrasar la creación del picking creado por los pedidos PdV"

#. module: pos_picking_delayed
#: model:ir.model.fields,field_description:pos_picking_delayed.field_pos_order__has_picking_delayed
msgid "Has Picking Delayed"
msgstr "Ha retrasado el picking"

#. module: pos_picking_delayed
#: model:ir.model.fields,field_description:pos_picking_delayed.field_pos_config__picking_creation_delayed
msgid "Picking Creation Delayed"
msgstr "Creación de picking retrasada"

#. module: pos_picking_delayed
#: model:ir.model,name:pos_picking_delayed.model_pos_config
msgid "Point of Sale Configuration"
msgstr "Configuración del punto de venta"

#. module: pos_picking_delayed
#: model:ir.model,name:pos_picking_delayed.model_pos_order
msgid "Point of Sale Orders"
msgstr "Pedidos de Punto de Venta"

#. module: pos_picking_delayed
#: model:ir.model.fields,help:pos_picking_delayed.field_pos_order__has_picking_delayed
msgid ""
"This checkbox is checked if the generation of the picking has been delayed. "
"The picking will be created by cron."
msgstr ""
"Esta casilla de verificación se marca si la generación del picking se ha "
"retrasado. La selección será creada por cron."
64 changes: 64 additions & 0 deletions pos_picking_delayed/i18n/fr.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_picking_delayed
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 12.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-05-05 09:52+0000\n"
"PO-Revision-Date: 2020-05-05 09:52+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"

#. module: pos_picking_delayed
#: model:ir.model.fields,help:pos_picking_delayed.field_pos_config__picking_creation_delayed
msgid ""
"Check this box if you want to delay the creation of the picking created by "
"the PoS orders. If checked, the pickings will be created later, by a cron "
"task."
msgstr ""
"Cochez cette case si vous souhaitez retarder la création des transferts de "
"stock liés au commandes de point de vente. Si la case est cochée, ceux-ci "
"seront créés ultérieurement, par une tâche de fond."

#. module: pos_picking_delayed
#: model_terms:ir.ui.view,arch_db:pos_picking_delayed.view_pos_config_form
msgid "Delay the creation of the picking created by the PoS orders"
msgstr ""
"Retarder la création des transferts de stock créé par les Commandes du Point "
"de Vente"

#. module: pos_picking_delayed
#: model:ir.model.fields,field_description:pos_picking_delayed.field_pos_order__has_picking_delayed
msgid "Has Picking Delayed"
msgstr "A un transfert retardée"

#. module: pos_picking_delayed
#: model:ir.model.fields,field_description:pos_picking_delayed.field_pos_config__picking_creation_delayed
msgid "Picking Creation Delayed"
msgstr "Création de transfert retardé"

#. module: pos_picking_delayed
#: model:ir.model,name:pos_picking_delayed.model_pos_config
msgid "Point of Sale Configuration"
msgstr "Paramétrage du point de vente"

#. module: pos_picking_delayed
#: model:ir.model,name:pos_picking_delayed.model_pos_order
msgid "Point of Sale Orders"
msgstr "Commandes du point de vente"

#. module: pos_picking_delayed
#: model:ir.model.fields,help:pos_picking_delayed.field_pos_order__has_picking_delayed
msgid ""
"This checkbox is checked if the generation of the picking has been delayed. "
"The picking will be created by cron."
msgstr ""
"Cette case est cochée si la génération du transfert de stock a été retardée. "
"Celui ci sera créé par une tâche de fond."
Loading

0 comments on commit cea60a3

Please sign in to comment.