On an item fulfillment is it possible to get the p...
# suitescript
i
On an item fulfillment is it possible to get the package count via script. I know previously it was only accessible through a saved search. But I would like to avoid having to make a call on aftersubmit and saving it to a field.
k
Copy code
const packageLineCount = itemFulfillment.getLineCount({
    sublistId: 'package'
});
i
@Kevin thanks! That worked