curl --location --request POST 'http://localhost:8000/api/v1/stock-opname/sync' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": ["Stock Opname Harian 1", "Stock Opname Harian 2", "Stock Opname Mingguan"],
"date": ["2025-02-09", "2025-02-10", "2025-02-11"],
"type": ["DAILY", "DAILY", "WEEKLY"],
"approval_by": [1, 1, 2],
"is_draft": [0, 1, 0],
"notes": ["Catatan pertama", "Draft kedua", "Mingguan ketiga"],
"products": [
[
{
"id": 1,
"actual_stock": 100
},
{
"id": 2,
"actual_stock": 50
}
],
[
{
"id": 1,
"actual_stock": 95
}
],
[
{
"id": 1,
"actual_stock": 80
},
{
"id": 2,
"actual_stock": 45
},
{
"id": 3,
"actual_stock": 30
}
]
]
}'