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? Quote 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)); Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.