Skip to content

Commit

Permalink
feat: handle posted at (#172)
Browse files Browse the repository at this point in the history
  • Loading branch information
anishfyle authored Nov 19, 2024
1 parent d44c72f commit 9dd3179
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions apps/fyle/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ class Expense(BaseForeignWorkspaceModel):
spent_at = CustomDateTimeField(help_text='Expense spent at')
approved_at = CustomDateTimeField(help_text='Expense approved at')
posted_at = CustomDateTimeField(help_text='Date when the money is taken from the bank')
is_posted_at_null = models.BooleanField(default=False, help_text='Flag check if posted at is null or not')
is_skipped = models.BooleanField(null=True, default=False, help_text='Expense is skipped or not')
expense_created_at = CustomDateTimeField(help_text='Expense created at')
expense_updated_at = CustomDateTimeField(help_text='Expense created at')
Expand Down

0 comments on commit 9dd3179

Please sign in to comment.