saml Posted September 26, 2011 Share Posted September 26, 2011 I need to create an EAN-13 barcode. Leading digits are always 487, 7 for percent off and a 8 digit sequence number. I've created a rule to add the 487,7 and sequencing but cannot apply it as rule to create the EAN-13 barcode. Is there a different way of creating the barcode? Link to comment Share on other sites More sharing options...
Dan Korn Posted September 27, 2011 Share Posted September 27, 2011 You need to combine the twelve digits of barcode data together into a single string. Something like this: var barcodeData = "4877" + Field("SequenceNumber"); return '<f name="IDAutomationUPCEANM">' + NormalizeEntities(MakeEAN13Barcode(barcodeData)); Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.