feat: 子ども・子育て支援金を給与・賞与計算に追加(令和8年4月以降)
This commit is contained in:
@@ -67,7 +67,8 @@ def calculate_payroll(request: schemas.PayrollCalculationRequest):
|
||||
employee_id, payroll_year, payroll_month, payment_date, status,
|
||||
working_days, working_hours, overtime_hours, holiday_hours, late_hours, absent_days,
|
||||
base_salary, overtime_pay, holiday_pay, commute_allowance, other_allowance, total_payment,
|
||||
health_insurance, care_insurance, pension_insurance, employment_insurance,
|
||||
health_insurance, care_insurance, pension_insurance, employment_insurance,
|
||||
child_support,
|
||||
income_tax, resident_tax, other_deduction, total_deduction,
|
||||
net_payment, calculated_at, calculated_by
|
||||
) VALUES (
|
||||
@@ -75,6 +76,7 @@ def calculate_payroll(request: schemas.PayrollCalculationRequest):
|
||||
%s, %s, %s, %s, %s, %s,
|
||||
%s, %s, %s, %s, %s, %s,
|
||||
%s, %s, %s, %s,
|
||||
%s,
|
||||
%s, %s, %s, %s,
|
||||
%s, %s, %s
|
||||
)
|
||||
@@ -89,6 +91,7 @@ def calculate_payroll(request: schemas.PayrollCalculationRequest):
|
||||
calc_result["commute_allowance"], calc_result["other_allowance"], calc_result["total_payment"],
|
||||
calc_result["health_insurance"], calc_result["care_insurance"],
|
||||
calc_result["pension_insurance"], calc_result["employment_insurance"],
|
||||
calc_result["child_support"],
|
||||
calc_result["income_tax"], calc_result["resident_tax"], calc_result["other_deduction"],
|
||||
calc_result["total_deduction"],
|
||||
calc_result["net_payment"], datetime.now(), calc_result["calculated_by"]
|
||||
|
||||
Reference in New Issue
Block a user