add new management commands for finance and counterparty

This commit is contained in:
behruz-dev
2025-10-25 15:01:46 +05:00
parent 33d8f50ca2
commit 7ba54bfeb2
8 changed files with 12494 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 5.2.4 on 2025-10-25 14:58
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('counterparty', '0006_rename_debit_counterparty_debit_usd_and_more'),
]
operations = [
migrations.AlterField(
model_name='counterparty',
name='balance',
field=models.BigIntegerField(blank=True, null=True),
),
]