Authorization: Bearer ********************
{
"id": 2,
"supplierId": 1,
"buyerId": 126,
"totalAmount": 1000,
"orderDate": "2025-08-01",
"deliveryDate": "2025-08-01",
"orderItems": [
{
"productId": 1,
"productName": "圆珠笔",
"amount": 100,
"warehouseId": 2,
"warehouseName": "仓库1",
"quantity": 1,
"price": 100
}
],
"remark": null
}
curl --location --request PUT '/purchaseModule/order' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"id": 2,
"supplierId": 1,
"buyerId": 126,
"totalAmount": 1000,
"orderDate": "2025-08-01",
"deliveryDate": "2025-08-01",
"orderItems": [
{
"productId": 1,
"productName": "圆珠笔",
"amount": 100,
"warehouseId": 2,
"warehouseName": "仓库1",
"quantity": 1,
"price": 100
}
],
"remark": null
}'
false