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

In partner form and in contacts form view, while creating a new partner I made two extra fields firstname and lastname. The concatenation of firstname and lastname should be automatically filled in 'name' field . This should be achieved without using the name filed as functional field.

After filling either firstname,lastname or both, name should be filled by clicking Save button.

Whether it is possible to inherit the create/write method?

Imagine profil
Abandonează
Cel mai bun răspuns

Yes you can override create and write Method:-

Example Create Method:-

def create(self, cr, uid, vals, context=None):
        name = str(vals['first_name'] or '') + ' ' +str(vals['last_name'] or '')
        vals['name'] = name
        return super(sample_model, self).create(cr, uid, vals, context=context)
Imagine profil
Abandonează
Autor

Hi Prakash, thanks for your answer.I tried the above code. I entered the first name and lastname and clicked Save button in partner form. It points to the name field because it is mandatory. Rather if I enter a single character in name field then click on Save button, it updates with concatenated string of both firstname n name. Is there any possibility to update without entering a single character ?

Autor Cel mai bun răspuns

Here is the solution. The below code updates the name field as required while creating a new partner.

def create(self, cr, uid, vals, context=None): new_id=super(partner, self).create(cr, uid, vals, context=context) names = (vals['first_name'], vals['last_name']) fullname = " ".join([s for s in names if s]) vals['name'] = fullname return new_id

Imagine profil
Abandonează
Cel mai bun răspuns

Hi Sureka,

You can try with onchange function:

ie,

'first_name': fields.char('First Name', size=32),
'last_name': fields.char('Last Name', size=32),

In xml:

<field name="first_name" on_change="onchange_first_last(first_name, last_name, context)"/>
<field name="last_name" on_change="onchange_first_last(first_name, last_name, context)"/>

onchange function:

def onchange_first_last(self, cr, uid, ids, first_name, last_name, context=None):
        v = {}
        if first_name and last_name:
            v['name'] = first_name+last_name
        return {'value': v}
Imagine profil
Abandonează
Autor

Jasad thanks for your answer. I already included the on_change method in the model. It also works perfect only for the existing partner if I change either firstname or lastname it updates the name.

Autor

My question is while creating a new partner, it should concatenate the first name and lastname and to be filled in name field.

Check for the below answer

Hi, is this code apply to name on hr.employee model? I try the above code but Im getting error: "TypeError: Cannot read property 'value' of null" Thanks

Error occur when I entered value in first_name field then pressing enter or tab key. can anyone figure it out? Thanks

Cel mai bun răspuns
def create(self, cr, uid, vals, context=None):
        res = super(sample_model, self).create(cr, uid, vals, context=context)
        name = str(vals['first_name'] or '') + ' ' +str(vals['last_name'] or '')
        vals['name'] = name
        return res

where sample_model is your class name in which you're trying to make your model 'sample.model' this function should be written inside your class sample_model.

Imagine profil
Abandonează
Related Posts Răspunsuri Vizualizări Activitate
2
mar. 23
3514
4
nov. 19
11205
1
aug. 18
5299
0
dec. 15
6966
2
mar. 15
7830