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
    • 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 Managament
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Producție
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and 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
  • 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

Input max length on xml or dynamic fields.char size in python side

Abonare

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

Această întrebare a fost marcată
odoo12odoo12.0
1 Răspunde
12789 Vizualizări
Imagine profil
Kevin Randriajaoson

Hello,

I would like to set fields.Char size dynamically, registration number of an employee, e.g: 0001 or 0002, which is size of 4 here, so if the manager decided to set the size to 5 then I have to change it in code in that case, but the manager wants it to be in a parameter in the company settings so he could change it whenever he wants to.

I already tried:
case 1: defining size dynamically on python side

my_field = fields.Char(..., size=lambda self: self.get_dynamic_size())
# or
fields.Char(..., size=lambda self: get_dynamic_size(self))

case 2: set maxlength of the field in xml


​
​​​​<field name="my_field" attrs="{'max_length': uid.company_id.get_dynamic_size}"

But none of those actually works

My work around was defining an onchange function to correct the input but this doesn't give the same experience for the user as setting maxlength on the input field

1
Imagine profil
Abandonează
Imagine profil
Sudhir Arya (ERP Harbor Consulting Services)
Cel mai bun răspuns

I liked the way you tried it first before asking the question. I appreciate your efforts and would try to help you.

You don't need to set dynamic size. You just need to create a configuration where your manager can set the size of the number.

Now, you just have to create a constraint which will check the size of the employee number and compare it with the value which is entered by manager in the configuration.

@api.constrains('emp_no')
def _check_emp_no(self):
if self.emp_no:
if len(self.emp_no) > self.user.company_id.get_dynamic_size:
raise ValidationError('Employee Number cannot be more than %s ' %self.user.company_id.get_dynamic_size)


4
Imagine profil
Abandonează
Kevin Randriajaoson
Autor

Thanks for your reply, but isn't there a solution which could limit the user input like maxlength does? where it triggers live when user is typing the emp_no, not when the focus is lost on the input like in onchange or on creating/updating? ... But, if there isn't, then, this approach in my opinion is a lot better, I totally forgot there was @api.constrains lol, thank you buddy

Sudhir Arya (ERP Harbor Consulting Services)

AFAIK, there isn't a way to do it dynamically.

You can use onchange to show the warning message but it won't stop the execution, user will still be able to save the record.

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
Integrate software solutions with odoo using API
odoo12 odoo12.0
Imagine profil
Imagine profil
Imagine profil
2
feb. 23
5003
Open Record in Edit mode Rezolvat
odoo12 odoo12.0
Imagine profil
Imagine profil
Imagine profil
2
mar. 21
9673
Differentiate Odoo Website Orders & Backend Orders
odoo12 odoo12.0
Imagine profil
Imagine profil
7
iul. 19
5536
how can i make multi barcodes for one product and search on these barcodes on POS odoo v12 ??
enterprise odoo12 odoo12.0
Imagine profil
0
feb. 21
3590
Expected singleton: hr.emp.travel.location(62, 63)
odoo12.0
Imagine profil
Imagine profil
Imagine profil
2
oct. 25
1935
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