Is there a way to define only serialized items? I...
# advancedpdf
l
Is there a way to define only serialized items? I am wanting to only display the {item.inventorydetail} for serialized items listed, and not on non-serialized items. We use bins, so it prints the bin # of the non-serialized items which is annoying. I have tried <#if item.isserialitem == “T”> and any combination of T and True and it does not work. Any suggestions?
d
I presume that
isserialitem
isn't a field on the transaction lines you're working with. You'll need to have a custom transaction field that sources
isserialitem
from the item record.
l
That field is a default Netsuite Item field, I can use it in a saved search to return a T/F value, which is why I was trying to use it in advanced pdf
d
Pretty much if it doesn't appear in the field selector in the WYSIWYG editor, it's not natively available to your template. I would suggest creating a custom transaction line field that defaults to the item's
isserialnumber
field. Then you'll have access to that custom line field in your template. I think you can disable
store value
and even have the line field hidden, and still reference it on the template