odoo13-addon-web-widget-one2many-product-picker


Nameodoo13-addon-web-widget-one2many-product-picker JSON
Version 13.0.2.0.3 PyPI version JSON
download
home_pagehttps://github.com/OCA/web
SummaryWidget to select products on one2many fields
upload_time2023-07-04 09:24:55
maintainer
docs_urlNone
authorTecnativa, Odoo Community Association (OCA)
requires_python>=3.5
licenseAGPL-3
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ==================================
Web Widget One2Many Product Picker
==================================

.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
   !! This file is generated by oca-gen-addon-readme !!
   !! changes will be overwritten.                   !!
   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

.. |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%2Fweb-lightgray.png?logo=github
    :target: https://github.com/OCA/web/tree/13.0/web_widget_one2many_product_picker
    :alt: OCA/web
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
    :target: https://translation.odoo-community.org/projects/web-13-0/web-13-0-web_widget_one2many_product_picker
    :alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
    :target: https://runbot.odoo-community.org/runbot/162/13.0
    :alt: Try me on Runbot

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

Adds the 'one2many_product_picker' friendly mobile widget to create one2many lines linked with product.product records.

**Table of contents**

.. contents::
   :local:

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

It's advisable to install 'web_widget_numeric_step' to have a better usability on touch screens.

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

Create or edit a new view and use the new widget called 'one2many_product_picker'.
You need to define the view fields. The view must be of ``form`` type.


Widget options:
~~~~~~~~~~~~~~~

* groups > Array of dictionaries -> Declare the groups

    * name -> The group name
    * string -> The text displayed
    * domain -> Forced domain to use
    * order -> The order

        * name -> The field name to order
        * asc -> Flag to use 'asc' order

    * records_per_page > Integer -> Used to control the load more behaviour (16 by default)
    * active -> Boolean -> Select the default group to use ('false' by default = 'All' group)

* currency_field > Model field used to format monetary values ('currency_id' by default)
* field_map > Dictionary:

    * product -> The field that represent the product (`product_id` by default)
    * name -> The field that represent a name ('name' by default)
    * product_uom -> The field that represent a product_uom ('product_uom' by default)
    * product_uom_qty -> The field that represent a product_uom_qty ('product_uom_qty' by default)
    * price_unit -> The field that represent a price_unit ('price_unit' by default)
    * discount -> The field that represent a discount ('discount' by default)

* search > Array of dictionaries (defines to use name_search by default)

    * name -> The name to display
    * domain -> The domain to use

        * $search -> Replaces it with the current value of the searchbox
        * $number_search -> Replaces all the leaf with the current value of the searchbox as a number

    * name_search_value -> Enables the use of 'name_search' instead of 'search_read' and defines the value to search ('$search' by default)
    * operator -> Operator used in 'name_search' ('ilike' by default)

* edit_discount > Enable/Disable discount edits (False by default)
* edit_price > Enable/Disable price edits (True by default)
* show_discount > Enable/Disable display discount (False by default)
* show_subtotal > Enable/Disable show subtotal (True by default)
* auto_save > Enable/Disable auto save (False by default)
* auto_save_delay > The time (in milliseconds) to wait after the last interaction before launching the autosave (1500 by default)
* all_domain > The domain used in 'All' section ([] by default)

  If using auto save feature, you should keep in mind that the "Save" and "Discard" buttons
  will lose part of its functionality as the document will be saved every time you
  modify/create a record with the widget.

* ignore_warning > Enable/Disable display onchange warnings (False by default)
* instant_search > Enable/Disable instant search mode (False by default)
* trigger_refresh_fields > Fields in the main record that dispatch a widget refresh (["partner_id", "currency_id"] by default)
* auto_focus > Keep the focus on the search box after performing a search (True by default)

All widget options are optional.
Notice that you can call '_' method to use translations. This only can be used with this widget.

Example:

.. code::

    options="{'search': [{'name': _('Starts With'), 'domain': [('name', '=like', '$search%')]}], 'groups': [{'name': 'cheap', 'string': _('Cheap'), 'domain': [('list_price', '<', 10.0)], 'field_map': { 'product': 'my_product_id' }}]}"


Default context:
~~~~~~~~~~~~~~~~

The widget sends a defaults context with the 'search_read' request:

    * active_search_group_name > Contains the name of the active search group

        * 'all' > Is the hard-coded name for the 'All' group
        * 'main_lines' > Is the hard-coded name for the 'Lines' group

    * active_search_involved_fields > Contains an array of dictionaries with the fields used with the searchbox content

        * 'type' > Can be 'text' or 'number'
        * 'field' > The field name
        * 'oper' > The operator used


