Skip to Content
Odoo Meniu
  • Autentificare
  • Try it free
  • Aplicații
    Finanțe
    • Contabilitate
    • Facturare
    • Cheltuieli
    • Spreadsheet (BI)
    • Documente
    • Semn
    Vânzări
    • CRM
    • Vânzări
    • POS Shop
    • POS Restaurant
    • Abonamente
    • Închiriere
    Site-uri web
    • Constructor de site-uri
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Lanț Aprovizionare
    • Inventar
    • Producție
    • PLM
    • Achiziție
    • Maintenance
    • Calitate
    Resurse Umane
    • Angajați
    • Recrutare
    • Time Off
    • Evaluări
    • Referințe
    • Flotă
    Marketing
    • Social Marketing
    • Marketing prin email
    • SMS Marketing
    • Evenimente
    • Automatizare marketing
    • Sondaje
    Servicii
    • Proiect
    • Foi de pontaj
    • Servicii de teren
    • Centru de asistență
    • Planificare
    • Programări
    Productivitate
    • Discuss
    • Aprobări
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Aplicații Terțe Odoo Studio Platforma Odoo Cloud
  • Industrii
    Retail
    • Book Store
    • Magazin de îmbrăcăminte
    • Magazin de Mobilă
    • Magazin alimentar
    • Magazin de materiale de construcții
    • Magazin de jucării
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Distribuitor de băuturi
    • Hotel
    Proprietate imobiliara
    • Real Estate Agency
    • Firmă de Arhitectură
    • Construcție
    • Estate Managament
    • Grădinărit
    • Asociația Proprietarilor de Proprietăți
    Consultanta
    • Firma de Contabilitate
    • Partener Odoo
    • Agenție de marketing
    • Law firm
    • Atragere de talente
    • Audit & Certification
    Producție
    • Textil
    • Metal
    • Mobilier
    • Mâncare
    • Brewery
    • Cadouri corporate
    Health & Fitness
    • Club Sportiv
    • Magazin de ochelari
    • Centru de Fitness
    • Wellness Practitioners
    • Farmacie
    • Salon de coafură
    Trades
    • Handyman
    • IT Hardware and Support
    • Asigurare socială de stat
    • Cizmar
    • Servicii de curățenie
    • HVAC Services
    Altele
    • Organizație nonprofit
    • Agenție de Mediu
    • Închiriere panouri publicitare
    • Fotografie
    • Închiriere biciclete
    • Asigurare socială
    Browse all Industries
  • Comunitate
    Învăță
    • Tutorials
    • Documentație
    • Certificări
    • Instruire
    • Blog
    • Podcast
    Empower Education
    • Program Educațional
    • Scale Up! Business Game
    • Visit Odoo
    Obține Software-ul
    • Descărcare
    • Compară Edițiile
    • Lansări
    Colaborați
    • Github
    • Forum
    • Evenimente
    • Translations
    • Devino Partener
    • Services for Partners
    • Înregistrează-ți Firma de Contabilitate
    Obține Servicii
    • Găsește un Partener
    • Găsiți un contabil
    • Meet an advisor
    • Servicii de Implementare
    • Referințe ale clienților
    • Suport
    • Actualizări
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obține un demo
  • Prețuri
  • Ajutor

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

  • CRM
  • e-Commerce
  • Contabilitate
  • Inventar
  • PoS
  • Proiect
  • MRP
All apps
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Suport

one2many search widget

Abonare

Primiți o notificare când există activitate la acestă postare

Această întrebare a fost marcată
odoo15
3 Răspunsuri
2506 Vizualizări
Imagine profil
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
Imagine profil
Abandonează
Imagine profil
Cybrosys Techno Solutions Pvt.Ltd
Cel mai bun răspuns

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
Imagine profil
Abandonează
Imagine profil
Kaushik Pathak
Cel mai bun răspuns

You can use custom Odoo app available on Apps store.

0
Imagine profil
Abandonează
Imagine profil
Dương Nguyễn
Cel mai bun răspuns

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
Imagine profil
Abandonează
Enjoying the discussion? Don't just read, join in!

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

Înscrie-te
Related Posts Răspunsuri Vizualizări Activitate
Error install web_responsive in odoo 15
odoo15
Imagine profil
0
sept. 24
1782
Create a button next to the chat one or activities
odoo15
Imagine profil
Imagine profil
1
iun. 24
2182
I can't import reordering rules other company
odoo15
Imagine profil
Imagine profil
1
mai 24
2335
float_compare validation fails for standard_price in custom module due to decimal precision
Decimal-precision odoo15
Imagine profil
Imagine profil
Imagine profil
Imagine profil
3
sept. 25
956
Inviting Learners to Courses in Odoo 15 eLearning Rezolvat
eLearning odoo15
Imagine profil
Imagine profil
2
sept. 25
798
Comunitate
  • Tutorials
  • Documentație
  • Forum
Open Source
  • Descărcare
  • Github
  • Runbot
  • Translations
Servicii
  • Hosting Odoo.sh
  • Suport
  • Actualizare
  • Custom Developments
  • Educație
  • Găsiți un contabil
  • Găsește un Partener
  • Devino Partener
Despre Noi
  • Compania noastră
  • Active de marcă
  • Contactați-ne
  • Locuri de muncă
  • Evenimente
  • Podcast
  • Blog
  • Clienți
  • Aspecte juridice • Confidențialitate
  • Securitate
الْعَرَبيّة 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 este o suită de aplicații de afaceri open source care acoperă toate nevoile companiei dvs.: CRM, comerț electronic, contabilitate, inventar, punct de vânzare, management de proiect etc.

Propunerea de valoare unică a Odoo este să fie în același timp foarte ușor de utilizat și complet integrat.

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