add finance app

This commit is contained in:
behruz-dev
2025-08-04 13:35:22 +05:00
parent 1dffabde44
commit bb8fbd4ca7
32 changed files with 336 additions and 69 deletions

View File

@@ -0,0 +1 @@
from .cash_transaction import *

View File

@@ -0,0 +1,16 @@
from django.db import models
from django.utils.translation import gettext_lazy as _
from core.apps.shared.models import BaseModel
class CashTransaction(BaseModel):
name = models.CharField(max_length=200, unique=True)
def __str__(self):
return self.name
class Meta:
verbose_name = _('Kassa')
verbose_name_plural = _('Kassalar')