diff --git a/constants/orders.go b/constants/orders.go index d6ffa7bf..7911782a 100644 --- a/constants/orders.go +++ b/constants/orders.go @@ -23,8 +23,8 @@ type ExchangeRateUnit interface{} type PayMethods string const ( - PAY_METHOD_CARD PayMethods = "CARD" - PAY_METHOD_VISA PayMethods = "VISA" + PAY_METHOD_CARD PayMethods = "CARD" //card + PAY_METHOD_VISA PayMethods = "VISA" //visa ) // 支付状态 diff --git a/server/upload/internal/logic/uploadlogologic.go b/server/upload/internal/logic/uploadlogologic.go index 7a2759ad..24c86e95 100644 --- a/server/upload/internal/logic/uploadlogologic.go +++ b/server/upload/internal/logic/uploadlogologic.go @@ -114,7 +114,11 @@ func (l *UploadLogoLogic) UploadLogo(req *types.UploadLogoReq, userinfo *auth.Us MysqlConn: l.svcCtx.MysqlConn, AwsSession: l.svcCtx.AwsSession, } - var resourceId string = hash.JsonHashKey(req.FileKey) + var hashKeyMap = make(map[string]interface{}, 2) + hashKeyMap["fileKey"] = req.FileKey + hashKeyMap["userId"] = userId + var resourceId string = hash.JsonHashKey(hashKeyMap) + uploadRes, err := upload.UploadFileByByte(&file.UploadBaseReq{ FileHash: resourceId, FileByte: ioData, @@ -123,6 +127,8 @@ func (l *UploadLogoLogic) UploadLogo(req *types.UploadLogoReq, userinfo *auth.Us UserId: userId, GuestId: guestId, Source: "upload-logo", + ResourceId: resourceId, + Refresh: 1, }) var logoUrl string diff --git a/service/repositories/image_handle.go b/service/repositories/image_handle.go index 69a45800..d32c9c82 100644 --- a/service/repositories/image_handle.go +++ b/service/repositories/image_handle.go @@ -163,8 +163,6 @@ func (l *defaultImageHandle) LogoCombine(ctx context.Context, in *LogoCombineReq } // 根据hash 查询数据资源 var hashKeyData = *in - hashKeyData.GuestId = 0 - hashKeyData.UserId = 0 hashKeyData.LogoUrl = in.LogoUrl var hashKeyDataMap map[string]interface{} hashKeyDataB, _ := json.Marshal(hashKeyData) @@ -319,6 +317,8 @@ func (l *defaultImageHandle) LogoCombine(ctx context.Context, in *LogoCombineReq ApiType: 2, UserId: in.UserId, GuestId: in.GuestId, + ResourceId: resourceId, + Refresh: 1, }) // logc.Infof(ctx, "合图--上传文件--结束时间:%v", time.Now().UTC()) endTimeUploadFile := time.Now().UnixMilli() //合图--处理--开始时间 diff --git a/service/repositories/order.go b/service/repositories/order.go index 31b935aa..ad87cc5b 100644 --- a/service/repositories/order.go +++ b/service/repositories/order.go @@ -152,14 +152,14 @@ type ( Currency string `json:"currency"` Country string `json:"country"` UserId int64 `json:"user_id"` - OrderSn string `json:"order_sn"` - DeliveryMethod int64 `json:"delivery_method"` - DeliveryAddress *OrderAddress `json:"delivery_address"` + OrderSn string `json:"order_sn"` // 订单编号 + DeliveryMethod int64 `json:"delivery_method"` // 收货类型 + DeliveryAddress *OrderAddress `json:"delivery_address"` // 订单收货地址 } CreatePrePaymentByDepositRes struct { ErrorCode basic.StatusResponse - OrderDetail gmodel.OrderDetail - OrderPay OrderPay + OrderDetail gmodel.OrderDetail // 订单详情 + OrderPay OrderPay // 支付详情 } /* 预支付--定金 */ @@ -173,8 +173,8 @@ type ( } CreatePrePaymentByBalanceRes struct { ErrorCode basic.StatusResponse - OrderDetail gmodel.OrderDetail - OrderPay OrderPay + OrderDetail gmodel.OrderDetail // 订单详情 + OrderPay OrderPay // 支付详情 } /* 预支付--尾款 */ @@ -186,7 +186,7 @@ type ( OriginalCurrency string `json:"original_currency"` // 原始货币 UserId int64 `json:"user_id"` CartIds []int64 `json:"cart_ids"` - DeliveryMethod int64 `json:"delivery_method"` + DeliveryMethod int64 `json:"delivery_method"` // 收货类型 DeliveryAddress *OrderAddress `json:"delivery_address"` // 收货地址 } CreateRes struct { @@ -202,18 +202,18 @@ type ( } DetailRes struct { ErrorCode basic.StatusResponse - OrderDetail gmodel.OrderDetail - OrderDetailOriginal OrderDetailOriginal + OrderDetail gmodel.OrderDetail // 订单详情 + OrderDetailOriginal OrderDetailOriginal // 订单详情--原始数据 } OrderDetailOriginal struct { - Status *gmodel.OrderStatus - OrderAmount *gmodel.OrderAmount - OrderAddress *gmodel.OrderAddress - OrderProduct []gmodel.OrderProductInter - ShoppingCartSnapshot []gmodel.FsShoppingCart - ShoppingProductSnapshot []gmodel.RelaFsProduct - StatusLink []gmodel.OrderStatus - PayStatusLink []gmodel.PayStatus + Status *gmodel.OrderStatus // 订单状态 + OrderAmount *gmodel.OrderAmount // 订单金额 + OrderAddress *gmodel.OrderAddress // 订单收货地址 + OrderProduct []gmodel.OrderProductInter // 订单商品 + ShoppingCartSnapshot []gmodel.FsShoppingCart // 订单购物车快照 + ShoppingProductSnapshot []gmodel.RelaFsProduct // 订单商品快照 + StatusLink []gmodel.OrderStatus // 订单状态链路 + PayStatusLink []gmodel.PayStatus // 订单支付状态链路 } /* 详情 */