Postal Barcodes
#1
Posted 22 April 2012 - 08:58 PM
I'd like to include the ZIP/ZIP+4 bar codes in the destination address. Could the longer barcodes appears at the top of business envelope be included in it? I believe, but not sure they are called FIM-A and FIM-C at the left of the postage stamp. This would be a nice feature. I'm using OOo 3.2.0 on WinXP. What should I do to make this working? Thanks.
#4
Posted 23 April 2012 - 11:05 PM
#6
Posted 07 December 2012 - 10:16 PM
var zipcode = row["zip_cd"].replace("-","");
var len = zipcode.length;
var total = 0;
var chk = 0;
for ( var i = 0; i < len; i++ ) {
var val = parseInt(zipcode[i]);
total = total + val;
}
if (total > 0) {
chk = 10 - (total%10);
if (chk == 10) {
chk = 0;
}
}
zipcode = "/" + zipcode + chk.toString() + ":";
zipcode;
Then just include your computed column on your report. Worked great for me.
#7
Posted 10 December 2012 - 11:47 PM
Bob_26, on 22 April 2012 - 08:58 PM, said:
I'd like to include the ZIP/ZIP+4 bar codes in the destination address. Could the longer barcodes appears at the top of business envelope be included in it? I believe, but not sure they are called FIM-A and FIM-C at the left of the postage stamp. This would be a nice feature. I'm using OOo 3.2.0 on WinXP. What should I do to make this working? Thanks.
What postal barcode type do you need?
This BIRT barcode generator plugin supports major postal barcode types, including USPS OneCode, PLANET, POSTNET, Identcode, Leitcode, RM4SCC.
Checksum is automatically calculated and added.
Have a try by just drag it to your report to print barcodes.
#8
Posted 26 December 2012 - 06:02 PM
Bob_26, on 22 April 2012 - 08:58 PM, said:
I'd like to include the ZIP/ZIP+4 bar codes in the destination address. Could the longer barcodes appears at the top of business envelope be included in it? I believe, but not sure they are called FIM-A and FIM-C at the left of the postage stamp. This would be a nice feature. I'm using OOo 3.2.0 on WinXP. What should I do to make this working? Thanks.
Yes, it is supported to print postal bar codeds on envelopes. Postal barcodes contain several types, including POSTNET, PLANET, USPS OneCode, Royal Mail, Identcode and Leitcode. Actually, you can use a BIRT Barcode Generator Add-inwhich supports to create all types of the Postal barcodes. It is convenient. You do not have to know much about any programming knowledge.





MultiQuote
