By Mohammad Dourou on Thursday, 01 February 2018
Posted in General Issues
Replies 16
Likes 0
Views 797
Votes 0
I have 2 questions regarding taxes:

1) I live in Canada, and there is a different tax rate for each province. I am using the Basic Tax Application, but it only allows a % for the country (not province). See screenshot: http://prntscr.com/i89qeh . How do I set up tax for each province?

2) When a user upgrades his plan, the invoice does not deduct the difference in tax for the user. See screenshot: http://prntscr.com/i89rb8

Example with 13% tax: User buys subscription for $49 + 6.37 (tax) = $55.37, then right away he upgrades to the $99 plan.

Currently this is how it's calculated:
$99 + 12.87 - $49 = $62.87

Expected:
$99 + $12.87 - $49 - $6.37 = $56.50 total.

How do we fix this tax issue?
Hello,

1. Currently you can apply tax on the basis of country only with Basic Tax app.

2. In case of taxation , we use sub total amount of previous plan (excluding tax), Because as per taxation rule, it's not possible to add up the previous tax value with new one, because tax amount will not adjustable in upgrade. So this is the process how we calculate upgraded amount.

Let me know if you have any query.
·
Friday, 02 February 2018 00:49
·
0 Likes
·
0 Votes
·
0 Comments
·
1) That's too bad, we'll have to customize it so the province/state tax are considered. This really should be something included in PayPlans in my opinion.

2) I'm not sure I understand you logic. Based on what you said, you're forcing client to pay double tax, instead of returning the unutilized tax of the previous subscription. It will be more expensive and discouraging for user to buy a subscription and upgrading. I personally think there should be 4 lines in total:

New Subscription............................................ $99.00
Tax................................................................. + $12.87
Unutilized amount of previous subscription... - $49.00
Unutilized tax of previous subscription.... - $6.37
----------------------------------------------------------------------------
Amount Payable.............................................. $56.50

Are you sure you don't want to fix this bug in your code?

Thanks,
Mohammad
·
Friday, 02 February 2018 02:18
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Mohammad,

1. Please post this requirement in PayPlans Feature Request section.

2. Please provide me admin details of your site and subscription id also for which you are talking about.
First i need to check the configuration then i'll be able to answer you that it's possible or not.

Update me.
·
Friday, 02 February 2018 11:37
·
0 Likes
·
0 Votes
·
0 Comments
·
1. I have done that now: https://stackideas.com/forums/different-tax-rate-for-provinces-states

2. I have sent you our login details and subscription id on Skype. Please check.
·
Saturday, 03 February 2018 01:37
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello,

The credential you sent me are not working.
Please update admin credential here in Site Details section.
·
Saturday, 03 February 2018 13:23
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Manisha,

I have updated the admin credential in Site Details section. Please check.
·
Saturday, 03 February 2018 14:16
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Mohammad,

Now, your site's admin details are working fine.
I checked your site and see the configuration. In case of upgrade subscription , we just consume non-taxable amount.
Tax amount is not usable in further payment as per generalist scenario.

If you want to adjust tax amount also then it will require significant changes in upgrade app.
Let me know if you have any query.
·
Monday, 05 February 2018 11:20
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Manisha,

Thanks for your response. I want to get no. of % of tax in complete() here in this file components/com_payplans/controllers/payment.php

How can i access it? Really appreciate your help. Looking forward to hear from your side.

Thanks!!
·
Wednesday, 07 February 2018 23:07
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Mohammad,

Let me know that you just wanna show the tax amount or you want to do some code , so i can assist you better.
·
Thursday, 08 February 2018 12:10
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Manisha,

It's not tax amount that i want to access, its % of tax that means whatever tax % is applied to that transaction that i need to access. I need to use this in Freshbooks integration, so yes i think just to show will be enough.

Let me know.

Thanks!!
·
Thursday, 08 February 2018 12:52
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello,

You need to get modifier from invoice.

$invoice = $payment->getInvoice(PAYPLANS_INSTANCE_REQUIRE);
$modifier = $invoice->getModifiers();


You will find array of modifier then arrange it as per your need.
To Get tax amount

$modifier->getAmount(); // it the value to discount will be applied


To get it's percentage or not

$modifier->isPercentage()


You need to combine both to show the value of %tax. Try this solution and update me if you have any query.
·
Thursday, 08 February 2018 14:01
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Manisha,

Thank you for code, but it's not working. See below this is how i am using it.

$invoice = $payment->getInvoice(PAYPLANS_INSTANCE_REQUIRE);
$modifier = $invoice->getModifiers();
echo "Modifier"."<pre>";
print_r($modifier);
echo "</pre>";
echo "tax per ";
echo $modifier->getAmount();

And this is what output looks like http://prntscr.com/ibq6xt

Let me know.

Thanks!!
·
Thursday, 08 February 2018 14:48
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Mohammad,

As i already told you that you will get array in modifiers.

$invoice = $payment->getInvoice(PAYPLANS_INSTANCE_REQUIRE);
$modifiers = $invoice->getModifiers();

foreach ($modifiers as $modifier) {
$value = $modifier->getAmount(); // it the value to discount will be applied

$percentage = $modifier->isPercentage(); // will return true if discount is of % type
}


Please do the code as mentioned above.
·
Thursday, 08 February 2018 15:34
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post