mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
172 lines
6.9 KiB
ReStructuredText
172 lines
6.9 KiB
ReStructuredText
==================================
|
|
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/12.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-12-0/web-12-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/12.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.
|
|
|
|
Usage
|
|
=====
|
|
|
|
You need to define the view fields. The view must be of ``form`` type.
|
|
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>
|
|
|
|
|
|
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': {'name': 'name', 'product': 'product_id', 'product_uom': 'product_uom', 'price': 'price_unit', 'parent_id': 'order_id', '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>
|
|
|
|
** In this example we don't use 'field_map' option because the default match with the sale.order.line field names.
|
|
|
|
|
|
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
|
|
|
|
|
|
Preview:
|
|
~~~~~~~~
|
|
|
|
.. image:: https://raw.githubusercontent.com/OCA/web/12.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 states to apply correct effects.
|
|
|
|
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:%2012.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
|
|
|
|
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/12.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.
|