|
@@ -1,6 +1,7 @@
|
|
package services
|
|
package services
|
|
|
|
|
|
import (
|
|
import (
|
|
|
|
+ "encoding/json"
|
|
"errors"
|
|
"errors"
|
|
"fmt"
|
|
"fmt"
|
|
"hongze/hongze_mfyx/models"
|
|
"hongze/hongze_mfyx/models"
|
|
@@ -78,7 +79,7 @@ func GetHaverEquallyOrderByUser10Min(userId, goodsId int) (orderCode string) {
|
|
var condition string
|
|
var condition string
|
|
var pars []interface{}
|
|
var pars []interface{}
|
|
endTime := time.Now().Add(-10 * time.Minute)
|
|
endTime := time.Now().Add(-10 * time.Minute)
|
|
- condition = ` AND user_id = ? AND goods_id = ? AND create_time > ? ORDER BY order_id DESC `
|
|
|
|
|
|
+ condition = ` AND order_status = 1 AND user_id = ? AND goods_id = ? AND create_time > ? ORDER BY order_id DESC `
|
|
pars = append(pars, userId, goodsId, endTime)
|
|
pars = append(pars, userId, goodsId, endTime)
|
|
orderList, e := order.GetCygxOrderList(condition, pars, 0, 1)
|
|
orderList, e := order.GetCygxOrderList(condition, pars, 0, 1)
|
|
if e != nil && e.Error() != utils.ErrNoRow() {
|
|
if e != nil && e.Error() != utils.ErrNoRow() {
|
|
@@ -107,7 +108,7 @@ func GetHaverEquallyOrderByUser10MinByActivty(userId, sourceId int) (orderCode s
|
|
var condition string
|
|
var condition string
|
|
var pars []interface{}
|
|
var pars []interface{}
|
|
endTime := time.Now().Add(-10 * time.Minute)
|
|
endTime := time.Now().Add(-10 * time.Minute)
|
|
- condition = ` AND source = 'activity' AND user_id = ? AND source_id = ? AND create_time > ? ORDER BY order_id DESC `
|
|
|
|
|
|
+ condition = ` AND order_status = 1 AND source = 'activity' AND user_id = ? AND source_id = ? AND create_time > ? ORDER BY order_id DESC `
|
|
pars = append(pars, userId, sourceId, endTime)
|
|
pars = append(pars, userId, sourceId, endTime)
|
|
orderList, e := order.GetCygxOrderList(condition, pars, 0, 1)
|
|
orderList, e := order.GetCygxOrderList(condition, pars, 0, 1)
|
|
if e != nil && e.Error() != utils.ErrNoRow() {
|
|
if e != nil && e.Error() != utils.ErrNoRow() {
|
|
@@ -142,21 +143,30 @@ func HandleOrderHandle(itemCallback *WechatPayCallback) {
|
|
err = errors.New("GetCygxOrderDetailByOrderCode, Err: " + e.Error())
|
|
err = errors.New("GetCygxOrderDetailByOrderCode, Err: " + e.Error())
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ go AddCygxOrderPayment(itemCallback) // 记录支付交易信息
|
|
|
|
+
|
|
|
|
+ if itemCallback.TradeState != "SUCCESS" { // 回调显示支付不成功,模版消息推送
|
|
|
|
+ if e != nil {
|
|
|
|
+ err = errors.New("支付失败, OrderCode: " + outTradeNo)
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ }
|
|
//修改过状态的不再二次处理
|
|
//修改过状态的不再二次处理
|
|
if orderDetail.OrderStatus == 2 {
|
|
if orderDetail.OrderStatus == 2 {
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
+ go AddCygxOrderPayment(itemCallback) // 记录支付交易信息
|
|
|
|
+
|
|
itemOrder := new(order.CygxOrder)
|
|
itemOrder := new(order.CygxOrder)
|
|
itemOrder.OrderCode = itemCallback.OutTradeNo
|
|
itemOrder.OrderCode = itemCallback.OutTradeNo
|
|
itemOrder.PayTime = itemCallback.SuccessTime
|
|
itemOrder.PayTime = itemCallback.SuccessTime
|
|
- //fmt.Println(itemCallback.Amount.PayerTotal / 100)
|
|
|
|
itemOrder.PayMoney = float64(float64(itemCallback.Amount.PayerTotal) / 100) // 金额分转换处理
|
|
itemOrder.PayMoney = float64(float64(itemCallback.Amount.PayerTotal) / 100) // 金额分转换处理
|
|
itemOrder.OrderStatus = 2
|
|
itemOrder.OrderStatus = 2
|
|
itemOrder.OutTradeCode = itemCallback.TransactionID
|
|
itemOrder.OutTradeCode = itemCallback.TransactionID
|
|
- fmt.Println("itemOrder.PayMoney", itemOrder.PayMoney)
|
|
|
|
- //文章处理逻辑
|
|
|
|
- if orderDetail.Source == utils.CYGX_OBJ_ARTICLE {
|
|
|
|
|
|
|
|
|
|
+ //文章处理逻辑 OrderType int `comment:"订单类型,1:畅读卡订单,2:单场付费订单"`
|
|
|
|
+ if orderDetail.OrderType == 1 {
|
|
itemUserCard := new(order.CygxOrderUserCard)
|
|
itemUserCard := new(order.CygxOrderUserCard)
|
|
itemUserCard.OrderCode = orderDetail.OrderCode
|
|
itemUserCard.OrderCode = orderDetail.OrderCode
|
|
itemUserCard.UserId = orderDetail.UserId
|
|
itemUserCard.UserId = orderDetail.UserId
|
|
@@ -185,12 +195,53 @@ func HandleOrderHandle(itemCallback *WechatPayCallback) {
|
|
err = errors.New("AddCygxOrderUserCard, Err: " + e.Error())
|
|
err = errors.New("AddCygxOrderUserCard, Err: " + e.Error())
|
|
return
|
|
return
|
|
}
|
|
}
|
|
- } else if orderDetail.Source == utils.CYGX_OBJ_ACTIVITY {
|
|
|
|
-
|
|
|
|
|
|
+ } else if orderDetail.OrderType == 2 {
|
|
|
|
+ //如果是活动,把单场付费信息的活动写入 用户虚拟资产表
|
|
|
|
+ itemOrderVirtualAsset := new(order.CygxOrderVirtualAsset)
|
|
|
|
+ itemOrderVirtualAsset.OrderCode = orderDetail.OrderCode
|
|
|
|
+ itemOrderVirtualAsset.UserId = orderDetail.UserId
|
|
|
|
+ itemOrderVirtualAsset.Mobile = orderDetail.Mobile
|
|
|
|
+ itemOrderVirtualAsset.Email = orderDetail.Email
|
|
|
|
+ itemOrderVirtualAsset.CompanyId = orderDetail.CompanyId
|
|
|
|
+ itemOrderVirtualAsset.CompanyName = orderDetail.CompanyName
|
|
|
|
+ itemOrderVirtualAsset.RealName = orderDetail.RealName
|
|
|
|
+ itemOrderVirtualAsset.SellerName = orderDetail.SellerName
|
|
|
|
+ itemOrderVirtualAsset.Source = orderDetail.Source
|
|
|
|
+ itemOrderVirtualAsset.SourceId = orderDetail.SourceId
|
|
|
|
+ itemOrderVirtualAsset.CreateTime = time.Now()
|
|
|
|
+ itemOrderVirtualAsset.ModifyTime = time.Now()
|
|
|
|
+ e = order.AddCygxOrderVirtualAsset(itemOrderVirtualAsset, itemOrder)
|
|
|
|
+ if e != nil {
|
|
|
|
+ err = errors.New("AddCygxOrderVirtualAsset, Err: " + e.Error())
|
|
|
|
+ return
|
|
|
|
+ }
|
|
}
|
|
}
|
|
fmt.Println(orderDetail.Source)
|
|
fmt.Println(orderDetail.Source)
|
|
- //var condition string
|
|
|
|
- //var pars []interface{}
|
|
|
|
|
|
+ return
|
|
|
|
+}
|
|
|
|
|
|
|
|
+func AddCygxOrderPayment(itemCallback *WechatPayCallback) {
|
|
|
|
+ var err error
|
|
|
|
+ defer func() {
|
|
|
|
+ if err != nil {
|
|
|
|
+ fmt.Println(err)
|
|
|
|
+ go utils.SendAlarmMsg(fmt.Sprint("处理订单回调信息失败 HandleOrderHandle, err:", err.Error()), 2)
|
|
|
|
+ }
|
|
|
|
+ }()
|
|
|
|
+ itemPay := new(order.CygxOrderPayment)
|
|
|
|
+ itemPay.OrderCode = itemCallback.OutTradeNo
|
|
|
|
+ itemPay.OutTradeCode = itemCallback.TransactionID
|
|
|
|
+ itemPay.PayBody = itemCallback.TradeStateDesc
|
|
|
|
+ jsonData, _ := json.Marshal(itemCallback)
|
|
|
|
+ itemPay.PayDetail = string(jsonData)
|
|
|
|
+ itemPay.PayMoney = float64(float64(itemCallback.Amount.PayerTotal) / 100) // 金额分转换处理
|
|
|
|
+ itemPay.PayStatus = itemCallback.TradeState
|
|
|
|
+ itemPay.CreateTime = time.Now()
|
|
|
|
+ itemPay.PaymentType = 1
|
|
|
|
+ e := order.AddCygxOrderPayment(itemPay)
|
|
|
|
+ if e != nil {
|
|
|
|
+ err = errors.New("AddCygxOrderPayment, Err: " + e.Error())
|
|
|
|
+ return
|
|
|
|
+ }
|
|
return
|
|
return
|
|
}
|
|
}
|