Error in Louisiana income tax calculation

Discussion for TimeTrex open source community developers.
Locked
hazelnut
Posts: 3
Joined: Tue Mar 11, 2008 3:44 pm

Error in Louisiana income tax calculation

Post by hazelnut »

There is an error in the calculation of the Louisiana Income tax.

at the top of ./classes/payroll_deduction/US/LA.class.php
you have this:

Code: Select all

        'm1' => array(
                                        0 => 12500,
                                        1 => 12500,
                                        2 => 25500
                                        ),
                                                                                                
        'm2' => array(
                                        0 => 25500,
                                        1 => 25500,
                                        2 => 50000
                                        ),
it should be this:

Code: Select all

        'm1' => array(
                                        0 => 12500,
                                        1 => 12500,
                                        2 => 25000
                                        ),
                                                                                                
        'm2' => array(
                                        0 => 25000,
                                        1 => 25000,
                                        2 => 50000
                                        ),
You can verify here:
http://www.rev.state.la.us/sections/bus ... lding.aspx
shaunw
Posts: 7839
Joined: Tue Sep 19, 2006 2:22 pm

Post by shaunw »

This issue is fixed in the following version:
http://www.timetrex.com/download/TimeTr ... .8-rc1.zip
Locked