curl --location --request POST 'http://localhost:8000/api/v1/receipt' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--form 'supplier_id="1"' \
--form 'expire_date[]="2025-12-11"' \
--form 'expire_date[]="2025-12-15"' \
--form 'price[]="20000"' \
--form 'price[]="15000"' \
--form 'quantity[]="20"' \
--form 'quantity[]="10"' \
--form 'product_id[]="1"' \
--form 'product_id[]="2"' \
--form 'is_consignment[]="1"' \
--form 'is_consignment[]="0"' \
--form 'date="2025-10-27"'