|
@@ -63,6 +63,22 @@ func getPayRefund(ctx context.Context, query map[string]interface{}) (refund *pa
|
|
|
return
|
|
|
}
|
|
|
|
|
|
+// 更新退款
|
|
|
+func PayRefundUpdate() *comm.NatsMsgReplyer {
|
|
|
+ refund := pay.ReFund{}
|
|
|
+ utils.ConsoleFormat(pay.PayRefundUpdateApi)
|
|
|
+ return &comm.NatsMsgReplyer{
|
|
|
+ Subject: pay.PayRefundUpdateApi,
|
|
|
+ Entity: func() interface{} { return &refund },
|
|
|
+ Cb2: func(_ *nats.Msg, entity interface{}) (interface{}, error) {
|
|
|
+ refund := entity.(*pay.ReFund)
|
|
|
+ ctx := context.Background()
|
|
|
+ res, err := updateRefund(ctx, refund)
|
|
|
+ return res, err
|
|
|
+ },
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
func updateRefund(ctx context.Context, refund *pay.ReFund) (result *mongo.UpdateResult, err error) {
|
|
|
refund.UpdateTime = time.Now()
|
|
|
result, err = repo.RepoUpdateSetDoc(&repo.RepoSession{Ctx: ctx, Client: db.GMongoDb}, repo.CollectionRefund, refund.Id.Hex(), &refund)
|