コンテンツへスキップ
メニュー
この質問にフラグが付けられました
4 返信
17618 ビュー

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?

アバター
破棄
最善の回答

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)
アバター
破棄
著作者

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 ?

著作者 最善の回答

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

アバター
破棄
最善の回答

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}
アバター
破棄
著作者

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.

著作者

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

最善の回答
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.

アバター
破棄
関連投稿 返信 ビュー 活動
2
3月 23
3405
4
11月 19
11090
1
8月 18
5247
0
12月 15
6899
2
3月 15
7768