Try the Demo

Magento Forum

   
Barcode on invoice? Anyone interested? 
 
hyteckit
Sr. Member
 
Avatar
Total Posts:  166
Joined:  2008-04-01
Los Angeles, CA
 

Does magento have the built-in functionality to print a barcode on the invoice?

Any extensions available?

If not, I guess I’ll have to code one myself.

Anyone interested?

 Signature 

Current Project:
GeekGears.com - Accessories for your iPod, iPhone, MP3 Players, Cell Phone, PDA, GPS Devices, Digital Camera, and more.
inkWOW.com - printer ink cartridges and laser toners
Extension: Product Gallery Importer, Enhanced Search

 
Magento Community Magento Community
Magento Community
Magento Community
 
Priest
Jr. Member
 
Total Posts:  20
Joined:  2008-04-21
 

I’m interested in this.  I’ve been looking at this thread:

http://www.magentocommerce.com/boards/viewthread/15807/

But I’m unable to get it to work unless I use the first method (hacking slightly into the core files).  If you have any better ideas please contribute!

Thanks,
Priest

 
Magento Community Magento Community
Magento Community
Magento Community
 
evdat
Member
 
Avatar
Total Posts:  35
Joined:  2008-02-28
Carthage, MO
 

I have already accomplished this for a client a couple months ago. I used a TTF font and some code to convert the text to a CODE 128 barcode. I’ll see if I can post something tonight with the changes you need to make. I modularized my solution so that it doesn’t modify any core files.

 
Magento Community Magento Community
Magento Community
Magento Community
 
evdat
Member
 
Avatar
Total Posts:  35
Joined:  2008-02-28
Carthage, MO
 

Here are the files.

I have added it to my Shipping Integration group:
http://www.magentocommerce.com/group/view/207

Here is the wiki article I created for the barcodes being added:
http://www.magentocommerce.com/wiki/groups/207/invoice-shipment_barcodes

File Attachments
Barcoding Invoice-Shipment-Creditmemo.zip  (File Size: 66KB - Downloads: 1017)
 
Magento Community Magento Community
Magento Community
Magento Community
 
evdat
Member
 
Avatar
Total Posts:  35
Joined:  2008-02-28
Carthage, MO
 

Here is an updated version that works better with v1.2.x

File Attachments
BarcodePackingSlip.zip  (File Size: 28KB - Downloads: 660)
 
Magento Community Magento Community
Magento Community
Magento Community
 
smartosc
Member
 
Avatar
Total Posts:  70
Joined:  2011-02-23
Ha Noi, Viet Nam
 

Hi,

Just let you know that we have developed an intuitive barcode system which can automatically insert the barcode in the Invoice and the Return form.
See more details at:  http://saas.smartosc.com/resources/2011/02/x-barcode-inventory-management-for-your-magento-store-has-never-been-easier/

Many online businesses are using our solution. Contact me if you feel interested.

 Signature 

SmartOSC - Premium E-commerce Development and Services

High Speed Magento SaaS Plans

Visit us today to increase your online revenue saas.smartosc.com

 
Magento Community Magento Community
Magento Community
Magento Community
 
hankzh
Member
 
Total Posts:  55
Joined:  2011-02-08
 

I like this simple solution for barcode.
Although there is one bug in Abstract.php file: when check_digit_value is 0, it should return 128, not 32.

.....
        
$check_digit_value $checksum 103;
        
$check_digit_ascii '';
 
        if (
$check_digit_value == 0){
            $check_digit_ascii 
128;
        
}elseif ($check_digit_value <= 94{
            $check_digit_ascii 
$check_digit_value 32;
        
elseif ($check_digit_value 94{
            $check_digit_ascii 
$check_digit_value 50;
        
}
.....

mjohnsonperl - 12 March 2009 09:40 PM

Here is an updated version that works better with v1.2.x

 
Magento Community Magento Community
Magento Community
Magento Community
 
ddoddsr
Jr. Member
 
Total Posts:  23
Joined:  2012-02-08
 
evdat - 28 August 2008 10:22 AM

Here are the files.

I have added it to my Shipping Integration group:
http://www.magentocommerce.com/group/view/207

Here is the wiki article I created for the barcodes being added:
http://www.magentocommerce.com/wiki/groups/207/invoice-shipment_barcodes

Is the Shipping Integration group still alive? Does it have a new location? Above link did not work.

Nice Extension BTW.  thanks

 
Magento Community Magento Community
Magento Community
Magento Community
Magento Community
Magento Community
    Back to top