Se rendre au contenu
Odoo Menu
  • Se connecter
  • Essai gratuit
  • Applications
    Finance
    • Comptabilité
    • Facturation
    • Notes de frais
    • Feuilles de calcul (BI)
    • Documents
    • Signature
    Ventes
    • CRM
    • Ventes
    • PdV Boutique
    • PdV Restaurant
    • Abonnements
    • Location
    Sites web
    • Site Web
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Chaîne d'approvisionnement
    • Inventaire
    • Fabrication
    • PLM
    • Achats
    • Maintenance
    • Qualité
    Ressources Humaines
    • Employés
    • Recrutement
    • Congés
    • Évaluations
    • Recommandations
    • Parc automobile
    Marketing
    • Marketing Social
    • E-mail Marketing
    • SMS Marketing
    • Événements
    • Marketing Automation
    • Sondages
    Services
    • Projet
    • Feuilles de temps
    • Services sur Site
    • Assistance
    • Planification
    • Rendez-vous
    Productivité
    • Discussion
    • Validations
    • Internet des Objets
    • VoIP
    • Connaissances
    • WhatsApp
    Applications tierces Odoo Studio Plateforme Cloud d'Odoo
  • Industries
    Commerce de détail
    • Librairie
    • Magasin de vêtements
    • Magasin de meubles
    • Épicerie
    • Quincaillerie
    • Magasin de jouets
    Restauration & Hôtellerie
    • Bar et Pub
    • Restaurant
    • Fast-food
    • Maison d’hôtes
    • Distributeur de boissons
    • Hôtel
    Immobilier
    • Agence immobilière
    • Cabinet d'architecture
    • Construction
    • Gestion immobilière
    • Jardinage
    • Association de copropriétaires
    Consultance
    • Cabinet d'expertise comptable
    • Partenaire Odoo
    • Agence Marketing
    • Cabinet d'avocats
    • Aquisition de talents
    • Audit & Certification
    Fabrication
    • Textile
    • Métal
    • Meubles
    • Alimentation
    • Brasserie
    • Cadeaux d'entreprise
    Santé & Fitness
    • Club de sports
    • Opticien
    • Salle de fitness
    • Praticiens bien-être
    • Pharmacie
    • Salon de coiffure
    Commerce
    • Bricoleur
    • Matériel informatique & support
    • Systèmes photovoltaïques
    • Cordonnier
    • Services de nettoyage
    • Services CVC
    Autres
    • Organisation à but non lucratif
    • Agence environnementale
    • Location de panneaux d'affichage
    • Photographie
    • Leasing de vélos
    • Revendeur de logiciel
    Parcourir toutes les industries
  • Communauté
    Apprenez
    • Tutoriels
    • Documentation
    • Certifications
    • Formation
    • Blog
    • Podcast
    Renforcer l'éducation
    • Programme éducatif
    • Business Game Scale-Up!
    • Rendez-nous visite
    Obtenir le logiciel
    • Téléchargement
    • Comparez les éditions
    • Versions
    Collaborer
    • Github
    • Forum
    • Événements
    • Traductions
    • Devenez partenaire
    • Services pour partenaires
    • Enregistrer votre cabinet comptable
    Nos Services
    • Trouver un partenaire
    • Trouver un comptable
    • Rencontrer un conseiller
    • Services de mise en œuvre
    • Références clients
    • Assistance
    • Mises à niveau
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obtenir une démonstration
  • Tarification
  • Aide

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

  • CRM
  • e-Commerce
  • Comptabilité
  • Inventaire
  • PoS
  • Projet
  • MRP
All apps
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Aide

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

S'inscrire

Recevez une notification lorsqu'il y a de l'activité sur ce poste

Cette question a été signalée
selectionowlOWLOdooV17
1 Répondre
2460 Vues
Avatar
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
Avatar
Ignorer
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Meilleure réponse

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
Avatar
Ignorer
Vous appréciez la discussion ? Ne vous contentez pas de lire, rejoignez-nous !

Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !

S'inscrire
Publications associées Réponses Vues Activité
Custom code: Can clicking on a Task with Subtasks (in Kanban View) open another Kanban with the Subtasks? Résolu
owl OWL
Avatar
Avatar
Avatar
2
juil. 25
2316
Alter existing owl app
owl OWL
Avatar
Avatar
1
mars 24
2472
Odoo owl
owl OWL
Avatar
0
oct. 22
2644
How to inherit owl template and qweb in custom module V17.0? Résolu
manufacturing owl OWL
Avatar
Avatar
Avatar
3
mai 25
6101
Patching Owl Service Function
javascript owl OWL
Avatar
Avatar
Avatar
3
oct. 23
6727
Communauté
  • Tutoriels
  • Documentation
  • Forum
Open Source
  • Téléchargement
  • Github
  • Runbot
  • Traductions
Services
  • Hébergement Odoo.sh
  • Assistance
  • Migration
  • Développements personnalisés
  • Éducation
  • Trouver un comptable
  • Trouver un partenaire
  • Devenez partenaire
À propos
  • Notre société
  • Actifs de la marque
  • Contactez-nous
  • Emplois
  • Événements
  • Podcast
  • Blog
  • Clients
  • Informations légales • Confidentialité
  • Sécurité.
الْعَرَبيّة 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 est une suite d'applications open source couvrant tous les besoins de votre entreprise : CRM, eCommerce, Comptabilité, Inventaire, Point de Vente, Gestion de Projet, etc.

Le positionnement unique d'Odoo est d'être à la fois très facile à utiliser et totalement intégré.

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