Fixed lookup of form extension.

This commit is contained in:
Heng Sin Low 2010-11-04 03:51:55 +08:00
parent c035fd5ec2
commit c75089559b
1 changed files with 3 additions and 3 deletions

View File

@ -12,7 +12,7 @@ public class Extensions {
} }
ServiceQuery query = new ServiceQuery(); ServiceQuery query = new ServiceQuery();
query.put("id", id); query.put(ServiceQuery.EXTENSION_ID, id);
return Service.locate(Object.class, "org.adempiere.webui.Form", query); return Service.locate(Object.class, "org.adempiere.webui.Form", query);
} }
} }