File tree 1 file changed +6
-2
lines changed
hrms/payroll/doctype/salary_slip
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -865,10 +865,14 @@ def compute_income_tax_breakup(self):
865
865
866
866
if hasattr (self , "total_structured_tax_amount" ) and hasattr (self , "current_structured_tax_amount" ):
867
867
self .future_income_tax_deductions = (
868
- self .total_structured_tax_amount - self .income_tax_deducted_till_date
868
+ self .total_structured_tax_amount
869
+ + self .get ("full_tax_on_additional_earnings" , 0 )
870
+ - self .income_tax_deducted_till_date
869
871
)
870
872
871
- self .current_month_income_tax = self .current_structured_tax_amount
873
+ self .current_month_income_tax = self .current_structured_tax_amount + self .get (
874
+ "full_tax_on_additional_earnings" , 0
875
+ )
872
876
873
877
# non included current_month_income_tax separately as its already considered
874
878
# while calculating income_tax_deducted_till_date
You can’t perform that action at this time.
0 commit comments