add: add new field for expence income, and add to filter new fields

This commit is contained in:
behruz-dev
2025-09-29 15:31:06 +05:00
parent 2fd5d685e2
commit f4f54801db
5 changed files with 35 additions and 4 deletions

View File

@@ -0,0 +1,23 @@
# Generated by Django 5.2.4 on 2025-09-29 15:28
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('finance', '0030_incomechat_incomemessage'),
]
operations = [
migrations.AlterField(
model_name='expence',
name='audit',
field=models.CharField(blank=True, choices=[('CHECKED', 'tekshirildi'), ('PROCESS', 'jarayonda')], max_length=20, null=True),
),
migrations.AlterField(
model_name='income',
name='audit',
field=models.CharField(blank=True, choices=[('CHECKED', 'tekshirildi'), ('PROCESS', 'jarayonda')], max_length=20, null=True),
),
]