notice
This commit is contained in:
parent
e3f1959582
commit
7b927290bb
|
|
@ -48,6 +48,9 @@ func (s *VoucherService) CmbOrder(ctx http.Context) error {
|
||||||
return ctx.JSON(400, err)
|
return ctx.JSON(400, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
replyBytes, _ := json.Marshal(reply)
|
||||||
|
log.Warnf("cmbOrder reply: %v", string(replyBytes))
|
||||||
|
|
||||||
return ctx.JSON(200, reply)
|
return ctx.JSON(200, reply)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -122,6 +125,8 @@ func (s *VoucherService) CmbQuery(ctx http.Context) error {
|
||||||
return ctx.JSON(400, err)
|
return ctx.JSON(400, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
replyBytes, _ := json.Marshal(reply)
|
||||||
|
log.Warnf("cmbQuery reply: %v", string(replyBytes))
|
||||||
return ctx.JSON(200, reply)
|
return ctx.JSON(200, reply)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue