POST Api/Invoke/UpdatePurchasePayable
更新采购单付款项
Request Information
URI Parameters
None.
Body Parameters
设置参数
SpeedPower.Utility.Models.Project.Orders.Service.UpdatePurchasePayableModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ID |
设置ID |
globally unique identifier |
None. |
| PurchaseOrderId |
父级ID |
globally unique identifier |
None. |
| PayPrice |
支付金额 |
decimal number |
None. |
| PaymentTag |
支付路由 |
string |
String length: inclusive between 0 and 20 |
| PaymentCode |
支付源代码 |
string |
String length: inclusive between 0 and 20 |
| PaymentAccount |
支付账户名称 |
string |
Required String length: inclusive between 0 and 128 |
| TransactionId |
交易流水号 |
string |
String length: inclusive between 0 and 200 |
| Reconciled |
是否已对账 |
boolean |
None. |
| Remarks |
备注内容 |
string |
String length: inclusive between 0 and 500 |
Request Formats
application/json, text/json
Sample:
{
"ID": "6d6c4a46-be0c-4694-a0d0-a183a4b9e722",
"PurchaseOrderId": "58054ad4-b1bf-4559-8b31-11026258f9c8",
"PayPrice": 3.1,
"PaymentTag": "sample string 4",
"PaymentCode": "sample string 5",
"PaymentAccount": "sample string 6",
"TransactionId": "sample string 7",
"Reconciled": true,
"Remarks": "sample string 9"
}
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"
}