curl --location --request POST 'https://auth.efris.kakasa.xyz/api/v1/efris/stock-adjust' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"adjustType": "105", //required
//101: Expired Goods
//102: Damaged Goods
//103: Personal Uses
//105: Raw Material(s)
//104: Others
"remarks": "Supplier Inc", //if adjustType = 104, it'\''s required
"branchId": "", //not required
"stockInItem": [
{
"itemCode": "DFOO1",
"quantity": 398, //50398
"unitPrice": 5500
}
]
}'