Merge pull request #2044 from SchrodingersGat/new-line-item

Bug fix - "Add line item" button
This commit is contained in:
Oliver 2021-09-08 14:32:51 +10:00 committed by GitHub
commit 71ca60d679
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -201,7 +201,9 @@ $('#new-po-line').click(function() {
},
method: 'POST',
title: '{% trans "Add Line Item" %}',
onSuccess: reloadTable,
onSuccess: function() {
$('#po-line-table').bootstrapTable('refresh');
},
});
});