aimeos / ai-admin-jqadm

Aimeos e-commerce Vue.js+Bootstrap based admin interface
https://aimeos.org
GNU Lesser General Public License v3.0
177 stars 43 forks source link

Required Indian GST implementation for all products #95

Closed unaveen closed 5 years ago

unaveen commented 5 years ago

We need a feature to calculate Indian GST Tax for all products

aimeos commented 5 years ago

Can you please explain in more detail? How is it calculated and what must be done additionally to the current tax calculation?

aimeos commented 5 years ago

You can now add several tax rates in the admin interface for each price: admin-price-taxrates

To configure them in your config file:

'admin' => [
    'tax' => [
        'gst' => '8.50',
        'pst' => '7.25',
    ]
]

Tax calculation using several tax rates in the frontend is already available since version 2019.07