Page 1 of 1

How to fix "Print Shipping List", says "Dispatch Note"

Posted: Thu Nov 02, 2017 10:25 pm
by marc_nh
Using OC version 3.0.2.
How do I fix the "Print Shipping List" function, the report prints "Dispatch Note" and I want it to say "Shipping List" ?
I tried going into System - Localisation (spelled wrong btw) - Languages: and changing the language code from en-gb to english but that totally broke the entire Site - had to restore the setting file to get it fixed.
Thanks
Marc

Re: How to fix "Print Shipping List", says "Dispatch Note"

Posted: Thu Nov 02, 2017 11:22 pm
by straightlight
In admin/language/en-gb/sale/order.php file,

find:

Code: Select all

$_['text_picklist']              = 'Dispatch Note';
replace with:

Code: Select all

$_['text_picklist']              = 'Shipping List';

Re: How to fix "Print Shipping List", says "Dispatch Note"

Posted: Fri Nov 03, 2017 7:00 pm
by marc_nh
Thanks, I was able to edit the file manually to do what I needed.