我需要显示人名实际上我显示人的 id
public void onViewBind(View view, Cursor cursor, ODataRow row) {
OControls.setText(view, R.id.name, row.getString("person_id"));
}
类(制裁)和(ResPartner)之间存在关系manyToOne
在这个类(制裁)我把这个代码
public class Sanction extends OModel {
public static final String TAG = Sanction.class.getSimpleName();
public static final String AUTHORITY = "com.odoo.Etudiant";
OColumn person_id = new OColumn("name", ResPartner.class,
OColumn.RelationType.ManyToOne);
他向我显示了人的身份,但我需要显示他的名字我该怎么办?