Lines 1248-1253
Note that permanent location is a code, and location may be an authval.
Link Here
|
1248 |
<input type="text" id="external_id" name="external_id" required="required"> |
1248 |
<input type="text" id="external_id" name="external_id" required="required"> |
1249 |
<span class="required">Required</span> |
1249 |
<span class="required">Required</span> |
1250 |
</li> |
1250 |
</li> |
|
|
1251 |
<li> |
1252 |
<label for="bundle_link">Add MARC link: </label> |
1253 |
<input type="checkbox" name="bundle_link"/> |
1254 |
</li> |
1251 |
</ol> |
1255 |
</ol> |
1252 |
</fieldset> |
1256 |
</fieldset> |
1253 |
</div> |
1257 |
</div> |
Lines 1757-1763
Note that permanent location is a code, and location may be an authval.
Link Here
|
1757 |
/* Send the data using post with external_id */ |
1761 |
/* Send the data using post with external_id */ |
1758 |
var posting = $.post({ |
1762 |
var posting = $.post({ |
1759 |
url: url, |
1763 |
url: url, |
1760 |
data: JSON.stringify({ external_id: $('#external_id').val()}), |
1764 |
data: JSON.stringify({ external_id: $('#external_id').val(), marc_link: $('#link').prop('checked') }), |
1761 |
contentType: "application/json; charset=utf-8", |
1765 |
contentType: "application/json; charset=utf-8", |
1762 |
dataType: "json" |
1766 |
dataType: "json" |
1763 |
}); |
1767 |
}); |
1764 |
- |
|
|