POST Api/Invoke/UpdatePurchaseOrderNumber
更新采购单外部采购单号
Request Information
URI Parameters
None.
Body Parameters
设置参数
SpeedPower.Utility.Models.Project.Orders.Service.UpdatePurchaseOrderNumberModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ID |
设置ID |
globally unique identifier |
None. |
| OrderId |
父级ID |
globally unique identifier |
None. |
| PurchaseOrderNumber |
采购订单号 |
string |
Required String length: inclusive between 0 and 50 |
| TotalPrice |
采购总价 |
decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": "c10bf0bf-f3a9-4e65-aaf1-19e5c1b953fd",
"OrderId": "2df2f13c-93f9-4e8b-824c-e6cf39b9c5e8",
"PurchaseOrderNumber": "sample string 3",
"TotalPrice": 4.1
}
Response Information
Resource Description
更新采购单外部采购单号
SpeedPower.Utility.Models.Helper.ResultMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Succeed |
操作是否成功 |
boolean |
None. |
| Message |
操作消息 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Succeed": true,
"Message": "sample string 2"
}