Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
4 Odpowiedzi
1057 Widoki

My goal is to change the label/string of the field dynamically using get_view function. but i cant get the active_id of my custom model to

i tried self._context.get('active_ids') or active_id but any of this return a blank value. The goal of this is to browse the record and change the string based on the vendor name


Ex. Vendor Name: Unit Price


Azure Interior: Unit Price

Awatar
Odrzuć
Najlepsza odpowiedź

Hi John Lorenz,

I hope you're doing well.

You can try the compute method without using @api.depends as I’ve mentioned below. This method will be called every time when the records are opened, refreshed, updated, and saved.

// Code is in Comment

Hope this Helps,

If you need any help in customization feel free to contact us.

Thanks & Regards,

Email:  odoo@aktivsoftware.com           

Skype: kalpeshmaheshwari

Awatar
Odrzuć

// Code:

dynamic_label(your field) = fields.Char(string='Dynamic Label', compute='_compute_dynamic_label')

def _compute_dynamic_label(self):
for rec in self:
# Add your custom code here

Najlepsza odpowiedź

Hi John Lorenz,

Try using this fields_view_get function.

Hopes this helps.

Awatar
Odrzuć
Najlepsza odpowiedź

John Lorenz Labitoria Deyparine

Beacuse active_ids,active_id key not available in context.

Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
2
maj 25
4091
1
mar 25
540
4
mar 25
3211
3
lut 25
3864
2
lut 25
617