Topic: Broken img links

How do i make it so that I can see the company logo on the packing slip, and also the barcodes?
When i use the packing slip now, i see code with a broken link. How do I fix this.


on a similar topic, how do I set up barcode scanners? I do have a scanner, but I need to know how i can make it so it can be used. I want to use it so I can scan in the model number into my inventory.

Re: Broken img links

To set the logo to display on the packing slip, you need to set the value for `packing_list_logo` in the admin_setting table. You should be able to set it to the same value as `company_logo`.  We don't currently support a way to include the logo on the bar code labels.

Bar code scanners should be plug and play. Your computer views most bar code scanners just like a keyboard, so when you scan a bar code, the text will be input into the field that is currently focused.

Justin Sinclair

Got Inventory? Get Tracmor.

Re: Broken img links

is there a way there of taking out the bar code on the packing slip? maybe replacing it with a description of the part?

Re: Broken img links

You can simply remove the bar codes by removing this line from /shipping/packing_list.php

$this->dtgItem->AddColumn(new QDataGridColumn('Code', '<?= $_ITEM->RenderBarcode() ?>', 'Width=200', 'CssClass="dtg_column_print"', 'HtmlEntities=false'));

If you have some proficiency with PHP, you could look at how the other columns are rendered to determine how to display something else in that column instead.

Justin Sinclair

Got Inventory? Get Tracmor.