add: add new api for expence
This commit is contained in:
18
core/apps/finance/migrations/0024_expence_status.py
Normal file
18
core/apps/finance/migrations/0024_expence_status.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 5.2.4 on 2025-09-24 18:44
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('finance', '0023_alter_expencecontract_project_folder'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='expence',
|
||||
name='status',
|
||||
field=models.CharField(blank=True, choices=[('CANCELLED', 'rad etildi'), ('PENDING', 'kutilmoqda'), ('CONFIRMED', 'tasdiqlangan')], default='PENDING', max_length=20, null=True),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user