POST api/SaleSheet
Request Information
URI Parameters
None.
Body Parameters
SaleSheetName | Description | Type | Additional information |
---|---|---|---|
SheetNo | string |
None. |
|
status | integer |
None. |
|
channelcode | string |
None. |
|
Createdby | string |
None. |
|
CreatedDate | date |
None. |
|
Lastmodby | string |
None. |
|
LastmodDate | date |
None. |
|
checker | string |
None. |
|
checkdate | date |
None. |
|
Remark | string |
None. |
|
StockAdjGoods | Collection of SaleSheetGoods |
None. |
Request Formats
application/json, text/json
示例:
{ "sheetNo": "sample string 1", "status": 2, "channelcode": "sample string 3", "createdby": "sample string 4", "createdDate": "2025-04-08T10:50:13.9741597+08:00", "lastmodby": "sample string 6", "lastmodDate": "2025-04-08T10:50:13.9741597+08:00", "checker": "sample string 8", "checkdate": "2025-04-08T10:50:13.9741597+08:00", "remark": "sample string 10", "stockAdjGoods": [ { "barCode": "sample string 1", "balanceprice": 2.0, "quantity": 3.0, "remark": "sample string 4" }, { "barCode": "sample string 1", "balanceprice": 2.0, "quantity": 3.0, "remark": "sample string 4" } ] }
application/xml, text/xml
示例:
<SaleSheet xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/F360Service.Models.SaleSheet"> <CreatedDate>2025-04-08T10:50:13.9741597+08:00</CreatedDate> <Createdby>sample string 4</Createdby> <LastmodDate>2025-04-08T10:50:13.9741597+08:00</LastmodDate> <Lastmodby>sample string 6</Lastmodby> <Remark>sample string 10</Remark> <SheetNo>sample string 1</SheetNo> <StockAdjGoods> <SaleSheetGoods> <BarCode>sample string 1</BarCode> <Quantity>3</Quantity> <Remark>sample string 4</Remark> <balanceprice>2</balanceprice> </SaleSheetGoods> <SaleSheetGoods> <BarCode>sample string 1</BarCode> <Quantity>3</Quantity> <Remark>sample string 4</Remark> <balanceprice>2</balanceprice> </SaleSheetGoods> </StockAdjGoods> <channelcode>sample string 3</channelcode> <checkdate>2025-04-08T10:50:13.9741597+08:00</checkdate> <checker>sample string 8</checker> <status>2</status> </SaleSheet>
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>