diff --git a/BBWY.Client/APIServices/BatchPurchaseService.cs b/BBWY.Client/APIServices/BatchPurchaseService.cs
index b1978a7c..e3ff0f0f 100644
--- a/BBWY.Client/APIServices/BatchPurchaseService.cs
+++ b/BBWY.Client/APIServices/BatchPurchaseService.cs
@@ -168,6 +168,36 @@ namespace BBWY.Client.APIServices
}, null, HttpMethod.Post);
}
+ ///
+ /// 修改打包状态
+ ///
+ ///
+ ///
+ ///
+ public ApiResponse UpdatePackMoney(string orderId, decimal PackMoney)
+ {
+ return SendRequest(globalContext.BBYWApiHost, "api/BatchPurchase/UpdatePackMoney", new
+ {
+ orderId,
+ 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