Examples:
~~~~~~~~~

This is an example that uses the 'sale.order.line' fields:

.. code:: xml

    <field
        name="order_line"
        attrs="{'readonly': [('state', 'in', ('done','cancel'))]}"
        nolabel="1"
        mode="form"
        widget="one2many_product_picker"
        options="{'search': [{'name': 'Test', 'domain': [['name', 'ilike', '$search']]}] ,'edit_discount': True, 'show_discount': True, 'groups': [{'name': 'desk', 'string': _('Desks'), 'domain': [('name', 'ilike', '%desk%')], 'order': [{'name': 'id', 'asc': true}]}, {'name': 'chair', 'string': _('Chairs'), 'domain': [('name', 'ilike', '%chair%')]}]}"
    >
        <form>
            <field name="state" invisible="1" />
            <field name="display_type" invisible="1" />
            <field name="currency_id" invisible="1" />
            <field name="discount" widget="numeric_step" options="{'max': 100}" invisible="1"/>
            <field name="price_unit" widget="numeric_step" invisible="1"/>
            <field name="name" invisible="1" />
            <field name="product_id" invisible="1" />
            <field name="order_id" invisible="1"/>
            <field name="product_uom_qty" class="mb-1" widget="numeric_step" context="{
                'partner_id': parent.partner_id,
                'quantity': product_uom_qty,
                'pricelist': parent.pricelist_id,
                'uom': product_uom,
                'company_id': parent.company_id
            }" />
            <field name="product_uom" force_save="1" attrs="{
                'readonly': [('state', 'in', ('sale','done', 'cancel'))],
                'required': [('display_type', '=', False)],
            }" context="{'company_id': parent.company_id}" class="mb-2" options="{'no_open': True, 'no_create': True, 'no_edit': True}" />
        </form>
    </field>

** In this example we don't use 'field_map' option because the default match with the sale.order.line field names.

Other example for 'purchase.order.line' fields:

.. code:: xml

    <field
        name="order_line"
        attrs="{'readonly': [('state', 'in', ('done','cancel'))]}"
        nolabel="1"
        widget="one2many_product_picker"
        mode="form"
        options="{'search': [{'name': _('Name'), 'domain': [['name', 'ilike', '$search']]}, {'name': _('Price'), 'domain': [['list_price', '=', $number_search]]}], 'field_map': {'product_uom_qty': 'product_qty'}, 'groups': [{'name': _('Desk'), 'domain': [['name', 'ilike', 'desk']], 'order': {'name': 'id', 'asc': true}}, {'name': _('Chairs'), 'domain': [['name', 'ilike', 'chair']]}]}"
    >
        <form>
            <field name="name" invisible="1" />
            <field name="product_id" invisible="1" />
            <field name="price_unit" invisible="1"  />
            <field name="currency_id" invisible="1" />
            <field name="order_id" invisible="1" />
            <field name="date_planned" class="mb-1" />
            <field name="product_qty" class="mb-1" widget="numeric_step" required="1" />
            <field name="product_uom" class="mb-2" options="{'no_open': True, 'no_create': True, 'no_edit': True}" />
        </form>
    </field>


Boostrap Modifications:
~~~~~~~~~~~~~~~~~~~~~~~

The product picker view container have a custom media queries space adding a new screen size called 'xxl' (>= 1440px) and modifies the columns to have 24 instead of 12.
This means that you can use "col-xxl-" inside the product picker view container.

Usage
=====

When you change the value of a field and switch to edit another record, the
changes will be applied to the previous record without having to click on
accept changes.

Parts of the widget:
~~~~~~~~~~~~~~~~~~~~

  .. image:: https://raw.githubusercontent.com/OCA/web/13.0/web_widget_one2many_product_picker/static/img/product_picker_anat.png

Preview:
~~~~~~~~

  .. image:: https://raw.githubusercontent.com/OCA/web/13.0/web_widget_one2many_product_picker/static/img/product_picker.gif

Known issues / Roadmap
======================

* Translations in the xml 'options' attribute of the field that use the widget can't be exported automatically to be translated
* The product card animations can be improved. Currently the card is recreated, so we lost some elements to apply correct effects
* sale.order onchanges that affects to "order_line" subfields will be ommitted to increase the performance

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

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

