Ok Assume Order Seq ID is in a seperate field, because OrderID would be a BAD name for it since you would OrderID 1 each day if I understand.
One way that is simplestic, is to do a COUNT(OrderID) where OrderDate = Today and then add one to that. If there are no orders, it returns zero (+1) gives you 1 for the first one of the day. The problem with this approach is the time lag between starting an order and storing it in the database might allow duplicate Seq. numbers with a shared DB. Another approach would be to have a parmater table and in that have the daily SEQ number last used and the DATE you are working on. If the date is not equal to TODAY, Reset to 1 and update the date. If the date is equal, grab the number, add 1 to it, update the parameter table and drive on. I usually like to write a function to handle the SEQ number. THis approach has little time between getting the number and updating it. Still not 100% against duplicates, but I have used this approach many times and have yet to have a duplicate generated, even with 8 users on the system.