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

For example, i would like to combine into one values from form to create a one string (don't ask why i just need it. My knowledge won't let me :)

I know how to do it in other languages but not Python. Maybe framework allow to do it but i don't know how so please can anyone help me with ?


Awatar
Odrzuć
Autor

Perfect example, i hope i can use this solution in my project. It seems like a new API a'm I right ? (i'm a newbie so i want be sure what to do)

Najlepsza odpowiedź

To merge the fields in one you can use compute on field. for example.

class res_partner(models.Model):
_inherit = 'res.partner' # extending partner model

    def merge_string(self):

        if self.name

        return self.title or '' + self.name or '' # will return Partner Title + Partner Name(Mr. Openies)


    merged_string = fields.Char(compute='merge_string') # adding one field which merges string


Note: Compute field will get computed when the record is getting saved.

you can also refer the odoo new api doc: http://odoo-new-api-guide-line.readthedocs.org/en/latest/fields.html#computed-fields

 

Awatar
Odrzuć

with the help of api.depends, you could trigger the computation method before the SAVE event. for e.g. add @api.depends('title','name')

Powiązane posty Odpowiedzi Widoki Czynność
0
maj 20
6373
1
cze 16
11403
1
gru 16
3556
1
wrz 15
4674
11
kwi 15
11346