/**
* Get copy count information
*
- * @param : org_unit_id, record_id, "" ?
+ * @param : org_unit_id, record_id
* @returns: objects
* [{"transcendant":null,"count":35,"org_unit":1,"depth":0,
* "unshadow":35,"available":35},
Log.d(TAG, "selectOrganisation id=" + org.id);
this.selectedOrganization = org;
-
}
public ArrayList<CopyCountInformation> getCopyCount(Integer recordID,
Integer orgID) {
List<?> list = (List<?>) Utils.doRequestSimple(conn(), SERVICE,
- METHOD_GET_COPY_COUNT, new Object[] { orgID, recordID, "" });
+ METHOD_GET_COPY_COUNT, new Object[] { orgID, recordID });
ArrayList<CopyCountInformation> copyInfoList = new ArrayList<CopyCountInformation>();
return copyInfoList;
for (int i = 0; i < list.size(); i++) {
-
- CopyCountInformation copyInfo = new CopyCountInformation(
- list.get(i));
+ CopyCountInformation copyInfo = new CopyCountInformation(list.get(i));
copyInfoList.add(copyInfo);
}
return copyInfoList;
}
-
}