Aaron Mercier
Aaron Mercier
In the same boat. A single render call takes a while due to a large number records and some complex custom renders. See this item that appears to backlogged currently......
You can force cordova-ios to use the previous version of simctl as a temporary workaround. `npm un simctl && npm i [email protected] -E -D` I tried using npm 8's [overrides](https://docs.npmjs.com/cli/v8/configuring-npm/package-json#overrides)...
Judging by the thread on the [bug report on simct](https://github.com/ios-control/simctl/issues/30)l, it seems like it might be an easy fix. Hoping it gets fixed quickly.
Reverting to 8.0.3 fixes it as a workaround.
Just noticed https://github.com/Intacct/intacct-sdk-js/issues/26 Which explains why the smart rule is getting thrown, since the fn seems to be including the "TAXABLE" XML tag even though I am not specifying taxable....
 it's because `writeElement` looks for the value to be explicitly null, to determine if it should use the "writeNull" param. Since I'm not specifying that property, it's undefined (not...
I'm getting around it now with this simple CRUD custom function, which IMO is actually easier to use (albeit more loose) ```javascript class ObjectCRUD extends IA.Functions.AbstractFunction { constructor(objectName, method, object)...