|
@@ -10,6 +10,7 @@ import (
|
|
|
|
|
|
"github.com/nats-io/nats.go"
|
|
|
"go.mongodb.org/mongo-driver/bson/primitive"
|
|
|
+ "go.mongodb.org/mongo-driver/mongo"
|
|
|
"infish.cn/comm"
|
|
|
"infish.cn/comm/pay"
|
|
|
)
|
|
@@ -65,3 +66,25 @@ func getPayOrder(ctx context.Context, query map[string]interface{}) (order *pay.
|
|
|
order.RealAmount = &amount
|
|
|
return
|
|
|
}
|
|
|
+
|
|
|
+// 更新订单
|
|
|
+func PayOrderUpdate() *comm.NatsMsgReplyer {
|
|
|
+ order := pay.Order{}
|
|
|
+ utils.ConsoleFormat(pay.PayOrderUpdateApi)
|
|
|
+ return &comm.NatsMsgReplyer{
|
|
|
+ Subject: pay.PayOrderUpdateApi,
|
|
|
+ Entity: func() interface{} { return &order },
|
|
|
+ Cb2: func(_ *nats.Msg, entity interface{}) (interface{}, error) {
|
|
|
+ order := entity.(*pay.Order)
|
|
|
+ ctx := context.Background()
|
|
|
+ res, err := updateOrder(ctx, order)
|
|
|
+ return res, err
|
|
|
+ },
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+func updateOrder(ctx context.Context, order *pay.Order) (result *mongo.UpdateResult, err error) {
|
|
|
+ result, err = repo.RepoUpdateSetDoc(&repo.RepoSession{Ctx: ctx, Client: db.GMongoDb}, repo.CollectionOrder, order.Id.Hex(), &order)
|
|
|
+
|
|
|
+ return
|
|
|
+}
|