//********** для печати
public String getCollabUpDrv() throws ClipsException {
DirectoryCollaboratorItem item = getCollaboratorUp();
if (item != null && item.getID() != 0) {
CollaboratorLocal collab = new CollaboratorLocal(item.getID(), getAuditListener());
if (collab.getFunctions().size() > 0) {
DirectoryDvrItem funcItem = collab.getFunctions().get(0).getDvr();
if (funcItem != null) {
return funcItem.getTitle();
}
}
}