Basic business database model with three tables:
-customer info/table
-order/invoicing layout (and table)
-payments layout/table
I've got the relationships between then (simple, linked by customer ID) and everything seems to work, except one bug I can't seem to figure out.
The string of events, the way I have it set up (the way my husband wants it!) is this:
First thing, go to the customer info layout: fill in the relevant name and address stuff. A customer ID number is auto-assigned serially.
Then, I have a script to send it to an "order layout", to fill out order numbers, price, cost.
Then, depending on what's needed, it does some calculations and prints out an invoice or not. bla bla bla.
What I WANT it to do is go from the "customer info" layout to the "ordering layout", autofilling the customer number and name that have just been autofilled or typed, so that I can fill in the rest of the relevant data.
It won't do it. It goes to the "ordering" layout, but is at the previous record.
How can I get it to make that jump, ensuring that this new ordering record is related to the relevant customer info record?
I hope this is clear.
Thanks for your help. I'm not quite sure how all the script steps work yet, so there may be something quite obvious I'm missing.
SM
-customer info/table
-order/invoicing layout (and table)
-payments layout/table
I've got the relationships between then (simple, linked by customer ID) and everything seems to work, except one bug I can't seem to figure out.
The string of events, the way I have it set up (the way my husband wants it!) is this:
First thing, go to the customer info layout: fill in the relevant name and address stuff. A customer ID number is auto-assigned serially.
Then, I have a script to send it to an "order layout", to fill out order numbers, price, cost.
Then, depending on what's needed, it does some calculations and prints out an invoice or not. bla bla bla.
What I WANT it to do is go from the "customer info" layout to the "ordering layout", autofilling the customer number and name that have just been autofilled or typed, so that I can fill in the rest of the relevant data.
It won't do it. It goes to the "ordering" layout, but is at the previous record.
How can I get it to make that jump, ensuring that this new ordering record is related to the relevant customer info record?
I hope this is clear.
Thanks for your help. I'm not quite sure how all the script steps work yet, so there may be something quite obvious I'm missing.
SM