I tried to do 'create and edit' one2many product-category-field from product-page. The product category have 'parent category' filled. When the data saved, t should display 'parent category' + 'name' (as _rec_name = 'complete_name'), but it only display the 'name'.
I already tried override 'get_name' function, but nothing happened, it still show 'name' field.
Is it bug? what can i do to display 'complete_name' instead on 'name' when new data added?
i need to show product-category '_rec_name' before save the product, as the list of dropdown show its '_rec_name' before.
when i created new product-category using 'create and edit', then change the value to other list, then change it again to the value that I just created, only then its '_rec_name' shown.
I would say it's bug. what can I do to replace its default function to show '_rec_name', lets say I want to create new one2many model, and I never want its name to show as dropdown list, even for new data.