Link to home
Start Free TrialLog in
Avatar of pentapod
pentapod

asked on

Design advice - create order form summarizing info from selected documents

We have a staff sales database in Notes 4.6.2 which contains the catalogue information (imported from Excel) for all items available to purchase by staff.  Each item is a separate document.  Every 3 months or so, all merchandise is deleted and the new catalogue is imported.

The users have a personal folder called "Shopping basket" and they move items they want to this folder.

We need to allow the users to select up to 10 documents in the shopping basket and create a new document summarizing the details from the selected documents in a printable order form format.  The users should select the documents to order, preview the form, then either cancel or confirm.  When they confirm the order, the order form would be saved.

The administration will also need a view in which they can list by item the number of users who have ordered it.

Design suggestions on the best way to handle these requirements, and code (if necessary), would be welcome.

...Pentapod
Avatar of mchampou
mchampou

When you are in a view and you select documents, you can alway use the database property called UnprocessedDocuments in an action button using script to get access to the selected documents.

The property will return a NotesDocumentCollection. This collection contains the notesdocument that were selected in the view.

Even if there is no "checkmark" in the leftmost column, the notescollection will always contain 1 document : the one that is currently selected by the cursor.

You can also make a check there (in the action button) on how many docs are selected (see the count property of the notesdocumentcollection).

Now that you know which document the user selected, you can use the notesuiworkspace class and "compose" a document right on the users screen. While the doc is in edit mode, you can "populate" fields (because you have access to the selected documents in the notesdocument collection) with info about the product they selected.

That form can have a "Confirm" and another "Cancel" button. The Confirm would save the doc and (because you would have written enough info into the order form) access the catalog to "add" one sale of each item.

I hope this helps a bit, let me know if you need more details.

mchampou
Avatar of pentapod

ASKER

HI Mchampou.

Looks like the right idea but I think I will need some code, I haven't done any manipulation of documents in LotusScript before.  Could you supply code?  Will add more points if you think necessary.

....Pentapod
Ok, I will provide you with some code, could you just give me a few hours (I'm in the middle of a big problem at work)

Mchampou
After thinking about it, could you please give me an email address I could send you a database that I am developping to show you the code you need ?

150 points is fine. But if you feel that I deserve more after looking at what I have fowarded you, then please feel free to give me more :-)

mchampou
pentapod@hotmail.com
Just to let you know, I sent you the database. If you need any help, just let me know.
Got it thanks, and it looks great.  I'm converting it to work with my forms - a few bugs but probably just my own mistakes, and I'm working on them.  If I have any major problems I'll certainly ask!

....Pentapod
ASKER CERTIFIED SOLUTION
Avatar of mchampou
mchampou

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial