i hve one many to one field 'hr.employee', in that i want to list some particular employee data. is this possible in odoo v8?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- إدارة علاقات العملاء
- e-Commerce
- المحاسبة
- المخزون
- PoS
- المشروع
- MRP
لقد تم الإبلاغ عن هذا السؤال
Hi Ramanan,
It is possible in v8. You can use domain attribute in that many2one field, for giving the criteria
For example:
class Session(models.Model):
_name = 'model.name'
employee_id = fields.Many2one('hr.employee', string="Employee", domain=[('field_name','=',value)])
works.
you can use domain for that:
<field name="your_many2one_field" domain="[('employee_id','=',employee_id)/>
thnks it's works.
class Session(models.Model):
_name = 'model.name'
employee_id = fields.Many2one('hr.employee', string="Employee",
domain=[('field_name','=',True)])
هل أعجبك النقاش؟ لا تكن مستمعاً فقط. شاركنا!
أنشئ حساباً اليوم لتستمتع بالخصائص الحصرية، وتفاعل مع مجتمعنا الرائع!
تسجيل| المنشورات ذات الصلة | الردود | أدوات العرض | النشاط | |
|---|---|---|---|---|
|
|
1
أبريل 20
|
5824 | ||
|
|
2
نوفمبر 18
|
15653 | ||
|
|
1
يونيو 18
|
4715 | ||
|
|
1
نوفمبر 17
|
8107 | ||
|
|
1
أغسطس 17
|
4980 |
You mean you want list only employees satisfying a criteria?
yes based on condition i want to list particular employee in many2one field.