Skip to content

Commit

Permalink
DIS-34 Local ILL
Browse files Browse the repository at this point in the history
Correct sending volume id for local ill requests
  • Loading branch information
mdnoble73 committed Jan 3, 2025
1 parent 66ed1af commit ba9d4e3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions code/web/interface/themes/responsive/js/aspen.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions code/web/interface/themes/responsive/js/aspen/record.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ AspenDiscovery.Record = (function () {
return false;
},

submitLocalIllRequest: function (module, id, volume) {
submitLocalIllRequest: function (module, id) {
if (Globals.loggedIn) {
document.body.style.cursor = "wait";
var acceptFeeField = $('#acceptFee');
Expand All @@ -158,7 +158,7 @@ AspenDiscovery.Record = (function () {
pickupLocation: $('#pickupLocationSelect').val(),
catalogKey: $('#catalogKey').val(),
note: $('#note').val(),
volumeId: $('#volume').val()
volumeId: $('#volumeId').val()
};
var url = Globals.path + "/" + module + "/" + id + "/AJAX?method=submitLocalIllRequest";
$.getJSON(url, params, function (data) {
Expand Down

0 comments on commit ba9d4e3

Please sign in to comment.