How to copy field value in odoo . .
Let say i have two field called name and name1
i want to show name field and hide name1 field.
if i update name field it also need to upade name1 field. . .
Any idea other than on_change
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
How to copy field value in odoo . .
Let say i have two field called name and name1
i want to show name field and hide name1 field.
if i update name field it also need to upade name1 field. . .
Any idea other than on_change
Hello,
You can set value on create and write method when you save the record.
@api.model
def create(self, vals):
if vals.get('name'):
vals['name1'] = vals.get('name')
your_obj = super(your_obj, self).create(vals)
return your_obj
@api.model
def write(self, vals):
if vals.get('name'):
vals['name1'] = vals.get('name')
your_obj = super(your_obj, self).write(vals)
return True
Hello,
I will definetively go for a functional field (stored in base if needed).
Assuming name is a char (but it will work for any type of field)
from openerp import api
@api.depends('name')
def _mimic_name(self):
for rec in self:
rec.name1 = rec.name
name = fields.Char('Name')
name1 = fields.Char('Name1', compute='_mimic_name', store=True)
As I said, store=True is optional, it depends of wheter you want the field to be persistant in database or calculated on the fly.
Hope it helps!
Tạo tài khoản ngay hôm nay để tận hưởng các tính năng độc đáo và tham gia cộng đồng tuyệt vời của chúng tôi!
Đăng ký| Bài viết liên quan | Trả lời | Lượt xem | Hoạt động | |
|---|---|---|---|---|
|
|
4
thg 1 24
|
24468 | ||
|
Attrs attribute
Đã xử lý
|
2
thg 1 24
|
3329 | ||
|
0
thg 8 23
|
3113 | |||
|
5
thg 9 21
|
18649 | |||
|
3
thg 1 21
|
19949 |
1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.