ILLiad Symphony Circulation System Addon
This addon is only compatible with ILLiad version 9.0 and higher.
Name | Version | Author | Description |
---|---|---|---|
Symphony Circulation | 1.0.7 | Atlas Systems | This is a system addon for the ILLiad Client to integrate with a Symphony catalog via the Symphony APIÂ for circulation processing. |
Download
Download zip file:
SymphonyCirculation_v1.0.7.zipDo not overwrite your custom mappings
If you are updating to a newer version of this addon, do not replace the ItemTypeMapping.lua or SymphonyAPIServiceClient.Datamapping.lua files. These files often contain institution-specific data mapping that should not be overwritten by the default values provided in the zip file on this page.
Release Notes
- v1.0.7:
- Updated the descriptions used for the UseLoanPeriodForItemType and DefaultItemType settings for better clarity.
- Updated the Readme.html file to fix minor errors and to include an additional section describing the addon's item type mapping functionality.Â
Installation
The addon is a system addon for the ILLiad Client. The addon must be installed on each client where Symphony functionality is used; any ILLiad Client performing checking in from lending libraries, checking in borrowing items from patrons, marking lending items as found, and handling lending returns. See Installing and Uninstalling Client Addons for more information.
Configuration
Configuring Required ILLiad Customization Keys
The ILLiad Symphony Circulation System Addon uses the Symphony API rather than NCIP/SIP/SIP2 standards to integrate the ILLiad Client with a Symphony catalog. In order to integrate your Symphony catalog with ILLiad using the Symphony API, the following customization keys must be configured in the ILLiad Customization Manager (under Web Interface | Symphony) prior to using the addon:
SymphonyAPIAddress
SymphonyAPIClientID
SymphonyAPILibraryID
SymphonyAPIStaffUsername
SymphonyAPIStaffPassword
SymphonyUserLookupField
SymphonyUserLookupType
Configuring Addon Settings
Addon settings are configured in the Manage Addons form.
Setting Name | Default Value | Type | Description |
---|---|---|---|
ErrorQueueBorrowing | Symphony Errors | String | Defines the name of the queue to which borrowing transactions will be routed if there is an error in processing. |
BorrowingCheckedInFromLibraryRouting | Awaiting Customer Contact,Customer Notified via E-Mail | String | Comma separated list of statuses a request is routed to after successfully creating a record in Symphony and placing the item on hold for the user. |
SymphonyBarcodeMapping | TN:{TableField:Transaction.TransactionNumber} | String | Format for barcode mapping in Symphony. |
PickupLocationField | {TableField:User.NVTGC} | String | Defines the field in which the pickup location is stored. |
PickupLocationMappings | String | Comma separated list of ILLiad pickup locations mapping to the Symphony library. e.g. ILL=MAIN,LAW=LAW. | |
CallNumberMapping | TN{TableField:Transaction.TransactionNumber} | String | Format for call number used in Symphony. |
SymphonyItemHomeLocationMapping | STACKS | String | Defines the mapping to indicate the home location for the item. |
HistoryEntryCreateBibRecordSuccess | Symphony: Bib Record created. (Bib Key: {bibKey}) | String | The history entry made when the bib record is created in Symphony successfully. Leave blank for no history entry. |
HistoryEntryPlaceHoldSuccess | Symphony: Item placed on hold. (Hold Key: {holdKey}) | String | The history entry made when the hold is placed in Symphony successfully. Leave blank for no history entry. |
NotePrefix | Symphony: | String | Prefix to add before notes added to transactions processed by this addon. |
UseLoanPeriodForItemType | Checked | Boolean | If true, addon will use the values in ItemTypeMapping.lua to determine item type. |
DefaultItemType | ILL | String | Item type to use if loan period mapping is not defined or if UseLoanPeriodForItemType is set to false. The value of this setting must match an item type in Symphony. |
LibraryUseOnlyItemType | String | If not empty, this item type will be used for all items marked Library Use Only. | |
LibraryUseOnlyPickupLocation | String | If not empty, this pickup location will be used for all items marked Library Use Only. | |
OverrideOnUserBlocked | Checked | Boolean | If true, the addon will place a hold even if the user is blocked in Symphony. |
OverrideCode | String | Override code to use when overriding a user block. | |
ItemPrice | 50.00 | String | Price value that item records will be given in Symphony. Currency code is USD. |
CheckInStatusList | CHECKED_OUT | String | Comma-separated list of Symphony statuses. If an item is in any of these statuses when checked in in ILLiad, a Check In message will be sent to Symphony. |
General Notes
- The system addon works in conjunction with functionality that is performed in the ILLiad Staff Client. If a request is modified in an application other than the ILLiad Client (such as Web Circ) the Symphony processing functionality will not be initiated. Each Client that will be performing the Check in from lending library functionality will need to have this addon or the Symphony processing functionality will not be initiated.
- Users must have a barcode defined in the field specified in the SymphonyUserLookupField customization key. If the barcode is not set the Symphony calls will fail.
- The Symphony functionality will only work for ILLiad requests whose request type is set to Loan.
Borrowing Functionality
The Symphony functionality will be initiated when using the Check In button on the Check In from Lending Library form. Symphony calls are made to create a bib record item with an item and place it on hold for the user. If an error occurs during either Symphony call the request will be routed to the ErrorQueueBorrowing defined in the addon settings. The request will be routed to Awaiting Post Receipt Processing and any of the queues defined in the BorrowingCheckedInFromLibraryRouting setting if no errors were encountered.
Process
- In the ILLiad Client on the main form, navigate to the Borrowing ribbon and click on Check In From Lending Library.
- Search for the request that is being checked in.
- Click on Check In. The Symphony processing will happen after the standard ILLiad processing occurs.
DataMapping Customization
The SymphonyAPIServiceClient.DataMapping.lua file allows for customization of data that is sent via Symphony calls.
Item Type Mapping
The ItemTypeMapping.lua file allows for customization of item types assigned to items created in Symphony based on their loan periods in ILLiad.
Pickup Location Mapping
Pickup location mapping is based on the PickupLocationMappings and PickupLocationField addon settings.
Tagging
The SymphonyAPIServiceClient.Datamapping.lua file allows for tagged values. The tagging syntax will look for values inside of curly braces( i.e., { }) and must match a specific format.
The TableField replacement will retrieve a value from an ILLiad table and field. The format is the TableName, followed by a period, followed by the FieldName. Transaction, User, and Lender are the only allowed table names for tag replacement.Â
ExamplesÂ
- {TableField:Transaction.ReferenceNumber} would be replaced with the ReferenceNumber of the ILLiad request.
- {TableField:User.LastName} would be replaced with the LastName of the user associated with the ILLiad request.