2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-18 13:05:42 +00:00

Delete a currency from the currency settings view

This commit is contained in:
Oliver Walters
2019-09-07 20:22:30 +10:00
parent 3188b0ab18
commit 55669c79c2
4 changed files with 22 additions and 2 deletions

View File

@ -88,6 +88,11 @@
var button = $(this);
var url = "/common/currency/" + button.attr('pk') + "/delete/";
launchModalForm(url, {
success: function() {
$("#currency-table").bootstrapTable('refresh');
},
});
});
$("#new-currency").click(function() {