콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
3390 화면
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?

아바타
취소
관련 게시물 답글 화면 활동
2
1월 23
26780
4
6월 21
39701
1
12월 20
2833
1
4월 18
7962
1
3월 16
4727