miscReceipt_add.txt 803 Bytes
# ERP杂收单新增
curl --request POST \
  --url http://127.0.0.1:8889/wms/api/erp/v2/miscReceipt/add \
  --header 'Accept: */*' \
  --header 'Accept-Encoding: gzip, deflate, br' \
  --header 'Connection: keep-alive' \
  --header 'Content-Type: application/json' \
  --header 'Cookie: JSESSIONID=b76dc718-fe80-4711-9b7a-3108e3a47c42' \
  --header 'User-Agent: PostmanRuntime-ApipostRuntime/1.1.0' \
  --data '{
    "orderNo": "MISC-RCV20260601001",
    "orderType": "1",
    "qcFlag": "1",
    "makerName": "ERP",
    "items": [
        {
            "sku": "MAT001",
            "skuName": "测试物料",
            "poLine": "1",
            "skuSpec": "规格1",
            "lot": "LOT001",
            "quantity": 10,
            "uom": "PCS",
            "areaCode": "WH01"
        }
    ]
}'