Skip to content

Commit

Permalink
Merge pull request smarty-php#92 from think-ahead/ticket-#5479-fix-if…
Browse files Browse the repository at this point in the history
…-same-starttime-menus-ignore-rowno

#5479: 開始時刻が同一の場合、メニューの並び順(行番号)が無視されてしまう
  • Loading branch information
think-katou authored Mar 14, 2022
2 parents 2d26dbb + f8cc7a8 commit d7b580c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/controllers/servers_controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -8091,8 +8091,8 @@ function wsSearchStoreTransaction($sessionid, $param)
" . $trantype1 . $condition . $storecond . "
GROUP BY transaction.transcode, details.rowno
ORDER BY " . $misc_order . " transaction.TRANSCODE,
details.STAFFCODE,
details.STARTTIME,
details.STAFFCODE,
details.ROWNO,
transaction.PRIORITYTYPE,
transaction.TRANSCODE, " . $order_trantype . " details.ROWNO";
Expand Down

0 comments on commit d7b580c

Please sign in to comment.