This commit is contained in:
admin
2026-03-04 23:20:42 +09:00
parent 99d16d8219
commit 31a64d5b59
11 changed files with 674 additions and 201 deletions

View File

@@ -123,6 +123,14 @@ class PayrollCalculationRequest(BaseModel):
other_allowance: Decimal = Decimal("0")
resident_tax: Decimal = Decimal("0")
other_deduction: Decimal = Decimal("0")
calc_income_tax: bool = True
calc_social_insurance: bool = True
class RecalculateRequest(BaseModel):
"""再計算リクエスト"""
calc_income_tax: bool = True
calc_social_insurance: bool = True
class PayrollApprovalRequest(BaseModel):