feat: add owner field, fix header issue and use zhCN for element-plus

This commit is contained in:
2025-09-19 09:31:45 +08:00
parent 6a5f074c1d
commit e3fa701f9f
8 changed files with 319 additions and 202 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ class ItemSerializer(serializers.ModelSerializer):
model = Item
fields = [
'id', 'name', 'description', 'serial_number', 'category', 'status',
'location', 'purchase_date', 'value', 'created_at', 'updated_at',
'location', 'owner', 'purchase_date', 'value', 'created_at', 'updated_at',
'current_user'
]