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

Show only a subset of options for selection field in odoo v17 with OWL

Abonare

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

Această întrebare a fost marcată
selectionowlOWLOdooV17
1 Răspunde
2463 Vizualizări
Imagine profil
Ernesto Ruiz

I am working with Odoo v17. I had extended the account.move model to include the 'serie' field

class AccountMove(models.Model):
    _inherit = "account.move"

    serie = fields.Selection([
        ('a', 'A'),
        ('e', 'E'),
        ('f', 'F'),
        ('g', 'G'),  
        ('i', 'I'),      
        ('cp', 'CP'),
        ], string='Serie', required=True, default='a')

The code was on production and several invoices where created. Now it is necesary to delete some options of the field. Options, 'e', 'f', 'g' are not going to be available anymore. But just remove those options from the field would cause that an Error would raise when accessing a previously created invoice with a serie 'e', 'f', or 'g'. So I desiided to keep the fields definition as it is, but modify the widget to show only options 'a', 'i', 'cp'. with the following code i was able to achieve that only the options 'a', 'i', 'cp' where shown for the series field. But when i try to open an invoice previously created with series= 'e', 'f', 'g', it shows an error. This is the code:

/** @odoo-module **/

import {registry} from "@web/core/registry";

import {
  SelectionField,
  selectionField,
} from "@web/views/fields/selection/selection_field";

export class FilteredSerieSelection extends SelectionField {
  get availableOptions() {
    return ['a','i','cp'];
  }

  /** Override **/
  get options() {
    const availableOptions = this.availableOptions;
    return super.options.filter((x) => availableOptions.includes(x[0]));
  }
}

registry.category("fields").add("custom_serie_select", {
  ...selectionField,
  component: FilteredSerieSelection,
});

In the view:

<?xml version="1.0" encoding="utf-8" ?>
<odoo>
    <record id="account_move_viixoo_form_inherited" model="ir.ui.view">
        <field name="name">account.move.viixoo.form.inherit</field>
        <field name="model">account.move</field>
        <field name="inherit_id" ref="account.view_move_form" />
        <field name="arch" type="xml">
            <field name="l10n_mx_edi_usage" position="after">
                <field name="serie"  widget="custom_serie_select" required="move_type == 'out_invoice'" invisible="move_type != 'out_invoice'" readonly="id != False and name != '/'"/>
            </field>
        </field>
    </record>
</odoo>

This is the error shown:

OwlError: An error occured in the owl lifecycle (see this Error's "cause" property)
    OwlError@http://127.0.0.1:8069/web/assets/a3292ec/web.assets_web.min.js:684:1
    handleError@http://127.0.0.1:8069/web/assets/a3292ec/web.assets_web.min.js:916:101
    handleError@http://127.0.0.1:8069/web/assets/a3292ec/web.assets_web.min.js:1542:29
    _render@http://127.0.0.1:8069/web/assets/a3292ec/web.assets_web.min.js:941:19
    render@http://127.0.0.1:8069/web/assets/a3292ec/web.assets_web.min.js:939:6
    initiateRender@http://127.0.0.1:8069/web/assets/a3292ec/web.assets_web.min.js:1007:47

Caused by: TypeError: this.options.find(...) is undefined
    get string@http://127.0.0.1:8069/web/assets/a3292ec/web.assets_web.min.js:8386:224
    template@http://127.0.0.1:8069/web/assets/a3292ec/web.assets_web.min.js line 1500 > Function:15:18
    _render@http://127.0.0.1:8069/web/assets/a3292ec/web.assets_web.min.js:940:96
    render@http://127.0.0.1:8069/web/assets/a3292ec/web.assets_web.min.js:939:6
    initiateRender@http://127.0.0.1:8069/web/assets/a3292ec/web.assets_web.min.js:1007:47

When creating a new invoice, the desired options are shown correctly without error.
I need to be able to shown only those options, but for the previously created invoices it should show the series 'e', 'f', 'g' without error.

0
Imagine profil
Abandonează
Imagine profil
Cybrosys Techno Solutions Pvt.Ltd
Cel mai bun răspuns

Hi,

Please update the code like below:


import { SelectionField, selectionField } from "@web/views/fields/selection/selection_field";

import { patch } from "@web/core/utils/patch";


patch(SelectionField.prototype, {

      async setup() {

        super.setup();

       },

       get options() {

           switch (this.type) {

           case "many2one":

            return [...this.specialData.data];

            case "selection":

               if(this.props.name=="serie" && this.props.record.resModel=="account.move"){

                   return this.props.record.fields[this.props.name].selection.filter(

                   (option) => option[0] !== false && option[1] !== ""&& option[1] in ['a', 'i', 'cp']

                 );

               }

              return this.props.record.fields[this.props.name].selection.filter(

                   (option) => option[0] !== false && option[1] !== ""

              );

              default:

               return [];

         }

         }

});


Hope it helps

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
Custom code: Can clicking on a Task with Subtasks (in Kanban View) open another Kanban with the Subtasks? Rezolvat
owl OWL
Imagine profil
Imagine profil
Imagine profil
2
iul. 25
2317
Alter existing owl app
owl OWL
Imagine profil
Imagine profil
1
mar. 24
2473
Odoo owl
owl OWL
Imagine profil
0
oct. 22
2645
How to inherit owl template and qweb in custom module V17.0? Rezolvat
manufacturing owl OWL
Imagine profil
Imagine profil
Imagine profil
3
mai 25
6101
Patching Owl Service Function
javascript owl OWL
Imagine profil
Imagine profil
Imagine profil
3
oct. 23
6729
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