Try our conversational search powered by Generative AI!

Recalculate tax

Vote:
 

Hi!

Is there a way to tell the IOrderGroupCalculator to recalculate the tax when calling for the method GetOrderGroupTotals?

From what I understand, a IOrderGroupCalculatedAmount.IsTaxTotalUpToDate is set to false when for example when adding a new lineitem or updateing quantity, but is there a way to force it to recalculate outside of this?

Commerce Version: 12.2.0

#192393
May 16, 2018 10:41
Vote:
 

Hi,

You're right about how the flag works.

The field "IsTaxTotalUpToDate" is manipulated in many order levels: line item, shipment, order group. The calculated tax total is calculated, stored and match with 'UpToDate' flag value. Then the order tax total is made by grouping up from child levels.

If you rewrite GetOrderGroupTotals() and bypass the flag, it may works but still not consistent with the child levels and may cause error somewhere. 

You may think about resetting flag at child levels, but since IOrderGroupCalculatedAmount is internal, it's not recommended.

Could you give more details, why the order should be recalculated?

/Viet Anh

#192401
May 16, 2018 12:40
Vote:
 

Hi Viet Anh,

We allow for the user to insert a valid VAT number on the order. If this is added and verified, we then don't calculate any tax the order.

Where the problem occurs is when the user inserts this VAT number, we save this on the "extended properties" (no other modifications are made), then we do the "GetOrderGroupTotals".

What about a sneaky hack? What would happen if I would to increase then decrease back a line item - Would this recalculate the tax on all levels?

/Emil

#192405
May 16, 2018 13:16
Vote:
 

Yes, changing quantity can trigger the event to reset the flag. Then the tax is recalculated on relevant objects (that line item, its shipment and order group).

I'll check if there's any possible solution in case user input VAT.

/ Viet Anh

#192408
May 16, 2018 13:38
Vote:
 

We left "forced recalculate taxes" as an open question - i.e. if there is a need for it we can add it later. The reason we did not want to include it in the first place was because it exposes the internal implementation, and it can be abused.

Right now the obvious workaround is to have a method like this (pseudo code)

private void ResetUptodateFlag(IOrderGroup order)

{

        var pricesIncludeTax = order.PricesIncludeTax;

        order.PricesIncludeTax = !pricesIncludeTax;

        order.PricesIncludeTax = pricesIncludeTax;

}

Of course it's not beautiful, but I guess you would not want (and I personally don't recommend) to use reflection to access some internal/private methods

#192428
May 16, 2018 16:55
This topic was created over six months ago and has been resolved. If you have a similar question, please create a new topic and refer to this one.
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.