Skip ke Konten
Menu
Pertanyaan ini telah diberikan tanda
1 Balas
2543 Tampilan

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.

Avatar
Buang
Jawaban Terbai

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'
Avatar
Buang
Post Terkait Replies Tampilan Aktivitas
2
Okt 22
5730
2
Okt 25
2650
1
Sep 25
2663
3
Jul 25
4085
1
Mei 25
2178