* Tecnativa

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

* `Tecnativa <https://www.tecnativa.com>`_:

    * Alexandre D. Díaz
    * Pedro M. Baeza
    * David Vidal

* Giovanni Serra <giovanni@gslab.it>

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/web <https://github.com/OCA/web/tree/13.0/web_widget_one2many_product_picker>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/OCA/web",
    "name": "odoo13-addon-web-widget-one2many-product-picker",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.5",
    "maintainer_email": "",
    "keywords": "",
    "author": "Tecnativa, Odoo Community Association (OCA)",
    "author_email": "support@odoo-community.org",
    "download_url": "",
    "platform": null,
    "description": "==================================\nWeb Widget One2Many Product Picker\n==================================\n\n.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! This file is generated by oca-gen-addon-readme !!\n   !! changes will be overwritten.                   !!\n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n\n.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png\n    :target: https://odoo-community.org/page/development-status\n    :alt: Beta\n.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png\n    :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html\n    :alt: License: AGPL-3\n.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github\n    :target: https://github.com/OCA/web/tree/13.0/web_widget_one2many_product_picker\n    :alt: OCA/web\n.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\n    :target: https://translation.odoo-community.org/projects/web-13-0/web-13-0-web_widget_one2many_product_picker\n    :alt: Translate me on Weblate\n.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png\n    :target: https://runbot.odoo-community.org/runbot/162/13.0\n    :alt: Try me on Runbot\n\n|badge1| |badge2| |badge3| |badge4| |badge5| \n\nAdds the 'one2many_product_picker' friendly mobile widget to create one2many lines linked with product.product records.\n\n**Table of contents**\n\n.. contents::\n   :local:\n\nInstallation\n============\n\nIt's advisable to install 'web_widget_numeric_step' to have a better usability on touch screens.\n\nConfiguration\n=============\n\nCreate or edit a new view and use the new widget called 'one2many_product_picker'.\nYou need to define the view fields. The view must be of ``form`` type.\n\n\nWidget options:\n~~~~~~~~~~~~~~~\n\n* groups > Array of dictionaries -> Declare the groups\n\n    * name -> The group name\n    * string -> The text displayed\n    * domain -> Forced domain to use\n    * order -> The order\n\n        * name -> The field name to order\n        * asc -> Flag to use 'asc' order\n\n    * records_per_page > Integer -> Used to control the load more behaviour (16 by default)\n    * active -> Boolean -> Select the default group to use ('false' by default = 'All' group)\n\n* currency_field > Model field used to format monetary values ('currency_id' by default)\n* field_map > Dictionary:\n\n    * product -> The field that represent the product (`product_id` by default)\n    * name -> The field that represent a name ('name' by default)\n    * product_uom -> The field that represent a product_uom ('product_uom' by default)\n    * product_uom_qty -> The field that represent a product_uom_qty ('product_uom_qty' by default)\n    * price_unit -> The field that represent a price_unit ('price_unit' by default)\n    * discount -> The field that represent a discount ('discount' by default)\n\n* search > Array of dictionaries (defines to use name_search by default)\n\n    * name -> The name to display\n    * domain -> The domain to use\n\n        * $search -> Replaces it with the current value of the searchbox\n        * $number_search -> Replaces all the leaf with the current value of the searchbox as a number\n\n    * name_search_value -> Enables the use of 'name_search' instead of 'search_read' and defines the value to search ('$search' by default)\n    * operator -> Operator used in 'name_search' ('ilike' by default)\n\n* edit_discount > Enable/Disable discount edits (False by default)\n* edit_price > Enable/Disable price edits (True by default)\n* show_discount > Enable/Disable display discount (False by default)\n* show_subtotal > Enable/Disable show subtotal (True by default)\n* auto_save > Enable/Disable auto save (False by default)\n* auto_save_delay > The time (in milliseconds) to wait after the last interaction before launching the autosave (1500 by default)\n* all_domain > The domain used in 'All' section ([] by default)\n\n  If using auto save feature, you should keep in mind that the \"Save\" and \"Discard\" buttons\n  will lose part of its functionality as the document will be saved every time you\n  modify/create a record with the widget.\n\n* ignore_warning > Enable/Disable display onchange warnings (False by default)\n* instant_search > Enable/Disable instant search mode (False by default)\n* trigger_refresh_fields > Fields in the main record that dispatch a widget refresh ([\"partner_id\", \"currency_id\"] by default)\n* auto_focus > Keep the focus on the search box after performing a search (True by default)\n\nAll widget options are optional.\nNotice that you can call '_' method to use translations. This only can be used with this widget.\n\nExample:\n\n.. code::\n\n    options=\"{'search': [{'name': _('Starts With'), 'domain': [('name', '=like', '$search%')]}], 'groups': [{'name': 'cheap', 'string': _('Cheap'), 'domain': [('list_price', '<', 10.0)], 'field_map': { 'product': 'my_product_id' }}]}\"\n\n\nDefault context:\n~~~~~~~~~~~~~~~~\n\nThe widget sends a defaults context with the 'search_read' request:\n\n    * active_search_group_name > Contains the name of the active search group\n\n        * 'all' > Is the hard-coded name for the 'All' group\n        * 'main_lines' > Is the hard-coded name for the 'Lines' group\n\n    * active_search_involved_fields > Contains an array of dictionaries with the fields used with the searchbox content\n\n        * 'type' > Can be 'text' or 'number'\n        * 'field' > The field name\n        * 'oper' > The operator used\n\n\nExamples:\n~~~~~~~~~\n\nThis is an example that uses the 'sale.order.line' fields:\n\n.. code:: xml\n\n    <field\n        name=\"order_line\"\n        attrs=\"{'readonly': [('state', 'in', ('done','cancel'))]}\"\n        nolabel=\"1\"\n        mode=\"form\"\n        widget=\"one2many_product_picker\"\n        options=\"{'search': [{'name': 'Test', 'domain': [['name', 'ilike', '$search']]}] ,'edit_discount': True, 'show_discount': True, 'groups': [{'name': 'desk', 'string': _('Desks'), 'domain': [('name', 'ilike', '%desk%')], 'order': [{'name': 'id', 'asc': true}]}, {'name': 'chair', 'string': _('Chairs'), 'domain': [('name', 'ilike', '%chair%')]}]}\"\n    >\n        <form>\n            <field name=\"state\" invisible=\"1\" />\n            <field name=\"display_type\" invisible=\"1\" />\n            <field name=\"currency_id\" invisible=\"1\" />\n            <field name=\"discount\" widget=\"numeric_step\" options=\"{'max': 100}\" invisible=\"1\"/>\n            <field name=\"price_unit\" widget=\"numeric_step\" invisible=\"1\"/>\n            <field name=\"name\" invisible=\"1\" />\n            <field name=\"product_id\" invisible=\"1\" />\n            <field name=\"order_id\" invisible=\"1\"/>\n            <field name=\"product_uom_qty\" class=\"mb-1\" widget=\"numeric_step\" context=\"{\n                'partner_id': parent.partner_id,\n                'quantity': product_uom_qty,\n                'pricelist': parent.pricelist_id,\n                'uom': product_uom,\n                'company_id': parent.company_id\n            }\" />\n            <field name=\"product_uom\" force_save=\"1\" attrs=\"{\n                'readonly': [('state', 'in', ('sale','done', 'cancel'))],\n                'required': [('display_type', '=', False)],\n            }\" context=\"{'company_id': parent.company_id}\" class=\"mb-2\" options=\"{'no_open': True, 'no_create': True, 'no_edit': True}\" />\n        </form>\n    </field>\n\n** In this example we don't use 'field_map' option because the default match with the sale.order.line field names.\n\nOther example for 'purchase.order.line' fields:\n\n.. code:: xml\n\n    <field\n        name=\"order_line\"\n        attrs=\"{'readonly': [('state', 'in', ('done','cancel'))]}\"\n        nolabel=\"1\"\n        widget=\"one2many_product_picker\"\n        mode=\"form\"\n        options=\"{'search': [{'name': _('Name'), 'domain': [['name', 'ilike', '$search']]}, {'name': _('Price'), 'domain': [['list_price', '=', $number_search]]}], 'field_map': {'product_uom_qty': 'product_qty'}, 'groups': [{'name': _('Desk'), 'domain': [['name', 'ilike', 'desk']], 'order': {'name': 'id', 'asc': true}}, {'name': _('Chairs'), 'domain': [['name', 'ilike', 'chair']]}]}\"\n    >\n        <form>\n            <field name=\"name\" invisible=\"1\" />\n            <field name=\"product_id\" invisible=\"1\" />\n            <field name=\"price_unit\" invisible=\"1\"  />\n            <field name=\"currency_id\" invisible=\"1\" />\n            <field name=\"order_id\" invisible=\"1\" />\n            <field name=\"date_planned\" class=\"mb-1\" />\n            <field name=\"product_qty\" class=\"mb-1\" widget=\"numeric_step\" required=\"1\" />\n            <field name=\"product_uom\" class=\"mb-2\" options=\"{'no_open': True, 'no_create': True, 'no_edit': True}\" />\n        </form>\n    </field>\n\n\nBoostrap Modifications:\n~~~~~~~~~~~~~~~~~~~~~~~\n\nThe product picker view container have a custom media queries space adding a new screen size called 'xxl' (>= 1440px) and modifies the columns to have 24 instead of 12.\nThis means that you can use \"col-xxl-\" inside the product picker view container.\n\nUsage\n=====\n\nWhen you change the value of a field and switch to edit another record, the\nchanges will be applied to the previous record without having to click on\naccept changes.\n\nParts of the widget:\n~~~~~~~~~~~~~~~~~~~~\n\n  .. image:: https://raw.githubusercontent.com/OCA/web/13.0/web_widget_one2many_product_picker/static/img/product_picker_anat.png\n\nPreview:\n~~~~~~~~\n\n  .. image:: https://raw.githubusercontent.com/OCA/web/13.0/web_widget_one2many_product_picker/static/img/product_picker.gif\n\nKnown issues / Roadmap\n======================\n\n* Translations in the xml 'options' attribute of the field that use the widget can't be exported automatically to be translated\n* The product card animations can be improved. Currently the card is recreated, so we lost some elements to apply correct effects\n* sale.order onchanges that affects to \"order_line\" subfields will be ommitted to increase the performance\n\nBug Tracker\n===========\n\nBugs are tracked on `GitHub Issues <https://github.com/OCA/web/issues>`_.\nIn case of trouble, please check there if your issue has already been reported.\nIf you spotted it first, help us smashing it by providing a detailed and welcomed\n`feedback <https://github.com/OCA/web/issues/new?body=module:%20web_widget_one2many_product_picker%0Aversion:%2013.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.\n\nDo not contact contributors directly about support or help with technical issues.\n\nCredits\n=======\n\nAuthors\n~~~~~~~\n\n* Tecnativa\n\nContributors\n~~~~~~~~~~~~\n\n* `Tecnativa <https://www.tecnativa.com>`_:\n\n    * Alexandre D. D\u00edaz\n    * Pedro M. Baeza\n    * David Vidal\n\n* Giovanni Serra <giovanni@gslab.it>\n\nMaintainers\n~~~~~~~~~~~\n\nThis module is maintained by the OCA.\n\n.. image:: https://odoo-community.org/logo.png\n   :alt: Odoo Community Association\n   :target: https://odoo-community.org\n\nOCA, or the Odoo Community Association, is a nonprofit organization whose\nmission is to support the collaborative development of Odoo features and\npromote its widespread use.\n\nThis module is part of the `OCA/web <https://github.com/OCA/web/tree/13.0/web_widget_one2many_product_picker>`_ project on GitHub.\n\nYou are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.\n\n\n",
    "bugtrack_url": null,
    "license": "AGPL-3",
    "summary": "Widget to select products on one2many fields",
    "version": "13.0.2.0.3",
    "project_urls": {
        "Homepage": "https://github.com/OCA/web"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6a60f3ffcbbe4559728e21d42c52da3facc72a6e073a5e03e5c8ecbf9340d13c",
                "md5": "d33eaed6659ddc3fbd261e50641062e0",
                "sha256": "671982e0b5a4803a25638662896ccf0d210bfde231f8cc7ce9ae393085039e91"
            },
            "downloads": -1,
            "filename": "odoo13_addon_web_widget_one2many_product_picker-13.0.2.0.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "d33eaed6659ddc3fbd261e50641062e0",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.5",
            "size": 5399054,
            "upload_time": "2023-07-04T09:24:55",
            "upload_time_iso_8601": "2023-07-04T09:24:55.581037Z",
            "url": "https://files.pythonhosted.org/packages/6a/60/f3ffcbbe4559728e21d42c52da3facc72a6e073a5e03e5c8ecbf9340d13c/odoo13_addon_web_widget_one2many_product_picker-13.0.2.0.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-07-04 09:24:55",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "OCA",
    "github_project": "web",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "odoo13-addon-web-widget-one2many-product-picker"
}
        
Elapsed time: 0.12899s