public class AttendanceReport extends OModel { public static final String TAG = AttendanceReport.class.getSimpleName(); public static final String AUTHORITY = "com.odoo.addons.hremployee.att_report"; OColumn employee_present_ids = new OColumn("Employees present", HrEmployee.class, OColumn.RelationType.ManyToMany); OColumn lat = new OColumn("Latitude", OFloat.class); OColumn lng = new OColumn("Longitude", OFloat.class); OColumn employee_id = new OColumn("Name", HrEmployee.class, OColumn.RelationType.ManyToOne); OColumn date_reported = new OColumn("Date Reported", ODate.class); OColumn date_reporting = new OColumn("Date Reporting", ODate.class); OColumn employee_absent_ids = new OColumn("Employees absent", HrEmployee.class, OColumn.RelationType.ManyToMany); public AttendanceReport(Context context, OUser user) { super(context, "attendance.report", user); } }
I have created a model named 'attendance.report'. Inside it, I have created two many2many (employee_present_ids & employee_absent_ids).
Both Many2many belong to HrEmployee.class.
Now when i execute this code(app), only one table named 'attendance_report_hr_empoyee_rel' is created in local database.
In python we can give many2many table name while field declaration.
Please guide me, How to create two manymany fields of same class in one Omodel?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Contabilidad
- Inventario
- PoS
- Project
- MRP
Se marcó esta pregunta
3402
Vistas
¿Le interesa esta conversación? ¡Participe en ella!
Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.
InscribirsePublicaciones relacionadas | Respuestas | Vistas | Actividad | |
---|---|---|---|---|
Syntax of domains - operators
Resuelto
|
|
2
ene 23
|
26793 | |
|
4
jun 21
|
39706 | ||
|
1
dic 20
|
2836 | ||
|
1
abr 18
|
7964 | ||
|
1
mar 16
|
4728 |