Lines 1080-1085
Note that permanent location is a code, and location may be an authval.
Link Here
|
1080 |
<input type="text" id="external_id" name="external_id" required="required"> |
1080 |
<input type="text" id="external_id" name="external_id" required="required"> |
1081 |
<span class="required">Required</span> |
1081 |
<span class="required">Required</span> |
1082 |
</li> |
1082 |
</li> |
|
|
1083 |
<li> |
1084 |
<label for="bundle_link">Add MARC link: </label> |
1085 |
<input type="checkbox" name="bundle_link"/> |
1086 |
</li> |
1083 |
</ol> |
1087 |
</ol> |
1084 |
</fieldset> |
1088 |
</fieldset> |
1085 |
</div> |
1089 |
</div> |
Lines 1599-1605
Note that permanent location is a code, and location may be an authval.
Link Here
|
1599 |
/* Send the data using post with external_id */ |
1603 |
/* Send the data using post with external_id */ |
1600 |
var posting = $.post({ |
1604 |
var posting = $.post({ |
1601 |
url: url, |
1605 |
url: url, |
1602 |
data: JSON.stringify({ external_id: $('#external_id').val()}), |
1606 |
data: JSON.stringify({ external_id: $('#external_id').val(), marc_link: $('#link').prop('checked') }), |
1603 |
contentType: "application/json; charset=utf-8", |
1607 |
contentType: "application/json; charset=utf-8", |
1604 |
dataType: "json" |
1608 |
dataType: "json" |
1605 |
}); |
1609 |
}); |
1606 |
- |
|
|