Skip to content

Commit

Permalink
Changed tickbox for final expense claim to ticked by default
Browse files Browse the repository at this point in the history
  • Loading branch information
phillybroadbent committed Aug 24, 2023
1 parent 3fab33b commit b86547d
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
23 changes: 23 additions & 0 deletions lowfat/migrations/0159_auto_20230824_1428.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Generated by Django 3.2.15 on 2023-08-24 14:28

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('lowfat', '0158_auto_20230228_1404'),
]

operations = [
migrations.AlterField(
model_name='expense',
name='final',
field=models.BooleanField(default=True),
),
migrations.AlterField(
model_name='historicalexpense',
name='final',
field=models.BooleanField(default=True),
),
]
2 changes: 1 addition & 1 deletion lowfat/models/expense.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ class Meta:
default=False
)
final = models.BooleanField(
default=False
default=True
)
advance_booking = models.BooleanField(
default=False
Expand Down

0 comments on commit b86547d

Please sign in to comment.