Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
1 Răspunde
2230 Vizualizări

I can not able to sort country_states in alphabectically A-Z sorting, I have tried lambda python sorting, but I cannot overwrite its default sorting which is by state code.

I can able to sort countries name by python lambda sorting . Here is the code of country_states selection. Please kindly help.

Imagine profil
Abandonează
Cel mai bun răspuns

Inherit res.country.state model and change change the order attribute like this

class CountryState(models.Model):    
    _inherit = 'res.country.state'
    _order = 'name asc, code asc'
Imagine profil
Abandonează
Related Posts Răspunsuri Vizualizări Activitate
2
oct. 22
5202
1
iun. 25
1932
3
iul. 25
3519
1
mai 25
1641
1
mai 25
1889