Questions tagged [tax]

a financial charge or other levy imposed upon a taxpayer (an individual or legal entity) by a state or the functional equivalent of a state to fund various public expenditures.

A Tax is a financial charge or other levy imposed upon a taxpayer (an individual or legal entity) by a state or the functional equivalent of a state to fund various public expenditures.

286 questions
0
votes
3 answers

Best way to generate subtotal array from total

This is a bit of a contrived problem, but a real one for our industry. Our customer's rent hotel rooms and for hotel accounting reasons, room charges are added to the folio each night, not all at once. I've been working on fixing our flat rate…
camflan
  • 16,560
  • 3
  • 22
  • 19
0
votes
1 answer

How to override Mage_Tax renderer in Magento

I want to override the getShippingIncludeTax() method in the class Mage_Tax_Block_Checkout_Shipping , this block is defined as a renderer in the config;
Subrata
  • 2,216
  • 3
  • 24
  • 38
0
votes
1 answer

Magento : Different Tax Based On Shipping State

I want set different tax for different state based on customer shipping address state. I have added Tax class from admin for different tax and it's working. but I want product price should not change. If the product price is 100 (incl. tax) than tax…
Rahul Dadhich
  • 1,213
  • 19
  • 32
0
votes
1 answer

opencart taxes as discount

I am using opencart version 2.1.0.1. I want to set different tax values to products for different countries. It's ok but when i want to give tax a negative value, it doesn't works. Is this possible to use negative value on taxes by changing the…
Alen
  • 21
  • 1
  • 6
0
votes
1 answer

Magento 1.9.2.4 including and excluding tax not working

I have a problem with displaying tax in Magento. The prices in the catalog need to be displayed as with tax and without tax. Magento also gives warnings in this configuration. Here are my settings. Default settings Tax Classes Tax Class for…
Silent Ace
  • 299
  • 1
  • 6
  • 20
0
votes
1 answer

Configure Different Tax Rates for Defferent Countries

I need a little help regarding Tax configuration in Magento2. My tax configuration scenario is we ship in around 10 countries and we don't want to charge Tax from customers except for Pakistan, which is our local market. Can someone suggest me how…
Azeem Hassni
  • 885
  • 13
  • 28
0
votes
1 answer

Role based taxes in woocommerce / Cart page

I've set up a woocommerce store with multiple users (B2C & B2B). Some of them will automatically be exempt from tax and just have tax disappear from the cart/checkout. I've used a dynamic pricing plugin to provide different prices to different roles…
bkseen
  • 389
  • 1
  • 3
  • 19
0
votes
1 answer

Magento 2 VAT tax is visible for only specific country

On the UK the VAT is calculated. On the Ireland the VAT is added on the total but not on the VAT column
0
votes
1 answer

Opencart calculation when applying coupon value?

I am using opencart version 2.3.0.2 .. where i m getting all values except when i coupon value the tax values getting wrong and displaying values also getting wrong. I want each product unit tax before applying coupon and unit-discount after…
0
votes
1 answer

shell script zins calculation

I need a bash script that calculates basic tax. It should be callable by tax.sh or with an optional parameter: tax.sh (capital or help) (interest rate) (duration) What I have is that: re='^-?[0-9]+([.][0-9]+)?$' echo "capital: " read capital if…
0
votes
0 answers

How to deduct VAT for Guernsey in Magento?

My Magento won't deduct VAT from the order if the customer is from the Guernsey Island. Magento is hiding TAX but not deduct it? Any suggestions?
Rob D. A.
  • 142
  • 1
  • 11
0
votes
0 answers

Difference tax rate for different day on same product

How I set such of conditional tax rate on woo-commerce $65 all day plus tax and drop off $15 drop-off which comes to $86.28 Monday Thursday excluding holidays and weekends 2hrs $49 plus tax and drop off $15 which comes to $69.02 Monday…
Student
  • 27
  • 6
0
votes
1 answer

VAT calculation for Webshop filled with pre-tax prices (internationally accepted): Which is correct and why?

We have a PHP online shop which is filled with pre-tax prices - the customer has the following bill: Beer, VAT 10%, Price 1.99 $, Amount 15 Bread, VAT 10%, Price 0.73 $, Amount 5 Wine, VAT 13%, Price 4.77 $, Amount 7 Glasses, VAT 20%, Price 7.66…
Blackbam
  • 17,496
  • 26
  • 97
  • 150
0
votes
1 answer

Product price excl tax in order histroy info page (Opencart 1.5.6.4)

Is there a simple way to show the price without tax instead of incl on the order histroy page in opencart 1.5.6.4? I Managed to "fix" it everywhere else. Screendump opencart 1.5.6.4. Can anybody tell me how to change this? Thank you!
Youri
  • 11
  • 2
0
votes
2 answers

Debugging Python Calculate Tax Code

the following code which should calculate income tax for different people reading from a dictionary and returning their tax to a dictionary was written by me in answer to a certain quiz; Country X calculates tax for its citizens using a graduated…