Implementation of Prices and Taxes in Shoop¶
This document describes deeper details about price and tax implementation in Shoop from a developer’s point of view. To understand the basics, please read Prices and Taxes in Shoop first.
Types Used for Prices and Taxes¶
Used to represent money amounts (that are not prices). It is basically aDecimalnumber with a currency.
Used to represent prices.
Priceis aMoneywith anincludes_taxproperty. It has has two subclasses:TaxfulPriceandTaxlessPrice.There should usually be no need to create prices directly with these classes; see Creating Prices.
An interface for accessing the price information of a product, order line, basket line, or whatever. See Accessing Prices of Product or Line.
A class for describing an item’s price information.
An interface for querying prices of products.
A container for variables that affect pricing. Pricing modules may subclass this.
An interface for objects that can be converted to a pricing context. Instances ofPricingContextorHttpRequestsatisfy this interface.
An interface for describing a calculated tax of a line in order or basket. Has a reference to the line and to the applied tax and the calculated amount of tax. One line could have several taxes applied, each is presented with a separateLineTax.
A Django model for persistently storing the calculated tax of anOrderLine. Implements theLineTaxinterface.
A Django model for a tax with name, code, and percentage rate or fixed amount. Fixed amounts are not yet supported.
Todo
Fix this when fixed amounts are supported.
An interface for items that can be taxed. Implemented byProduct,ShippingMethod,PaymentMethodandSourceLine.
A Django model for a tax class. Taxable items (e.g. products, methods or lines) are grouped to tax classes to make it possible to have different taxation rules for different groups of items.
A Django model for grouping customers to make it possible to have different taxation rules for different groups of customers. Shoop assigns separateCustomerTaxGroup`s for a `~shoop.core.models.PersonContactand aCompanyContactby default.
An interface for calculating the taxes of anOrderSourceor anyTaxableItem. The Shoop Base distribution ships a concrete implementation of aTaxModulecalledDefaultTaxModule. It is a based on a table of tax rules (saved withTaxRulemodel). See The Default Tax Module. UsedTaxModulecan be changed withSHOOP_TAX_MODULEsetting.
A type to represent the return value of tax calculation. Contains a pair of prices,TaxfulPriceandTaxlessPrice, of which one is the original price before the calculation and the other is the calculated price. Also contains a list of the applied taxes.TaxedPriceis the return type ofget_taxed_price_formethod in theTaxModuleinterface.
A container for variables that affect taxing, such as customer tax group, customer tax number, location (country, postal code, etc.). Used in theTaxModuleinterface. Note: This is not usually subclassed.
Creating Prices¶
When implementing a PricingModule or another
module that has to create prices, use the Shop.create_price method. It makes sure that all
prices have the same price unit.
Accessing Prices of Product or Line¶
There is a Priceful interface for accessing
prices. It is implemented by OrderLine and
SourceLine,
BasketLine, and
PriceInfo which is returned e.g. by
get_price_info method.