Larry,

It seems like request data field name don't have underscore. It should
be case_status
instead of casestatus

Regards,
Geo


On Tue, Feb 28, 2023 at 2:12 AM Larry Martell <larry.mart...@gmail.com>
wrote:

> I have this defined in my serializer:
>
>     case_status = serializers.ListField(
>         child=serializers.CharField(
>             allow_blank=True,
>             max_length=512,
>             allow_null=True,
>             required=False,
>             default="''",
>         ),
>         source='casestatus',
>         required=False,
>         allow_empty=True,
>     )
>
> When this data is received:
>
> (Pdb) request.data
> <QueryDict: {'casestatus': ['Rejected'], 'page_size': ['10']}>
>
> The casestatus field is not picked up:
>
> (Pdb) serializer.validated_data
> OrderedDict([('patientid', 0), ('pk', 0), ('patientname', "''"), ('dobstart', 
> "''"), ('dobend', "''"), ('scanstart', "''"), ('scanend', "''"), 
> ('workitemstr', "''"), ('institutionid', 0), ('page_size', 10), 
> ('sortByDateCreated', 'true')])
>
> Can anyone see what I am doing wrong here?
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CACwCsY6-wEO-vVDn_mhb8t0-w2C5vXyw-08EeuUeiAPmMK_oqw%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CACwCsY6-wEO-vVDn_mhb8t0-w2C5vXyw-08EeuUeiAPmMK_oqw%40mail.gmail.com?utm_medium=email&utm_source=footer>
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAFkw%3Dc%3DZ6MaF8CXvRmx08cUx-tTC8LjhJ7dX-xPfWdQT9DOVGQ%40mail.gmail.com.

Reply via email to