Use OrderArticle#create in receive form instead of Order#add_article
This commit is contained in:
parent
59c118a171
commit
033aa90698
6 changed files with 36 additions and 55 deletions
|
|
@ -11,6 +11,15 @@
|
|||
contentType: 'application/json; charset=UTF-8'
|
||||
});
|
||||
});
|
||||
|
||||
$(document).on('OrderArticle#create', function(e) {
|
||||
$.ajax({
|
||||
url: '#{receive_on_order_article_create_order_path(@order)}',
|
||||
type: 'get',
|
||||
data: {order_article_id: e.order_article_id},
|
||||
contentType: 'application/json; charset=UTF-8'
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
- title "Receiving #{@order.name}"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue