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
2 answers

Validate Elevated Button in Flutter

I'm making an app using Flutter which calculates motor vehicle tax. It calculates it perfectly fine when I enter the cost of vehicle. But I want to add a validation to it. When I don't enter any cost of vehicle and keeps it empty and then click the…
Great
  • 25
  • 1
  • 6
0
votes
1 answer

Trigger Avalara to run after Suitescript completes

With Colorado adding a new deliver fee tax, I am in search of a method to call the Avalara recalculation process after updating an invoice in NetSuite. We have to add a new line item associated with this tax and then have it reprocess the Avalara…
Brad D.
  • 47
  • 1
  • 8
0
votes
1 answer

Woocommerce - Get Discounted product regular price WITHOUT tax

My following code allows a product that is on sale to display the regular price followed by the discounted price. The discounted price is excluding tax but the regular price is set to include tax (as per Woocommerce settings), as only this product…
0
votes
0 answers

Change the total price when quantity selection change and display with and without tax?

I'm trying to adapt a script that I had taken from another stack answer that changes the total price when quantity selection change. The script below only shows the price change with tax, how do I display with and without tax? /** * WooCommerce…
Amesey
  • 822
  • 2
  • 16
  • 33
0
votes
1 answer

Calculating Tax Based on Cart Subtotal in Woocommerce

I want to calculate tax based on the entire cart subtotals. So in my case, if the subtotal is < 1000, the Tax need to be 5% If the subtotal is >=1000, the Tax needs to be 12% I am having two classes Reduced rate - 5%, Standard - 12% add_action(…
musthafa
  • 433
  • 8
  • 21
0
votes
2 answers

How to add a tax only on shipped orders?

Here in Colorado, our department of revenue is implementing a new "Retail Delivery Fee." It is a flat $0.27 per order on orders delivered by motor vehicle within Colorado. While most news reports focus on food delivery services like Grubhub,…
0
votes
0 answers

WooCommerce Total Tax Amount Update in Checkout Page

I want to change total tax amount in the checkout page and my code is below. function change_tax_for_checkout_page( $cart ) { $cart->set_total_tax(20);//20USD $check = $cart->calculate_totals(); return $cart; } add_action(…
0
votes
1 answer

BigCommerce - Find Customers by Tax Code?

Is there a way to find customers with a non-blank tax_exempt_category? I can see that it's a returned value, but I can't see a way to query or filter by it and I don't want to have to process all customers.
RandySK
  • 13
  • 4
0
votes
2 answers

can not send tax amount in stripe from next js app

In my project, I am using WordPress woo-commerce as backend and next js as frontend. I am trying to implement stripe payment. I can send line items in stripe sessionData and they show perfectly on the stripe page, how ever when I am trying to send…
0
votes
1 answer

Odoo 14 Invoice creation issues - does not apply taxes

I'm trying to create an invoice using the request below. Q#1 Although I can see an invoice getting created on Odoo, the taxes are not applied. I can see that : the product from invoice line has taxes on it the fiscal position is configured…
Tiya
  • 553
  • 8
  • 26
0
votes
2 answers

Subtract tax from a price with tax in OpenCart?

How do I subtract all taxes from a price with tax in OpenCart? In the example below I use the default "Taxable goods" tax setting from OpenCart, which is 20% VAT + $2,00 Eco-Tax. $number = 20.80 // Get $number tax: $tax = $this->tax->getTax(…
user17225961
0
votes
2 answers

Tax bracket calculator self assignment

My assignment was to create a tax calculator in whatever way possible initially with paying tax excluding tax brackets. How would I adjust this code to use Loops instead or how could I make it more efficient? #include #include…
NeonRyse
  • 15
  • 3
0
votes
2 answers

Javascript Tax Calculator Input boxes not Functioning

this is a homework assignment in which I am supposed to write the JavaScript function (calculate) to calculate and display sales tax and total upon hitting the calculate button. This was provided for me: salesTax = subtotal * taxRate/100; total =…
0
votes
1 answer

Exclude woocommerce tax from multiple product variants based on user role

I need help getting this code to apply to more than one product variant. It works how I need for a single product variant but if I try to change it to include other variants for other products it doesn't work. I tried array (618, 1380); which are 2…
0
votes
1 answer

Set zero taxes when total cart value before taxes is lower than a set amount - woocommerce

I have been reading this article Set 'Zero Tax' for subtotal under $110 - Woocommerce as reference to assign ‘zero’ taxes when total cart value < 800 (otherwise it applies another tax class). In my case I applied it only to parcels shipped to US.…
Manu
  • 21
  • 7