fix: receive user 返回错误

This commit is contained in:
caoqianming 2023-11-02 18:50:02 +08:00
parent fd13551150
commit b2c201877f
1 changed files with 1 additions and 1 deletions

View File

@ -207,7 +207,7 @@ class HandoverSerializer(CustomModelSerializer):
send_user_name = serializers.CharField( send_user_name = serializers.CharField(
source='send_user.name', read_only=True) source='send_user.name', read_only=True)
recive_user_name = serializers.CharField( recive_user_name = serializers.CharField(
source='send_user.name', read_only=True) source='recive_user.name', read_only=True)
material_ = MaterialSimpleSerializer(source='material', read_only=True) material_ = MaterialSimpleSerializer(source='material', read_only=True)
class Meta: class Meta: