How do you add tax to a shipping amount on Opencart?
I obtain the following checkout summary on my site:
Sub-Total: £332.50
Delivery Zone 1: £49.99
VAT (20%): £66.50
Total: £448.99
Delivery is £49.99 inclusive of VAT so it needs to read as follows:
Sub-Total: £332.50
Delivery Zone 1: £41.66
VAT (20%): £74.83
Total: £448.99
How can this be solved?
You shoud assign a tax class to your shipping mode in Extensions > Shippings and put the price of your shipping method without the VAT price included. Make sure you also set a tax class on your product and that Extensions > Order totals > Taxes is enabled.
Your checkout summary now will show you the shipping price without the VAT included. You'll find the total VAT price (calculated by adding the VAT of the product's price and that of the shipping cost) in the VAT field.
Related
I have an account with a brokerage company. When am attempting to sell a limit stock, I get the following error. "The limit price you have entered is too far away from the Bid Price for this security. Please use the following guidelines when entering your limit price: For sell limit orders in which your limit price is above the current Bid Price, Your limit price can be no more than 50% away from the Bid Price. I have a Google sheet with columns with stocks prices etc. Would you have any ideas how to create an alert text as below?
STOCK Symbol: TEST
My Limit Price: $40 (Cell: A1)
Current bid price: $21 (Cell : B1)
In Cell C1: How can I create an alert to appear "fill-limit-order-transaction-now" once the condition to add the limit sell transaction "limit price can be no more than 50% away from the Bid Price" is met.
What I am struggling with is how to come up with a relationship between the target price and the condition..
no more than 50% ....> $21 + 50% of $21...> $31.50... so how can I link this number to my target $40? to come up with an alert condition so I can create a future sell transaction? Thanks!
To summarize what I have understood from your question:
1. You have a product/stock which has a maximum selling price of $40.
2. You want to be alerted to a potential sale when you receive a bid higher than $26.66.
If my understanding is correct, please check if this formula works for you:
My Limit Price: $40 (Cell: A1)
Current bid price: $21 (Cell : B1)
Formula in cell C1:
=IF((B1+(B1*50%))>A1,"fill-limit-order-transaction-now","Threshold not reached")
In django oscar when creating a product in stock and pricing step there are options ( Cost Price , Price (excl tax) , Retail price )
the Price (excl tax) is the price is showing on the product view
how can I show the retail or the cost price alongside the Price (excl tax) ?
my desire is to make an old price and new one
like 100$ down from 300$
I want to use the existing product form to fulfill this task
I mean the 100$ be in the retail or cost price and then I print it in the product template alongside the Price(excl tax)
how can I print it ?
Ok I figured it out , I can use {{ stockrecord.cost_price }} and {{ stockrecord.price_retail }} to handle this task :)
I've added some discount percent extension on the opencart 1.5.4.1 and it works, if i add the percent, the product price with discount updates automatically.
But if i update the original price of the product, the value with discount doesn't changes by the percent, it stays the same and the percent changes based on the original price.
Is it possible to make the price with disconut dymanic based on the percent, independent of the original price?
I am new to opencart. I have a task at hand. I need to add few discounts to some products. There are two types of discounts that i have to add.
Fixed price. Like if something is of $10, i offer that at $8.
%age discount. Like I want to offer 50% off on the product.
What i found is that open cart has a discount tab in it's backend but it has options for only fixed price discount.
I have attached its snapshot for reference.
How can I add a percentage discount option?
There is one small caveat in OpenCart's product administration: the Discount tab does not set a sale price but a quantity discount. That's why You need to set the Quantity there - it means how many products have to be bought for this (quantity) discount to be applied.
If You set these discounts on some product that has a base price $25:
quantity 5, price $22.5
quantity 10, price $20
quantity 15, price $17.5
then you can see it in action if you display the product's detail - a table listing the quantity discounts should be displayed (depends on your template) and after adding different quantity of this product to your cart you'll realize the change of the price.
The other tab that you are looking for is Special where you can set only the fix sales price.
There is no possibility to set a percentage sales nor quantity discounts in the default OpenCart installation.
I am usng vm2 in my joomla project.I want to set the tax rate of product1 to 4.71% and product2 to 1.25% . How we can set different tax rate for each product through admin side.
thanks in advance
First you will need to set up a per product tax rule for each level of tax you want to put on a product. Then in the individual product in the product pricing you can select which tax to apply to the price from a drop down list.