From 3f4f2d033f63296ad7e80415cfe2af41f136bfc0 Mon Sep 17 00:00:00 2001
From: jiangshuai <291802688@qq.com>
Date: 星期一, 13 十一月 2023 11:18:53 +0800
Subject: [PATCH] 修改文件服务器端口号
---
controllers/operation.go | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/controllers/operation.go b/controllers/operation.go
index a541b4d..08031a9 100644
--- a/controllers/operation.go
+++ b/controllers/operation.go
@@ -1,6 +1,7 @@
package controllers
import (
+ "context"
"encoding/json"
"errors"
"fmt"
@@ -684,7 +685,7 @@
return
}
if operation.SourceNumber != "" {
- go UpdateSalesDetailStatus(c, operation.SourceNumber)
+ go UpdateSalesDetailStatus(operation.SourceNumber)
}
util.ResponseFormat(c, code.Success, "鎿嶄綔鎴愬姛")
}
@@ -706,9 +707,9 @@
}
}
-func UpdateSalesDetailStatus(ctx *gin.Context, number string) {
+func UpdateSalesDetailStatus(number string) {
client := product_inventory.NewProductInventoryServiceClient(ProductInventoryServiceConn)
- _, err := client.UpdateSalesDetailStatus(ctx, &product_inventory.UpdateSalesDetailStatusRequest{
+ _, err := client.UpdateSalesDetailStatus(context.Background(), &product_inventory.UpdateSalesDetailStatusRequest{
Number: number,
SalesDetailStatus: "宸插嚭搴�",
})
--
Gitblit v1.8.0