Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

vat missing


rackmount

Recommended Posts

Posted

Can somebody help me out here as this is starting to bother me a lot now. I would like for tax to be displayed on the items in the shop front.

 

1. Yes I have the admin/config "display tax" turned on.

 

2. When viewing a catalog item within admin and tabbing the tax button the amount displayed is correct etc.

 

The only problem is after previewing the item the amount displayed is excuding vat. This goes with all shop front prices.

 

I have the following currency settings etc

 

British Pounds (default) GBP 1.00000000 set to default

 

I have updated the english.php

 

@setlocale(LC_TIME, 'en_GB.ISO_8859-1');

define('DATE_FORMAT_SHORT', '%d %m %Y'); // this is used for strftime()

define('DATE_FORMAT_LONG', '%A, %d %B %Y'); // this is used for strftime()

define('DATE_FORMAT', 'd/m/Y'); // this is used for strftime()

define('DATE_TIME_FORMAT', DATE_FORMAT_SHORT . ' %H:%M:%S');

 

////

// Return date in raw format

// $date should be in format mm/dd/yyyy

// raw date is in format YYYYMMDD, or DDMMYYYY

function tep_date_raw($date, $reverse = false) {

if ($reverse) {

return substr($date, 0, 2) . substr($date, 3, 2) . substr($date, 6, 4);

} else {

return substr($date, 6, 4) . substr($date, 3, 2) . substr($date, 0, 2);

}

}

 

// if USE_DEFAULT_LANGUAGE_CURRENCY is true, use the following currency, instead of the applications default currency (used when changing language)

define('LANGUAGE_CURRENCY', 'GBP');

 

// Global entries for the <html> tag

define('HTML_PARAMS','dir="LTR" lang="en"');

 

// charset for web pages and emails

define('CHARSET', 'iso-8859-1');

 

and modded DOB etc.

 

my locations / taxes info is

 

Countries

UK GB GBR

 

Tax Zones

GBR

 

Tax Classes

VAT

 

Tax Rates

 

Priority Tax Class Zone Tax Rate Action

0 Taxable Goods GBR 17.5%

 

Currencies

British Pounds (default) GBP 1.00000000

 

Can anyone help me out of this pickle, yes I'm stuck and need a little help from the pro's.

 

Regards

 

Rack

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...