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

hi all,

nice to see you.

now, my problem ,if someone have any idea and can help me.

I try to add a field ,type of field : fields.funtion ( who concatenate two other field.char )

thanks

アバター
破棄
最善の回答

This is the code

_function_example(self, cr, uid, ids, name, arg, context=None):
    res = {}
    records = self.browse(cr, uid, ids)
    for record in records:
        res[record.id] = '%s%s' % (record.field_char_1, record.field_char_2)
    return res

_columns = {
    'your_function_field' : fields.function(_function_example, type='char', size=64, method=True, store=False),
}
アバター
破棄
著作者

thanks a lot

著作者

i have this error

I've update the code. Try now with the new code.

著作者

thanks just i should add type="char"

著作者 最善の回答

i have this error :(

Uncaught Error: [_.sprintf] expecting number but found string

Just add : type="char"

アバター
破棄
最善の回答
'your_function_field' : fields.function(_function_example, type='char', size=64, method=True, store=False),

Replace by:

'your_function_field' : fields.function(_function_example, string='your_string, type='char', size=64, method=True, store=False),
アバター
破棄
関連投稿 返信 ビュー 活動
2
11月 20
6206
1
6月 15
5089
1
5月 21
10660
1
7月 16
7431
1
7月 15
8586