POST api/OrderAssigned/SaveOrderProductJMLMP?DomainId={DomainId}&AccountId={AccountId}&PersonId={PersonId}
引单修改,修改引单的产品数量
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| DomainId |
域Id |
globally unique identifier |
None. |
| AccountId |
账户Id |
globally unique identifier |
None. |
| PersonId |
人员Id |
globally unique identifier |
None. |
Body Parameters
OrderProductJMLMPVM| Name | Description | Type | Additional information |
|---|---|---|---|
| DeliveryOrderID | string |
None. |
|
| CustomerName | string |
None. |
|
| PersonName | string |
None. |
|
| CustomerID | string |
None. |
|
| OrderNumber | string |
None. |
|
| OrderType | string |
None. |
|
| Remark | string |
None. |
|
| TotalAmount | decimal number |
None. |
|
| ProductList | Collection of ProductJMLMP |
None. |
Request Formats
application/json, text/json
Sample:
{
"DeliveryOrderID": "sample string 1",
"CustomerName": "sample string 2",
"PersonName": "sample string 3",
"CustomerID": "sample string 4",
"OrderNumber": "sample string 5",
"OrderType": "sample string 6",
"Remark": "sample string 7",
"TotalAmount": 8.1,
"ProductList": [
{
"Remark": "sample string 1",
"UseTypeKey": "sample string 2",
"StockStatus": "sample string 3",
"ProductID": "sample string 4",
"Count": 5.0,
"Price": 6.0
},
{
"Remark": "sample string 1",
"UseTypeKey": "sample string 2",
"StockStatus": "sample string 3",
"ProductID": "sample string 4",
"Count": 5.0,
"Price": 6.0
}
]
}
application/xml, text/xml
Sample:
<OrderProductJMLMPVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JT.VSFA.Entity.DTO">
<CustomerID>sample string 4</CustomerID>
<CustomerName>sample string 2</CustomerName>
<DeliveryOrderID>sample string 1</DeliveryOrderID>
<OrderNumber>sample string 5</OrderNumber>
<OrderType>sample string 6</OrderType>
<PersonName>sample string 3</PersonName>
<ProductList>
<ProductJMLMP>
<Count>5</Count>
<Price>6</Price>
<ProductID>sample string 4</ProductID>
<Remark>sample string 1</Remark>
<StockStatus>sample string 3</StockStatus>
<UseTypeKey>sample string 2</UseTypeKey>
</ProductJMLMP>
<ProductJMLMP>
<Count>5</Count>
<Price>6</Price>
<ProductID>sample string 4</ProductID>
<Remark>sample string 1</Remark>
<StockStatus>sample string 3</StockStatus>
<UseTypeKey>sample string 2</UseTypeKey>
</ProductJMLMP>
</ProductList>
<Remark>sample string 7</Remark>
<TotalAmount>8.1</TotalAmount>
</OrderProductJMLMPVM>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ObjectNone.
Response Formats
application/json, text/json
Sample:
{}
application/xml, text/xml
Sample:
<z:anyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />