使用操作处理程序从 OBProvider.getInstance().get(class) 获取记录

using action handler to Fetch Record from OBProvider.getInstance().get(class)

要你从 table 中获取所有记录,名称是装运类型

ShipmentType st = OBProvider.getInstance().get(ShipmentType.class);

我应该用什么来知道 运行 for 循环的长度

示例:

for(i=0;i<=st.getID.length();i++;) {
 ToDo my action 
}

PS:使用 Openbravo

有多种方法可以从 Openbravo 的 DAL 中获取记录。

  • OBCriteria
  • OBQuery
  • 使用SQL/HQL查询界面。

检查 OBQuery here.

的文档

检查 OBCriteriaOpenbravo's wiki 页面中的实现。