Hi guys ,
If I have field FA in class CA in module MA , and field FB in class CB in module MB,
i want that the value of FA (entry) display in field FB
Any suggestions PPPLLLZZZ !!!!
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Hi guys ,
If I have field FA in class CA in module MA , and field FB in class CB in module MB,
i want that the value of FA (entry) display in field FB
Any suggestions PPPLLLZZZ !!!!
Hi, thak you for your answer , it tried related field before and its didn't worked , and it now that I noticed that i didn't had FB field in xml, it was in comment ( just in python) hhhhhhhh, and now its work .
Thank you again
use Environment for that like this,
module MA->class CA
class ClassA(models.Model):
_name = 'modulea.classa'
fielda = fields.Char('Name', required=True,)
module MB->class CB
class ClassB(models.Model):
_name = 'moduleb.classb'
fieldb = fields.Char('Name', required=True,)
def get_recordes(self):
for record in self.env['modulea.classa']:
print record.fielda
I hope this works.
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 | |
---|---|---|---|---|
|
1
thg 1 17
|
2956 | ||
|
0
thg 9 23
|
41 | ||
|
4
thg 3 23
|
16865 | ||
|
2
thg 7 22
|
3757 | ||
|
0
thg 5 22
|
2053 |