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

Fixed bugs in Inventree/views.py

- Need to pass request.FILES to the form! (duh!) 
 - Prevent form data from being saved twice
This commit is contained in:
Oliver
2018-05-03 23:40:27 +10:00
parent 68cf6919a7
commit bc716e25f7
4 changed files with 15 additions and 6 deletions

View File

@ -96,6 +96,11 @@ class PartImage(AjaxUpdateView):
ajax_form_title = 'Upload Part Image'
form_class = PartImageForm
def get_data(self):
return {
'success': 'Updated part image',
}
class PartEdit(AjaxUpdateView):
model = Part