* имя плана счетов
* @return OCChartsOfAccountManager
* @throws JIException
*/
public OCChartOfAccountsManager getChartOfAccountsManager(String name) throws JIException {
OCChartsOfAccountCollection collection = new OCChartsOfAccountCollection(get("ChartsOfAccounts"));
try {
return collection.getChartsOfAccount(name);
} catch (JIException e) {
getErrorListener().onError(this, e);
throw e;
}
}