Add real BD fee
This commit is contained in:
parent
8a03defc37
commit
121c49a5b6
11 changed files with 188 additions and 28 deletions
18
apps/treasury/migrations/0002_auto_20220824_1919.py
Normal file
18
apps/treasury/migrations/0002_auto_20220824_1919.py
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
# Generated by Django 2.2.28 on 2022-08-24 17:19
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('treasury', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='invoice',
|
||||
name='bde',
|
||||
field=models.CharField(choices=[('BDE', 'BDE'), ('BDA', 'BDA'), ('BDS', 'BDS')], default='BDE', max_length=32, verbose_name='BD?'),
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue