POST api/RecSheetNoCheck
收货单上传(不审核)
Request Information
URI Parameters
None.
Body Parameters
单据信息
RecSheetName | Description | Type | Additional information |
---|---|---|---|
manualId | string |
None. |
|
moduleCode | string |
None. |
|
fromChannel | string |
None. |
|
channel | string |
None. |
|
sendSheetId | string |
None. |
|
checker | string |
None. |
|
createdBy | string |
None. |
|
createdDate | date |
None. |
|
sheetDate | date |
None. |
|
sheetTypeId | string |
None. |
|
remark | string |
None. |
|
RecSheetGoods | Collection of RecSheetGoods |
None. |
Request Formats
application/json, text/json
示例:
{ "manualId": "sample string 1", "moduleCode": "sample string 2", "fromChannel": "sample string 3", "channel": "sample string 4", "sendSheetId": "sample string 5", "checker": "sample string 6", "createdBy": "sample string 7", "createdDate": "2025-02-08T02:20:51.0408245+08:00", "sheetDate": "2025-02-08T02:20:51.0408245+08:00", "sheetTypeId": "sample string 8", "remark": "sample string 9", "recSheetGoods": [ { "goodsNo": "sample string 1", "barcode": "sample string 2", "quantity": 3.0, "balancePrice": 4.0, "remark": "sample string 5" }, { "goodsNo": "sample string 1", "barcode": "sample string 2", "quantity": 3.0, "balancePrice": 4.0, "remark": "sample string 5" } ] }
application/xml, text/xml
示例:
<RecSheet xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/F360Service.Models.RecSheet"> <RecSheetGoods> <RecSheetGoods> <balancePrice>4</balancePrice> <barcode>sample string 2</barcode> <goodsNo>sample string 1</goodsNo> <quantity>3</quantity> <remark>sample string 5</remark> </RecSheetGoods> <RecSheetGoods> <balancePrice>4</balancePrice> <barcode>sample string 2</barcode> <goodsNo>sample string 1</goodsNo> <quantity>3</quantity> <remark>sample string 5</remark> </RecSheetGoods> </RecSheetGoods> <channel>sample string 4</channel> <checker>sample string 6</checker> <createdBy>sample string 7</createdBy> <createdDate>2025-02-08T02:20:51.0408245+08:00</createdDate> <fromChannel>sample string 3</fromChannel> <manualId>sample string 1</manualId> <moduleCode>sample string 2</moduleCode> <remark>sample string 9</remark> <sendSheetId>sample string 5</sendSheetId> <sheetDate>2025-02-08T02:20:51.0408245+08:00</sheetDate> <sheetTypeId>sample string 8</sheetTypeId> </RecSheet>
application/x-www-form-urlencoded
示例:
Sample not available.
Response Information
Resource Description
ResponseName | Description | Type | Additional information |
---|---|---|---|
Flag | string |
None. |
|
MSG | string |
None. |
Response Formats
application/json, text/json
示例:
{ "flag": "sample string 1", "msg": "sample string 2" }
application/xml, text/xml
示例:
<Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/F360Service.Models"> <Flag>sample string 1</Flag> <MSG>sample string 2</MSG> </Response>