[TYPO3-shop] Tax problem

Errol Mars errolmars at gmail.com
Wed Nov 1 12:46:56 CET 2006


Franz Holzinger wrote:
> 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
> 
> 
> 

Thank you Franz, I will give it a try. It there any special tag I must 
use in my template to use static_info_tables?

Errol



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