Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help

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

  • CRM
  • e-Commerce
  • Accounting
  • Inventory
  • PoS
  • Project
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

one2many search widget

Subscribe

Get notified when there's activity on this post

This question has been flagged
odoo15
3 Replies
2496 Views
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
Discard
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
Discard
Avatar
Kaushik Pathak
Best Answer

You can use custom Odoo app available on Apps store.

0
Avatar
Discard
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
Discard
Enjoying the discussion? Don't just read, join in!

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

Sign up
Related Posts Replies Views Activity
Error install web_responsive in odoo 15
odoo15
Avatar
0
Sep 24
1779
Create a button next to the chat one or activities
odoo15
Avatar
Avatar
1
Jun 24
2174
I can't import reordering rules other company
odoo15
Avatar
Avatar
1
May 24
2326
float_compare validation fails for standard_price in custom module due to decimal precision
Decimal-precision odoo15
Avatar
Avatar
Avatar
Avatar
3
Sep 25
952
Inviting Learners to Courses in Odoo 15 eLearning Solved
eLearning odoo15
Avatar
Avatar
2
Sep 25
797
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة 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 is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

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