Relative Content

Tag Archive for pythondjangodjango-modelsdjango-rest-framework

DRF error serializing many to many relation

The error occurs after inserting the DetallePedido record, the serializer is looking for the fields ‘producto’ and ‘cantidad’. And it receives a Producto object and an integer (cantidad) and it is looking for the field ‘producto’ inside the Producto object, that’s why the error occurs. And at the end of the create() function it sends the Pedido object with the empty detalles_pedido attribute which is where the DetallePedido records should be stored. Any idea how to fix it?

DRF error serializing many to many relation

The error occurs after inserting the DetallePedido record, the serializer is looking for the fields ‘producto’ and ‘cantidad’. And it receives a Producto object and an integer (cantidad) and it is looking for the field ‘producto’ inside the Producto object, that’s why the error occurs. And at the end of the create() function it sends the Pedido object with the empty detalles_pedido attribute which is where the DetallePedido records should be stored. Any idea how to fix it?