-
-
Notifications
You must be signed in to change notification settings - Fork 724
Sales Tax
We're modelling Australian GST and UK VAT. Item prices, some fees and shipping fees are inclusive of tax. We want to charge the correct tax, show this value at the checkout, and report total sales tax charged to the enterprise manager.
Spree's tax system ( https://guides.spreecommerce.com/developer/taxation.html ) can model GST and VAT for a single shopfront. However, it's missing several features that we need, described below.
Some enterprises will be registered for GST, some will not. Some of these will share products from the same producer, so differentiating by product is not sufficient. We need to be able to enable/disable GST inclusivity per-enterprise. This won't change the prices, just whether GST is recorded as included in the price.
Spree has a config option to choose whether tax is charged on shipping.
This tax is price-inclusive.
@Matt-Yorkley has made a branch where the shipping tax rate is configurable - Matt-Yorkley-reports_vat
.
However, when an order is placed, the sales tax charged does not include that charged on the shipping,
and no record is made in the order that sales tax was charged. We need both of these things.
Additionally, the sales tax report should pull the shipping tax from this recorded figure and not re-calculate it at report-time.
Individual items and whole orders are charged a variety of fees, categorised as admin, sales, packing and transport fees. I think that we need to charge sales tax on some of these fees, particularly fees that apply to the whole order. I think we also need to charge tax on any fee on an item that itself attracts tax.
Note from Nick @NickWeir63: Everything above looks good but this section 'Tax on fees' concerns me. Stroudco is VAT registered and charges a 12% (or 30%) markup on all produce it sells. We do not need to pay VAT on this markup. If we start to call this markup a service fee then we might need to pay 20% VAT on this markup which would make a big hole in Stroudco's profitability. I see two possible options:
- we don't call it a service fee - we change OFN UK to call this a markup instead.
- Stroudco de-registers from the VAT system (which we have been considering doing for a while anyway) which would temporarily avoid this problem until another VAT-registered hub wanted to use OFN.
Development environment setup
- Pipeline development process
- Bug severity
- Feature template (epic)
- Internationalisation (i18n)
- Dependency updates
Development
- Developer Guidelines
- The process of review, test, merge and deploy
- Making a great commit
- Making a great pull request
- Code Conventions
- Database migrations
- Testing and Rspec Tips
- Automated Testing Gotchas
- Rubocop
- Angular and OFN
- Feature toggles
- Stimulus and Turbo
Testing
- Testing process
- OFN Testing Documentation (Handbooks)
- Continuous Integration
- Parallelized test suite with knapsack
- Karma
Releasing
Specific features
Data and APIs
Instance-specific configuration
External services
Design