当我尝试使用 Webservice 从 Netsuite 检索帐户详细信息时,期初余额始终返回 null。
我正在使用以下代码来检索帐户详细信息:
AccountSearch accountSearch = new AccountSearch();
AccountSearchBasic accBasic = new AccountSearchBasic();
accountSearch.setBasic(accBasic);
port.search(accountSearch);
我还尝试使用 port.get(recordRef)、port.getList(recordRef[]) 和 port.getAll(getAllrecord) 但得到了相同的结果。还有其他方法可以使用 webservice 检索 Netsuite 的帐户详细信息吗?
提前致谢