[TYPO3-shop] Tax problem

Franz Holzinger franz at fholzinger.com
Wed Nov 1 08:45:25 CET 2006


Hello Mars,

> I need to have taxes added or not added based on 3 conditions;
> 1. If you are located in my country you pay federal tax
> 2. If you are located in my state you pay state and federal tax
> 3. If you are outside my country no tax
> 
> I want to add taxes only at checkout and displayed like this
> Sub Total
> Tax1
> Tax2
> Total

You can use the payment settings together with static_info_tables.

plugin.tt_products.shipping {
  10.title = Paket Deutschland
  10.where.static_countries = cn_short_local == 'Deutschland'
  10.price = 5.9
  10.replaceTAXpercentage = 14
  20.title = Paket EU
  20.where.static_countries = cn_eu_member = 1 AND cn_uno_member = 1 AND 
cn_short_local != 'Deutschland'
  20.price = 8.9
  10.replaceTAXpercentage = 0
  30.title = außerhalb EU
  30.where.static_countries = cn_eu_member <> 1
  30.price = 15
  10.replaceTAXpercentage = 0
}

You can change the tax used for products by this method.
However only I total tax is possible yet.

Greets,

Franz






More information about the TYPO3-project-tt-products mailing list