Hi there
I'm current developing an addon for RMS that requires extra information to be collected for certain items in a sale, namely, a job number and a cost. I have created my own TransactionEntry table, called myTransactionEntry, which links to the RMS TransactionEntry table using the ID field. I'm hooking the AddItem method to collect the extra info with my own form and storing the info in a Session variable until the PrintReceipt hook fires upon which I write the values into my Table. The Transaction.Entries(n).PostID gives me the key to link the tables.
My problem is that I would like to persist the extra information into my table when the user puts the transaction on hold and then recalls it later. I can't see where to hook into the program to do this.
Any ideas would be appreciated.