POST Api/Service/Order/UpdatePurchasePayment
更新采购单收付款项
Request Information
URI Parameters
None.
Body Parameters
设置参数
SpeedPower.Utility.Models.Project.Orders.Service.UpdatePurchasePaymentModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ID |
父级ID |
globally unique identifier |
None. |
| ClaimlPrice |
操作价格 |
decimal number |
None. |
| ServicePrice |
服务价格 |
decimal number |
None. |
| Confirmed |
是否已确认 |
boolean |
None. |
| Reconciled |
是否已对账 |
boolean |
None. |
| TransactionId |
交易流水号 |
string |
String length: inclusive between 0 and 200 |
| Remarks |
备注内容 |
string |
String length: inclusive between 0 and 500 |
Request Formats
application/json, text/json
Sample:
{
"ID": "eb340a8e-8c84-4951-8ee5-ffede0caa127",
"ClaimlPrice": 2.1,
"ServicePrice": 3.1,
"Confirmed": true,
"Reconciled": true,
"TransactionId": "sample string 6",
"Remarks": "sample string 7"
}
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"
}