cmbProductQuery

This commit is contained in:
李子铭 2025-03-17 12:39:35 +08:00
parent f0910f9ca8
commit 084b6f5874
1 changed files with 3 additions and 0 deletions

View File

@ -202,6 +202,9 @@ func (s *VoucherService) CmbProductQuery(ctx http.Context) error {
return ctx.JSON(400, err) return ctx.JSON(400, err)
} }
replyBytes, _ := json.Marshal(reply)
log.Warnf("CmbProductQuery reply: %v", string(replyBytes))
return ctx.JSON(200, reply) return ctx.JSON(200, reply)
} }