Přejít na obsah
Odoo Menu
  • Přihlásit se
  • Vyzkoušejte zdarma
  • Aplikace
    Finance
    • Účetnictví
    • Fakturace
    • Výdaje
    • Spreadsheet (BI)
    • Dokumenty
    • Podpisy
    Prodej
    • CRM
    • Prodej
    • POS Obchod
    • POS Restaurace
    • Předplatné
    • Pronájem
    Webové stránky
    • Webové stránky
    • E-shop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Dodavatelský řetězec
    • Sklad
    • Výroba
    • PLM
    • Nákup
    • Údržba
    • Kvalita
    Lidské zdroje
    • Zaměstnanci
    • Nábor
    • Volno
    • Hodnocení zaměstnanců
    • Doporučení
    • Vozový park
    Marketing
    • Marketing sociálních sítí
    • Emailový marketing
    • SMS Marketing
    • Události
    • Marketingová automatizace
    • Dotazníky
    Služby
    • Projekt
    • Časové výkazy
    • Práce v terénu
    • Helpdesk
    • Plánování
    • Schůzky
    Produktivita
    • Diskuze
    • Schvalování
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Aplikace třetích stran Odoo Studio Odoo cloudová platforma
  • Branže
    Maloobchod
    • Knihkupectví
    • Obchod s oblečením
    • Obchod s nábytkem
    • Potraviny
    • Obchod s hardwarem
    • Hračkářství
    Jídlo a pohostinství
    • Bar a Pub
    • Restaurace
    • Fast Food
    • Penzion
    • Distributor nápojů
    • Hotel
    Nemovitost
    • Realitní kancelář
    • Architektonická firma
    • Stavba
    • Správa nemovitostí
    • Zahradnictví
    • Asociace vlastníků nemovitosti
    Poradenství
    • Účetní firma
    • Odoo Partner
    • Marketingová agentura
    • Právník
    • Akvizice talentů
    • Audit a certifikace
    Výroba
    • Textil
    • Kov
    • Nábytek
    • Jídlo
    • Pivovar
    • Korporátní dárky
    Zdraví a fitness
    • Sportovní klub
    • Prodejna brýli
    • Fitness Centrum
    • Wellness praktikové
    • Lékárna
    • Kadeřnictví
    Transakce
    • Údržbář
    • Podpora IT & hardware
    • Systémy solární energie
    • Výrobce obuvi
    • Úklidové služby
    • Služby HVAC
    Ostatní
    • Nezisková organizace
    • Agentura pro životní prostředí
    • Pronájem billboardů
    • Fotografování
    • Leasing jízdních kol
    • Prodejce softwaru
    Procházet všechna odvětví
  • Komunita
    Edukační program
    • Tutoriály
    • Dokumentace
    • Certifikace
    • Vzdělávání
    • Blog
    • Podcast
    Podpora vzdělávání
    • Vzdělávací program
    • Scale Up! Hra na firmu
    • Navštivte Odoo
    Získat software
    • Stáhnout
    • Porovnejte edice
    • Verze
    Spolupráce
    • Github
    • Fórum
    • Události
    • Překlady
    • Stát se partnerem
    • Služby pro partnery
    • Registrujte svou účetní firmu
    Získat služby
    • Najít partnera
    • Najít účetní
    • Setkejte se s poradcem
    • Implementační služby
    • Zákaznické reference
    • Podpora
    • Upgrady
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dohodnout demo
  • Ceník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účetnictví
  • Sklad
  • PoS
  • Projekty
  • MRP
All apps
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
Pomoc

one2many search widget

Odebírat

Get notified when there's activity on this post

This question has been flagged
odoo15
3 Odpovědi
2459 Zobrazení
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
Zrušit
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Nejlepší odpověď

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
Zrušit
Avatar
Kaushik Pathak
Nejlepší odpověď

You can use custom Odoo app available on Apps store.

0
Avatar
Zrušit
Avatar
Dương Nguyễn
Nejlepší odpověď

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
Zrušit
Enjoying the discussion? Don't just read, join in!

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

Přihlásit se
Related Posts Odpovědi Zobrazení Aktivita
Error install web_responsive in odoo 15
odoo15
Avatar
0
zář 24
1762
Create a button next to the chat one or activities
odoo15
Avatar
Avatar
1
čvn 24
2136
I can't import reordering rules other company
odoo15
Avatar
Avatar
1
kvě 24
2299
float_compare validation fails for standard_price in custom module due to decimal precision
Decimal-precision odoo15
Avatar
Avatar
Avatar
Avatar
3
zář 25
917
Inviting Learners to Courses in Odoo 15 eLearning Vyřešeno
eLearning odoo15
Avatar
Avatar
2
zář 25
764
Komunita
  • Tutoriály
  • Dokumentace
  • Fórum
Open Source
  • Stáhnout
  • Github
  • Runbot
  • Překlady
Služby
  • Odoo.sh hostování
  • Podpora
  • Upgrade
  • Nestandardní vývoj
  • Edukační program
  • Najít účetní
  • Najít partnera
  • Stát se partnerem
O nás
  • Naše společnost
  • Podklady značky
  • Kontakujte nás
  • Práce
  • Události
  • Podcast
  • Blog
  • Zákazníci
  • Právní dokumenty • Soukromí
  • Zabezpečení
الْعَرَبيّة 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 je balíček open-source aplikací, které pokrývají všechny potřeby vaší společnosti: CRM, e-shop, účetnictví, sklady, kasy, projektové řízení a další.

Unikátní nabídka od Odoo poskytuje velmi jednoduché uživatelské rozhraní a vše je integrované na jednom místě.

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