* feat: Moved Document to Payroll Module * feat: Moved Reports to Payroll Module * feat: Moved Print fromat With Patch * feat: Moved Notifiction to Payroll Module and patches * feat: added dashboard and desk page to Payroll * feat: Payroll Dashboard * feat: Module onboarding * feat: Income tax Deductions Report * feat: Ecs Checklist Report * feat: Provident Fund Report * feat: Professional Fund report and commonified Code * feat: Total Payments Based On Payment Mode Report * fix: refactor and added chart Total Payments Based On Payment Mode * feat: Payroll Settings * fix: Bank remittance Report * feat(Payroll based on): Considered unmarked days * feat: Added Help for condition an formula in Salary structure * fix: requested changes * fix: rename report Ecs checklist to salary_payments_via_ecs * fix: renamed report report/total_payments_based_on_payment_mode * fix: added role via setup.py for regional report * feat: added All reports to desk page * fix: frappe.reload doc in all patches * fix: codacy * fix: frappe.reload_doctype for patches * patch: is_income_tax_component and component_type for salary component * fix: uncommented code * test: fixture * fix: test * test: test_payment_days_based_on_attendance
		
			
				
	
	
		
			16 lines
		
	
	
		
			762 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			762 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from __future__ import unicode_literals
 | |
| import frappe
 | |
| 
 | |
| def execute():
 | |
| 	frappe.reload_doc('Payroll', 'doctype', 'salary_detail')
 | |
| 	frappe.reload_doc('Payroll', 'doctype', 'salary_component')
 | |
| 
 | |
| 	frappe.db.sql("update `tabSalary Component` set is_tax_applicable=1 where type='Earning'")
 | |
| 
 | |
| 	frappe.db.sql("""update `tabSalary Component` set variable_based_on_taxable_salary=1
 | |
| 	    where type='Deduction' and name in ('TDS', 'Tax Deducted at Source')""")
 | |
| 
 | |
| 	frappe.db.sql("""update `tabSalary Detail` set is_tax_applicable=1
 | |
| 	    where parentfield='earnings' and statistical_component=0""")
 | |
| 	frappe.db.sql("""update `tabSalary Detail` set variable_based_on_taxable_salary=1
 | |
| 	    where parentfield='deductions' and salary_component in ('TDS', 'Tax Deducted at Source')""") |