In effort to set up a form to create transactions.
In need of a functions/macros to retrieve multiple field data from a single selected Tiddler.
Case Scenario in my best pseudo articulation.
suppose a filter can list a group of tiddlers either tagged as vendors (i.e tag=vendor
) or my preferred way of clustering tiddlers by a fieldName (i.e group=vendor
). Each tiddlerVendor represent an individual merchant containing the following fieldValues:
vendor.contact.business.name
vendor.contact.business.payee.name
vendor.contact.business.phone
vendor.customer.identification.number
vendor.merchant.identification.number
In a tiddlerForm, users need to fill-out a few <$edit-text/> questions (i.e amount, discount, purchase.date, purchase.item); and select one tiddlerVendor (a merchant), from that vendor group list and/or the tagged list; upon selection, it retrieve all those multiple fields; to display it on the tiddlerForm (so that the user can see his/her selection data).
Finally a buttom to create a new tiddler with a unique dynamic title such as <<now "Entry#YYYY.0MM.0DD:0hh:0mm:0ss">>
- who’s fieldData is populated with the data collected from the <$edit-text/> form questionnaire (i.e amount, discount, purchase.date, purchase.item)
- Along with the multiple field names (listed above) populated by the data collected from that one SelectWidget merchant choice.