add new app

This commit is contained in:
behruz-dev
2025-08-01 15:24:00 +05:00
parent 9b403c46da
commit a714dbacb3
49 changed files with 579 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
from django.contrib import admin
from core.apps.wherehouse.models.stock_movemend import StockMovemend
@admin.register(StockMovemend)
class StockMovemendAdmin(admin.ModelAdmin):
list_display = ['wherehouse_to', 'wherehouse_from', 'product', 'quantity', 'movemend_type']