Re: Edit Orders v3.0 for Zen Cart 1.3.9 Support Thread
Thanks for the patience. I got confused which forum i am on due the the back and fourth integrating the two together. either way, it would not pose a big problem if that one specific flag is there or not.
You have been a great help thruoght out the entire process while i tried to correct a problem i made long time ago and had to suffer without the edit orders functions.
:smile:
Re: Edit Orders v3.0 for Zen Cart 1.3.9 Support Thread
I just installed Edit orders v3.0. but when I click at the edit-button, then I see a blank page.
What did I do wrong?
Re: Edit Orders v3.0 for Zen Cart 1.3.9 Support Thread
In the installation was written that I had to delete the edit_orders_functions.php-file. When I put it back I did not see a blank page anymore..
Re: Edit Orders v3.0 for Zen Cart 1.3.9 Support Thread
Quote:
Originally Posted by
Princess
I just installed Edit orders v3.0. but when I click at the edit-button, then I see a blank page.
What did I do wrong?
you will have an error log in your cache folder giving an indication of why you got a blank page.
PROBLEM WITH VAT: Edit Orders v3.0 for Zen Cart 1.3.9 Support Thread
I have a problem with VAT,
if I change something in an order with the Edit orders v3.0 module, then the subtotal shows afterwards the price ex VAT instead of including VAT. What can I do about this?
Re: PROBLEM WITH VAT: Edit Orders v3.0 for Zen Cart 1.3.9 Support Thread
Quote:
Originally Posted by
Princess
I have a problem with VAT,
if I change something in an order with the Edit orders v3.0 module, then the subtotal shows afterwards the price ex VAT instead of including VAT. What can I do about this?
Using the thread tools, search this thread for the two posts which include the the subject "KNOWN ISSUES". It covers the known issues with Edit Orders and taxes..
Re: PROBLEM WITH VAT: Edit Orders v3.0 for Zen Cart 1.3.9 Support Thread
Quote:
Originally Posted by
DivaVocals
Using the thread tools, search this thread for the two posts which include the the subject "KNOWN ISSUES". It covers the known issues with Edit Orders and taxes..
Hi thank you for your reply If I search for known issues, then I see more then 40 posts, do you happen to know which one I have to read?
Re: PROBLEM WITH VAT: Edit Orders v3.0 for Zen Cart 1.3.9 Support Thread
Quote:
Originally Posted by
Princess
Hi thank you for your reply If I search for known issues, then I see more then 40 posts, do you happen to know which one I have to read?
Not off the top of my head.. I'd have to search for the thread myself.. But I included the words "known issues" in the subject to make it easy for folks to find later..
Re: PROBLEM WITH VAT: Edit Orders v3.0 for Zen Cart 1.3.9 Support Thread
Hi Diva,
I have found the right topic: KNOWN ISSUES: Edit Orders and taxes
I have read all the linked topics, but only one seemed the one that I was looking for.
I followed his instructions in the edit_orders.php file,
................................................................................ ........
89c89
< $AddShippingTax = "0.0"; // e.g. shipping tax of 17.5% is "17.5"
---
> $AddShippingTax = "17.5"; // e.g. shipping tax of 17.5% is "17.5"
593c593,596
< $RunningTaxTotalChanges += (($_POST[shippingtaxrate] / 100) * $ot_value);
---
> $ot_value = $ot_value / (1 + ($_POST[shippingtaxrate]/100));
> $RunningTotalShippingTax = (($_POST[shippingtaxrate] / 100) * $ot_value);
> $RunningTaxTotalChanges += $RunningTotalShippingTax;
> $RunningTaxTotalShipping = $ot_value;
636c639
< $ot_value = $RunningSubTotal;
---
> $ot_value = (($RunningSubTotal + $RunningTax) - $RunningTotalShippingTax);
644a648,653
> if($ot_class == "ot_shipping")
> {
> $ot_value = $RunningTaxTotalShipping + $RunningTotalShippingTax;
> // $sendtotaltoorders = 2;
> }
>
647c656,659
< $ot_value = $RunningTotal; }
---
> $ot_value = $RunningTotal - $RunningTax;
> //$ot_value = $ot_value + $RunningTotalShippingTax;
> }
................................................................................ ....
but... nothing happened after changing this file. The subtotal is still excluding vat. How can I add VAT to the subtotal just like original orders?
Re: PROBLEM WITH VAT: Edit Orders v3.0 for Zen Cart 1.3.9 Support Thread
Quote:
Originally Posted by
Princess
Hi Diva,
I have found the right topic: KNOWN ISSUES: Edit Orders and taxes
I have read all the linked topics, but only one seemed the one that I was looking for.
I followed his instructions in the edit_orders.php file,
................................................................................ ........
89c89
< $AddShippingTax = "0.0"; // e.g. shipping tax of 17.5% is "17.5"
---
> $AddShippingTax = "17.5"; // e.g. shipping tax of 17.5% is "17.5"
593c593,596
< $RunningTaxTotalChanges += (($_POST[shippingtaxrate] / 100) * $ot_value);
---
> $ot_value = $ot_value / (1 + ($_POST[shippingtaxrate]/100));
> $RunningTotalShippingTax = (($_POST[shippingtaxrate] / 100) * $ot_value);
> $RunningTaxTotalChanges += $RunningTotalShippingTax;
> $RunningTaxTotalShipping = $ot_value;
636c639
< $ot_value = $RunningSubTotal;
---
> $ot_value = (($RunningSubTotal + $RunningTax) - $RunningTotalShippingTax);
644a648,653
> if($ot_class == "ot_shipping")
> {
> $ot_value = $RunningTaxTotalShipping + $RunningTotalShippingTax;
> // $sendtotaltoorders = 2;
> }
>
647c656,659
< $ot_value = $RunningTotal; }
---
> $ot_value = $RunningTotal - $RunningTax;
> //$ot_value = $ot_value + $RunningTotalShippingTax;
> }
................................................................................ ....
but... nothing happened after changing this file. The subtotal is still excluding vat. How can I add VAT to the subtotal just like original orders?
The known issues post was a place to document all the known issues with Edit Orders not a place to catalogue fixes for these issues. To date these are still known issues that have not been resolved.