With SS4 + silvershop-core + palpal-express: In the CMS/Catalog/Product -> Pricing i can fill in a Price.
e.g.: € 12.90 (12,90) meaning the Base price. (= netto = exclusive Tax 15%)
in shop.yml:
SilverShop\Model\Order:
modifiers:
- 'SilverShop\Model\Modifiers\Shipping\Simple'
- 'SilverShop\Model\Modifiers\Tax\FlatTax'
QUESTIONS:
- Where are Shipping-Costs and FlatTax defined?
- I need to show Prices in brutto (inclusive Tax) on Frontend to the Customer. - How?
- On CheckOut it should be like: (Where and how to calculate this?)
We can set the
FlatTax
to be inclusive by adding the following to ourshop.yml
and flushing the site cache:By checking the src/Model/Modifiers/Tax/FlatTax.php we can see what the config settings are for the
FlatTax
class.We can also change the flat tax rate and the name of the flat tax like so:
By checking the src/Model/Modifiers/Shipping/Simple.php we can see what the config settings are for the
Simple
shipping class. We can also change these default settings: