diff --git a/BBWY.Client/APIServices/BatchPurchaseService.cs b/BBWY.Client/APIServices/BatchPurchaseService.cs
index 372d4584..71ae568f 100644
--- a/BBWY.Client/APIServices/BatchPurchaseService.cs
+++ b/BBWY.Client/APIServices/BatchPurchaseService.cs
@@ -177,12 +177,27 @@ namespace BBWY.Client.APIServices
///
///
///
- public ApiResponse UpdatePackState(string orderId, PackState PackState)
+ public ApiResponse UpdatePackMoney(string orderId, decimal PackMoney)
{
- return SendRequest(globalContext.BBYWApiHost, "api/BatchPurchase/UpdatePackState", new
+ return SendRequest(globalContext.BBYWApiHost, "api/BatchPurchase/UpdatePackMoney", new
{
orderId,
- PackState
+ PackMoney
+ }, null, HttpMethod.Post);
+ }
+
+ ///
+ /// 修改采购单状态
+ ///
+ ///
+ ///
+ ///
+ public ApiResponse UpdatePurchaseOrderState(string orderId, PurchaseOrderState PurchaseOrderState)
+ {
+ return SendRequest(globalContext.BBYWApiHost, "api/BatchPurchase/UpdatePurchaseOrderState", new
+ {
+ orderId,
+ PurchaseOrderState
}, null, HttpMethod.Post);
}
diff --git a/BBWY.Client/APIServices/PackTaskService.cs b/BBWY.Client/APIServices/PackTaskService.cs
index 0706efb2..66c9b75c 100644
--- a/BBWY.Client/APIServices/PackTaskService.cs
+++ b/BBWY.Client/APIServices/PackTaskService.cs
@@ -136,13 +136,13 @@ namespace BBWY.Client.APIServices
, null, HttpMethod.Post);
}
- public ApiResponse