Does anyone use the netsuite fastrack toolkit? The...
# suitescript
c
Does anyone use the netsuite fastrack toolkit? The data access layer looks very interesting as I find manipulating things like sublists to be extremely verbose sometimes: To add to that — does anyone know a good way to get a JSON representation of a records sublist? https://github.com/ExploreConsulting/netsuite-fasttrack-toolkit-ss2
w
@Shawn Talbert is your man
s
Yeah, I use NFT for all things suitescript. Without it, I probably wouldn't tolerate SuiteScript development at all.
and NFT gives you a nice JSON representation of records with sublists just naturally. Returning a record as JSON from something like a Restlet is a one-liner (e.g.
return new SalesOrder(123)
c
Thanks I will have to give it a try