Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

one2many search widget

Subscriure's

Get notified when there's activity on this post

This question has been flagged
odoo15
3 Respostes
2468 Vistes
Avatar
asma

Hello,

Is there a widget to add a search bar in the form view to search across all the lines and all the pages of a one2many field ?


Thank you in advance.

0
Avatar
Descartar
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Best Answer

You can extend ListRenderer and override _onAddRecord to open a search more view using a condition in context.

The following code adds a new widget to open search more... link and select many records.

odoo.define('module_name.open_list_view', function (require) {


    "use strict";

    var pyUtils = require('web.py_utils');

    var dialogs = require('web.view_dialogs');

    var core = require('web.core');

    var _t = core._t;

    var fieldRegistry = require('web.field_registry');

    var ListRenderer = require('web.ListRenderer');


    var AddManyFieldOne2ManyRenderer = ListRenderer.extend({

        /**

         * It will returns the first visible widget that is editable

         *

         * @private

         * @returns {Class} Widget returns first widget

         */

        _getFirstWidget: function () {

            var record = this.state.data[this.currentRow];

            var recordWidgets = this.allFieldWidgets[record.id];

            var firstWidget = _.chain(recordWidgets).filter(function (widget) {

                var isLast =

                    widget.$el.is(':visible') &&

                    (

                        widget.$('input').length > 0 || widget.tagName === 'input' ||

                        widget.$('textarea').length > 0 || widget.tagName === 'textarea'

                    ) &&

                    !widget.$el.hasClass('o_readonly_modifier');

                return isLast;

            }).first().value();

            return firstWidget;

        },


        add_rows: function (lines, field_name) {

            var self = this;

            if (lines.length > 0) {

                self.trigger_up('add_record', {

                    context: [{ [field_name]: lines[0] }],

                    forceEditable: "bottom",

                    allowWarning: true,

                    onSuccess: function () {

                        self.unselectRow();

                        lines.shift(); // Remove the first element after adding a line

                        self.add_rows(lines, field_name);

                    }

                });


            }

        },

        _onAddRecord: function (ev) {

            // we don't want the browser to navigate to a the # url

            ev.preventDefault();


            // we don't want the click to cause other effects, such as unselecting

            // the row that we are creating, because it counts as a click on a tr

            ev.stopPropagation();



            var self = this;

            // but we do want to unselect current row

            this.unselectRow().then(function () {

                var context = ev.currentTarget.dataset.context;

                if (context && pyUtils.py_eval(context).open_list_view) {

                    // trigger add_record to get field name and model

                    // you do not need to trigger add_record if you pass the field name and model in context

                    self.trigger_up('add_record', {

                        context: [{}],

                        onSuccess: function () {

                            var widget = self._getFirstWidget();

                            var field_name = 'default_' + widget.name;

                            var model = widget.field.relation;

                            self.unselectRow();

                            self._rpc({

                                model: model,

                                method: 'search',

                                args: [[]],

                            }).then(

                                function (result) {

                                    return new dialogs.SelectCreateDialog(self, _.extend({}, self.nodeOptions, {

                                        res_model: model,

                                        context: context,

                                        title: _t("Search: add lines"),

                                        initial_ids: result,

                                        initial_view: 'search',

                                        disable_multiple_selection: false,

                                        no_create: !self.can_create,

                                        on_selected: function (records) {

                                            self.add_rows(records.map(product => product.id), field_name);

                                        }

                                    })).open();

                                });

                        }

                    });

                } else {

                    self.trigger_up('add_record', { context: context && [context] });

                }

            });

        },

    });


    var AddManyFieldOne2Many = fieldRegistry.map.section_and_note_one2many.extend({

        /**

         * We want to use our custom renderer for the list.

         *

         * @override

         */

        _getRenderer: function () {

            if (this.view.arch.tag === 'tree') {

                return AddManyFieldOne2ManyRenderer;

            }

            return this._super.apply(this, arguments);

        },

    });


    fieldRegistry.add('add_many_one2many', AddManyFieldOne2Many);

});

for more references you can refer this link,

https://stackoverflow.com/questions/59478858/odoo-open-full-model-page-from-add-line-in-a-one2many-field


Hope it helps

0
Avatar
Descartar
Avatar
Kaushik Pathak
Best Answer

You can use custom Odoo app available on Apps store.

0
Avatar
Descartar
Avatar
Dương Nguyễn
Best Answer

No sir, if your form has a one2many field and it has so many records, you create a stat button for that one2many and redirect to its tree to perform search like usual

0
Avatar
Descartar
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Registrar-se
Related Posts Respostes Vistes Activitat
Error install web_responsive in odoo 15
odoo15
Avatar
0
de set. 24
1762
Create a button next to the chat one or activities
odoo15
Avatar
Avatar
1
de juny 24
2144
I can't import reordering rules other company
odoo15
Avatar
Avatar
1
de maig 24
2301
float_compare validation fails for standard_price in custom module due to decimal precision
Decimal-precision odoo15
Avatar
Avatar
Avatar
Avatar
3
de set. 25
923
Inviting Learners to Courses in Odoo 15 eLearning Solved
eLearning odoo15
Avatar
Avatar
2
de set. 25
774
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now