6 <& /util/import_javascript.mas, classes => [ ] &>
8 <button class="btn btn-primary" id="stock_detail_page_obsolete_stock">Obsolete This Stock</button>
12 jQuery(document).ready(function () {
13 jQuery('#stock_detail_page_obsolete_stock').click(function(){
15 url : '/stock/obsolete?stock_id=<% $stock_id %>&is_obsolete=1',
16 beforeSend : function() {
17 jQuery('#working_modal').modal('show');
19 success: function(response){
20 console.log(response);
21 jQuery('#working_modal').modal('hide');
22 alert('Successfully obsoleted!');
25 error: function(response){
26 jQuery('#working_modal').modal('hide');
27 alert("Error obsoleting stock.");