This commit is contained in:
behruz-dev
2025-09-04 18:33:56 +05:00
parent a56a62acfa
commit fdf0c9808b
11 changed files with 115 additions and 11 deletions

View File

@@ -1 +1,2 @@
from .order import *
from .order import *
from .supplier import *

View File

@@ -0,0 +1,6 @@
from django.contrib import admin
from core.apps.orders.models import Supplier
admin.site.register(Supplier)