I have created a database for a client - Dry Cleaners
tbl_customers (id, customer name)
tbl_locations (id, customer_ID, rack number)
The idea is that they have a thousand locations where a customers dry cleaning gets placed... they enter a customer into the system and then add locations to that customer for each item of clothing on the rack.
Works great...
Now, they ask me if I can "reduce" the number of steps required in the following scenario...
Here's what they have to do now...
New customer comes in - they go to the customer list and start typing customer name into search box and see that nothing comes back
They now have to click "add new" so they can add new customer. They have to type the name again and save.
Now they have to search for that customer again so they can add "locations" to them.
How they would like it to work...
do a search for a customer such as "Charlie Brown" - nothing shows up in ajax dropdown of search box so they click "add customer" and it takes them to the add page with the name "Charlie Brown" already in the box - they click "save" and it takes them to the add location page for customer Charlie Brown.
Now sure how much of this is even possible in phpRunner since it would involve capturing a record ID as it is created and passing it to the next page.
Robert