-- HikaShop version -- : 3.0.1
-- Joomla version -- : 3.7.0
-- PHP version -- : 5.4.45 (will be upgraded to php7)
-- Browser(s) name and version -- : all
-- Error-message(debug-mod must be tuned on) -- : no error
Imagine the following user groups...
1. neighbours
2. shop owners
3. non of the above
... and 2 sorts of products
1. food €80
2. non-food €50
Discount: Every user group has a discount percentage, which is at PRODUCT level (€10, €20, etc)
Shipping costs: food customers €100, non-food customers €30, both at ORDER level.
This works. Now I want to implement additional ORDER costs for shop owners (€120).
So customers recieve different invoices:
customer name____ | user group____ | product__________ | discount____ | shipping____ | additional costs____ | total amount |
customer A | neighbour | non-food €50 | €10 | €30 | €0 | €70 |
customer B | neighbour | food €80 | €10 | €100 | €0 | €170 |
customer C | shop owner | non-food €50 | €20 | €30 | €120 | €180 |
customer D | shop owner | food €80 | €20 | €100 | €120 | €280 |
The shipping costs and the additional costs must be on 2 different lines in the invoice (and in the checkout).
How can I accomplish this?
Thanks!
Roland