mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Reload after adjusting Part attachments
This commit is contained in:
parent
ecb8e71d75
commit
a66bc2fe72
@ -37,7 +37,10 @@
|
|||||||
{{ block.super }}
|
{{ block.super }}
|
||||||
|
|
||||||
$("#new-attachment").click(function() {
|
$("#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() {
|
$("#attachment-table").on('click', '.attachment-edit-button', function() {
|
||||||
@ -45,8 +48,7 @@
|
|||||||
|
|
||||||
launchModalForm(button.attr('url'),
|
launchModalForm(button.attr('url'),
|
||||||
{
|
{
|
||||||
success: function() {
|
reload: true,
|
||||||
}
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -55,6 +57,7 @@
|
|||||||
|
|
||||||
launchDeleteForm(button.attr('url'), {
|
launchDeleteForm(button.attr('url'), {
|
||||||
success: function() {
|
success: function() {
|
||||||
|
location.reload();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user