Browse Source

修正了座椅查询的路由错误

pull/156/head
allanwei 3 years ago
parent
commit
bb1f62663c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      web/controllers/report/CustomizedQuery.rest.go

+ 1
- 1
web/controllers/report/CustomizedQuery.rest.go View File

@ -146,7 +146,7 @@ func RegisterRouteMappingOfSeatQueryInCustomizedQuery(party router.Party, servic
}
urlParameters := ctx.URLParams()
var status string
if status, ok = urlParameters["serialorderid"]; !ok {
if status, ok = urlParameters["status"]; !ok {
status = ""
}
var serialOrderId string


Loading…
Cancel
Save