Merge remote-tracking branch 'inventree/master'

This commit is contained in:
Oliver Walters 2019-05-05 01:07:35 +10:00
commit d218f07940
2 changed files with 8 additions and 4 deletions

View File

@ -37,7 +37,10 @@
{{ block.super }}
$("#new-attachment").click(function() {
launchModalForm("{% url 'part-attachment-create' %}?part={{ part.id }}");
launchModalForm("{% url 'part-attachment-create' %}?part={{ part.id }}",
{
reload: true,
});
});
$("#attachment-table").on('click', '.attachment-edit-button', function() {
@ -45,8 +48,7 @@
launchModalForm(button.attr('url'),
{
success: function() {
}
reload: true,
});
});
@ -55,6 +57,7 @@
launchDeleteForm(button.attr('url'), {
success: function() {
location.reload();
}
});
});

View File

@ -619,3 +619,4 @@ class SupplierPartDelete(AjaxDeleteView):
model = SupplierPart
success_url = '/supplier/'
ajax_template_name = 'company/partdelete.html'
ajax_form_title = 'Delete Supplier Part'