This commit is contained in:
邹宗楠
2022-11-22 16:17:38 +08:00
parent b834cad438
commit 86efceb44c
6 changed files with 35 additions and 50 deletions

View File

@@ -993,10 +993,15 @@ func (c *PurchaseHandler) OrderLogisticsStatus(orderId int64) (int64, error) {
}
// GetOrderTotalShopMoney 获取门店结算信息
func GetOrderTotalShopMoney(appOrgCode string, orderIds string, nextStartIndex string) (map[string]int64, string, error) {
func GetOrderTotalShopMoney(appOrgCode string, orderIds string, nextStartIndex string) (int64, string, error) {
return getAPI(appOrgCode, 0, "").GetSettleBillDetailV3(&order_getSettleBillDetailV3_request.OrderGetSettleBillDetailV3Param{
Size: 50,
OrderId: orderIds,
StartIndex: nextStartIndex,
})
}
// GetOrderDetail 获取订单详情
func GetOrderDetail(appOrgCode, vendorOrderID string) (*order_orderDetail_response.ShopOrderDetail, error) {
return getAPI(appOrgCode, 0, "").GetTiktokOrderDetail(vendorOrderID)
}