Files
ibapp-backend/core/apps/wherehouse/admin/stock_movement.py
2025-08-27 12:10:13 +05:00

8 lines
280 B
Python

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