add: add type income crud and model

This commit is contained in:
behruz-dev
2025-09-08 16:15:20 +05:00
parent d60916685f
commit d84612af13
10 changed files with 213 additions and 3 deletions

View File

@@ -1,2 +1,3 @@
from .cash_transaction import *
from .payment_type import *
from .payment_type import *
from .type_income import *

View File

@@ -0,0 +1,9 @@
from django.contrib import admin
from core.apps.finance.models import TypeIncome
@admin.register(TypeIncome)
class TypeIncomeAdmin(admin.ModelAdmin):
list_display = ['id', 'name']