[UPDT] PAYROLL: Updated payroll rembursment and loan account model by adding abstract class

This commit is contained in:
Horilla
2024-03-26 14:18:37 +05:30
parent edb92f344b
commit 4dbb92c342
2 changed files with 7 additions and 6 deletions

View File

@@ -164,9 +164,9 @@ class WorkRecordForm(ModelForm):
model = WorkRecord
class ReimbursementrequestCommentForm(ModelForm):
class ReimbursementRequestCommentForm(ModelForm):
"""
ReimbursementrequestCommentForm form
ReimbursementRequestCommentForm form
"""
class Meta:
@@ -176,6 +176,7 @@ class ReimbursementrequestCommentForm(ModelForm):
model = ReimbursementrequestComment
fields = ("comment",)
exclude = ["is_active"]
class EncashmentGeneralSettingsForm(ModelForm):