2019-04-27 12:18:07 +00:00
|
|
|
"""
|
|
|
|
Django views for interacting with Part app
|
|
|
|
"""
|
|
|
|
|
2018-04-16 14:32:02 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import unicode_literals
|
2018-04-15 11:29:24 +00:00
|
|
|
|
2018-04-15 15:02:17 +00:00
|
|
|
from django.shortcuts import get_object_or_404
|
2018-04-25 04:10:56 +00:00
|
|
|
|
2019-04-16 12:32:43 +00:00
|
|
|
from django.urls import reverse_lazy
|
2018-04-14 15:18:12 +00:00
|
|
|
from django.views.generic import DetailView, ListView
|
2019-04-18 13:12:29 +00:00
|
|
|
from django.forms.models import model_to_dict
|
2018-04-13 12:36:59 +00:00
|
|
|
|
2018-04-22 13:07:23 +00:00
|
|
|
from company.models import Company
|
2018-04-15 15:02:17 +00:00
|
|
|
from .models import PartCategory, Part, BomItem
|
2018-04-22 11:54:12 +00:00
|
|
|
from .models import SupplierPart
|
|
|
|
|
2018-04-29 02:25:07 +00:00
|
|
|
from .forms import PartImageForm
|
2018-04-22 11:54:12 +00:00
|
|
|
from .forms import EditPartForm
|
|
|
|
from .forms import EditCategoryForm
|
|
|
|
from .forms import EditBomItemForm
|
2019-04-13 12:46:26 +00:00
|
|
|
from .forms import BomExportForm
|
2018-04-22 11:54:12 +00:00
|
|
|
|
|
|
|
from .forms import EditSupplierPartForm
|
2018-04-15 15:02:17 +00:00
|
|
|
|
2019-04-16 12:32:43 +00:00
|
|
|
from InvenTree.views import AjaxView, AjaxCreateView, AjaxUpdateView, AjaxDeleteView
|
2018-04-13 12:36:59 +00:00
|
|
|
|
2019-04-27 12:18:07 +00:00
|
|
|
from InvenTree.helpers import DownloadFile, str2bool
|
2018-04-27 15:16:47 +00:00
|
|
|
|
2019-04-16 12:32:43 +00:00
|
|
|
|
2018-04-14 15:18:12 +00:00
|
|
|
class PartIndex(ListView):
|
2019-04-27 12:18:07 +00:00
|
|
|
""" View for displaying list of Part objects
|
|
|
|
"""
|
2018-04-14 15:18:12 +00:00
|
|
|
model = Part
|
2018-05-04 08:53:39 +00:00
|
|
|
template_name = 'part/category.html'
|
2018-04-14 15:18:12 +00:00
|
|
|
context_object_name = 'parts'
|
2018-04-13 12:36:59 +00:00
|
|
|
|
2018-04-14 15:18:12 +00:00
|
|
|
def get_queryset(self):
|
2018-04-23 23:06:30 +00:00
|
|
|
return Part.objects.all() # filter(category=None)
|
2018-04-13 12:36:59 +00:00
|
|
|
|
2018-04-14 15:18:12 +00:00
|
|
|
def get_context_data(self, **kwargs):
|
2018-04-13 14:08:30 +00:00
|
|
|
|
2018-04-15 10:10:49 +00:00
|
|
|
context = super(PartIndex, self).get_context_data(**kwargs).copy()
|
2018-04-13 14:08:30 +00:00
|
|
|
|
2018-04-15 01:40:03 +00:00
|
|
|
# View top-level categories
|
|
|
|
children = PartCategory.objects.filter(parent=None)
|
2018-04-13 14:08:30 +00:00
|
|
|
|
2018-04-14 15:18:12 +00:00
|
|
|
context['children'] = children
|
2018-04-14 11:58:01 +00:00
|
|
|
|
2018-04-14 15:18:12 +00:00
|
|
|
return context
|
2018-04-13 14:08:30 +00:00
|
|
|
|
|
|
|
|
2018-04-26 08:22:41 +00:00
|
|
|
class PartCreate(AjaxCreateView):
|
2019-04-27 12:18:07 +00:00
|
|
|
""" View for creating a new Part object.
|
|
|
|
|
|
|
|
Options for providing initial conditions:
|
|
|
|
|
|
|
|
- Provide a category object as initial data
|
|
|
|
- Copy an existing Part
|
2018-04-15 00:08:44 +00:00
|
|
|
"""
|
|
|
|
model = Part
|
|
|
|
form_class = EditPartForm
|
2019-04-18 13:47:04 +00:00
|
|
|
|
2018-04-26 08:22:41 +00:00
|
|
|
ajax_form_title = 'Create new part'
|
|
|
|
ajax_template_name = 'modal_form.html'
|
|
|
|
|
2018-04-29 14:23:02 +00:00
|
|
|
def get_data(self):
|
|
|
|
return {
|
|
|
|
'success': "Created new part",
|
|
|
|
}
|
|
|
|
|
2018-04-15 00:08:44 +00:00
|
|
|
def get_category_id(self):
|
|
|
|
return self.request.GET.get('category', None)
|
|
|
|
|
|
|
|
# If a category is provided in the URL, pass that to the page context
|
|
|
|
def get_context_data(self, **kwargs):
|
2019-04-27 12:18:07 +00:00
|
|
|
""" Provide extra context information for the form to display:
|
|
|
|
|
|
|
|
- Add category information (if provided)
|
|
|
|
"""
|
2018-04-15 00:08:44 +00:00
|
|
|
context = super(PartCreate, self).get_context_data(**kwargs)
|
|
|
|
|
|
|
|
# Add category information to the page
|
|
|
|
cat_id = self.get_category_id()
|
|
|
|
|
|
|
|
if cat_id:
|
|
|
|
context['category'] = get_object_or_404(PartCategory, pk=cat_id)
|
|
|
|
|
|
|
|
return context
|
|
|
|
|
|
|
|
# Pre-fill the category field if a valid category is provided
|
|
|
|
def get_initial(self):
|
2019-04-27 12:18:07 +00:00
|
|
|
""" Get initial data for the new Part object:
|
|
|
|
|
|
|
|
- If a category is provided, pre-fill the Category field
|
|
|
|
- If 'copy' parameter is provided, copy from referenced Part
|
|
|
|
"""
|
2018-04-15 00:08:44 +00:00
|
|
|
|
2019-04-18 13:12:29 +00:00
|
|
|
# Is the client attempting to copy an existing part?
|
2019-04-18 13:28:46 +00:00
|
|
|
part_to_copy = self.request.GET.get('copy', None)
|
2019-04-18 13:12:29 +00:00
|
|
|
|
|
|
|
if part_to_copy:
|
|
|
|
try:
|
|
|
|
original = Part.objects.get(pk=part_to_copy)
|
|
|
|
initials = model_to_dict(original)
|
2019-04-18 13:22:58 +00:00
|
|
|
self.ajax_form_title = "Copy Part '{p}'".format(p=original.name)
|
2019-04-18 13:12:29 +00:00
|
|
|
except Part.DoesNotExist:
|
|
|
|
initials = super(PartCreate, self).get_initial()
|
|
|
|
|
|
|
|
else:
|
2019-04-18 13:47:04 +00:00
|
|
|
initials = super(PartCreate, self).get_initial()
|
2018-04-15 00:08:44 +00:00
|
|
|
|
|
|
|
if self.get_category_id():
|
|
|
|
initials['category'] = get_object_or_404(PartCategory, pk=self.get_category_id())
|
|
|
|
|
|
|
|
return initials
|
|
|
|
|
|
|
|
|
2018-04-14 15:18:12 +00:00
|
|
|
class PartDetail(DetailView):
|
2019-04-27 12:18:07 +00:00
|
|
|
""" Detail view for Part object
|
|
|
|
"""
|
|
|
|
|
2018-04-14 15:18:12 +00:00
|
|
|
context_object_name = 'part'
|
|
|
|
queryset = Part.objects.all()
|
|
|
|
template_name = 'part/detail.html'
|
2018-04-13 14:46:18 +00:00
|
|
|
|
2019-04-15 08:32:15 +00:00
|
|
|
# Add in some extra context information based on query params
|
|
|
|
def get_context_data(self, **kwargs):
|
2019-04-27 12:18:07 +00:00
|
|
|
""" Provide extra context data to template
|
|
|
|
|
|
|
|
- If '?editing=True', set 'editing_enabled' context variable
|
|
|
|
"""
|
2019-04-15 08:32:15 +00:00
|
|
|
context = super(PartDetail, self).get_context_data(**kwargs)
|
|
|
|
|
2019-04-27 12:18:07 +00:00
|
|
|
if str2bool(self.request.GET.get('edit', '')):
|
2019-04-15 08:41:48 +00:00
|
|
|
context['editing_enabled'] = 1
|
2019-04-15 08:32:15 +00:00
|
|
|
else:
|
2019-04-15 08:41:48 +00:00
|
|
|
context['editing_enabled'] = 0
|
2019-04-15 08:32:15 +00:00
|
|
|
|
|
|
|
return context
|
|
|
|
|
2018-04-13 14:46:18 +00:00
|
|
|
|
2018-04-29 02:25:07 +00:00
|
|
|
class PartImage(AjaxUpdateView):
|
2019-04-27 12:18:07 +00:00
|
|
|
""" View for uploading Part image """
|
2018-04-29 02:25:07 +00:00
|
|
|
|
|
|
|
model = Part
|
|
|
|
ajax_template_name = 'modal_form.html'
|
|
|
|
ajax_form_title = 'Upload Part Image'
|
|
|
|
form_class = PartImageForm
|
|
|
|
|
2018-05-03 13:40:27 +00:00
|
|
|
def get_data(self):
|
|
|
|
return {
|
|
|
|
'success': 'Updated part image',
|
|
|
|
}
|
|
|
|
|
2018-04-29 02:25:07 +00:00
|
|
|
|
2018-04-26 13:28:27 +00:00
|
|
|
class PartEdit(AjaxUpdateView):
|
2019-04-27 12:18:07 +00:00
|
|
|
""" View for editing Part object """
|
|
|
|
|
2018-04-14 15:18:12 +00:00
|
|
|
model = Part
|
2019-04-16 11:25:20 +00:00
|
|
|
form_class = EditPartForm
|
2018-04-26 13:28:27 +00:00
|
|
|
ajax_template_name = 'modal_form.html'
|
|
|
|
ajax_form_title = 'Edit Part Properties'
|
2019-04-16 11:25:20 +00:00
|
|
|
context_object_name = 'part'
|
2018-04-14 06:26:26 +00:00
|
|
|
|
|
|
|
|
2019-04-13 14:35:19 +00:00
|
|
|
class BomExport(AjaxView):
|
2019-04-16 11:25:20 +00:00
|
|
|
|
|
|
|
model = Part
|
|
|
|
ajax_form_title = 'Export BOM'
|
2019-04-16 11:46:12 +00:00
|
|
|
ajax_template_name = 'part/bom_export.html'
|
2019-04-16 11:25:20 +00:00
|
|
|
context_object_name = 'part'
|
|
|
|
form_class = BomExportForm
|
|
|
|
|
2019-04-16 11:46:12 +00:00
|
|
|
def get_object(self):
|
|
|
|
return get_object_or_404(Part, pk=self.kwargs['pk'])
|
|
|
|
|
2019-04-16 11:25:20 +00:00
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
form = self.form_class()
|
|
|
|
|
2019-04-16 12:32:43 +00:00
|
|
|
"""
|
2019-04-16 11:46:12 +00:00
|
|
|
part = self.get_object()
|
2019-04-16 11:25:20 +00:00
|
|
|
|
|
|
|
context = {
|
|
|
|
'part': part
|
|
|
|
}
|
|
|
|
|
2019-04-16 11:46:12 +00:00
|
|
|
if request.is_ajax():
|
2019-04-16 12:32:43 +00:00
|
|
|
passs
|
|
|
|
"""
|
2019-04-16 11:46:12 +00:00
|
|
|
|
2019-04-16 12:32:43 +00:00
|
|
|
return self.renderJsonResponse(request, form)
|
2019-04-16 11:25:20 +00:00
|
|
|
|
|
|
|
def post(self, request, *args, **kwargs):
|
2019-04-16 11:46:12 +00:00
|
|
|
"""
|
|
|
|
User has now submitted the BOM export data
|
2019-04-16 12:32:43 +00:00
|
|
|
"""
|
2019-04-16 11:25:20 +00:00
|
|
|
|
2019-04-16 12:32:43 +00:00
|
|
|
# part = self.get_object()
|
2019-04-16 11:25:20 +00:00
|
|
|
|
2019-04-16 11:46:12 +00:00
|
|
|
return super(AjaxView, self).post(request, *args, **kwargs)
|
2019-04-16 11:25:20 +00:00
|
|
|
|
|
|
|
def get_data(self):
|
|
|
|
return {
|
2019-04-16 12:32:43 +00:00
|
|
|
# 'form_valid': True,
|
|
|
|
# 'redirect': '/'
|
|
|
|
# 'redirect': reverse('bom-download', kwargs={'pk': self.request.GET.get('pk')})
|
2019-04-16 11:25:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
class BomDownload(AjaxView):
|
|
|
|
"""
|
|
|
|
Provide raw download of a BOM file.
|
|
|
|
- File format should be passed as a query param e.g. ?format=csv
|
|
|
|
"""
|
|
|
|
|
2019-04-13 14:35:19 +00:00
|
|
|
# TODO - This should no longer extend an AjaxView!
|
2019-04-13 11:04:23 +00:00
|
|
|
|
|
|
|
model = Part
|
2019-04-16 12:32:43 +00:00
|
|
|
# form_class = BomExportForm
|
|
|
|
# template_name = 'part/bom_export.html'
|
|
|
|
# ajax_form_title = 'Export Bill of Materials'
|
|
|
|
# context_object_name = 'part'
|
2019-04-13 11:04:23 +00:00
|
|
|
|
2019-04-13 12:22:04 +00:00
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
|
|
|
|
part = get_object_or_404(Part, pk=self.kwargs['pk'])
|
|
|
|
|
2019-04-13 14:35:19 +00:00
|
|
|
export_format = request.GET.get('format', 'csv')
|
2019-04-16 11:46:12 +00:00
|
|
|
|
2019-04-13 14:35:19 +00:00
|
|
|
# Placeholder to test file export
|
|
|
|
filename = '"' + part.name + '_BOM.' + export_format + '"'
|
2019-04-13 12:22:04 +00:00
|
|
|
|
2019-04-16 11:46:12 +00:00
|
|
|
filedata = part.export_bom(format=export_format)
|
2019-04-13 12:46:26 +00:00
|
|
|
|
2019-04-13 14:35:19 +00:00
|
|
|
return DownloadFile(filedata, filename)
|
2019-04-13 11:04:23 +00:00
|
|
|
|
|
|
|
def get_data(self):
|
|
|
|
return {
|
|
|
|
'info': 'Exported BOM'
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-04-26 14:06:44 +00:00
|
|
|
class PartDelete(AjaxDeleteView):
|
2019-04-27 12:18:07 +00:00
|
|
|
""" View to delete a Part object """
|
|
|
|
|
2018-04-14 22:45:50 +00:00
|
|
|
model = Part
|
2018-04-26 14:06:44 +00:00
|
|
|
ajax_template_name = 'part/partial_delete.html'
|
|
|
|
ajax_form_title = 'Confirm Part Deletion'
|
2019-04-16 11:25:20 +00:00
|
|
|
context_object_name = 'part'
|
2018-04-14 22:45:50 +00:00
|
|
|
|
|
|
|
success_url = '/part/'
|
|
|
|
|
2018-04-29 14:23:02 +00:00
|
|
|
def get_data(self):
|
|
|
|
return {
|
|
|
|
'danger': 'Part was deleted',
|
|
|
|
}
|
2018-04-14 22:45:50 +00:00
|
|
|
|
2018-04-15 01:40:03 +00:00
|
|
|
|
|
|
|
class CategoryDetail(DetailView):
|
2019-04-27 12:18:07 +00:00
|
|
|
""" Detail view for PartCategory """
|
2018-04-15 01:40:03 +00:00
|
|
|
model = PartCategory
|
|
|
|
context_object_name = 'category'
|
|
|
|
queryset = PartCategory.objects.all()
|
2018-05-04 08:53:39 +00:00
|
|
|
template_name = 'part/category.html'
|
2018-04-15 01:40:03 +00:00
|
|
|
|
|
|
|
|
2018-04-27 10:42:12 +00:00
|
|
|
class CategoryEdit(AjaxUpdateView):
|
2019-04-27 12:18:07 +00:00
|
|
|
""" Update view to edit a PartCategory """
|
2018-04-15 01:40:03 +00:00
|
|
|
model = PartCategory
|
|
|
|
form_class = EditCategoryForm
|
2018-04-27 10:42:12 +00:00
|
|
|
ajax_template_name = 'modal_form.html'
|
|
|
|
ajax_form_title = 'Edit Part Category'
|
2018-04-15 01:40:03 +00:00
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
context = super(CategoryEdit, self).get_context_data(**kwargs).copy()
|
|
|
|
|
|
|
|
context['category'] = get_object_or_404(PartCategory, pk=self.kwargs['pk'])
|
|
|
|
|
|
|
|
return context
|
|
|
|
|
|
|
|
|
2018-04-27 10:42:12 +00:00
|
|
|
class CategoryDelete(AjaxDeleteView):
|
2019-04-27 12:18:07 +00:00
|
|
|
""" Delete view to delete a PartCategory """
|
2018-04-15 01:40:03 +00:00
|
|
|
model = PartCategory
|
2019-04-27 23:00:54 +00:00
|
|
|
ajax_template_name = 'part/category_delete.html'
|
2018-04-15 01:40:03 +00:00
|
|
|
context_object_name = 'category'
|
2018-04-15 15:02:17 +00:00
|
|
|
success_url = '/part/'
|
2018-04-15 01:40:03 +00:00
|
|
|
|
2018-04-29 14:23:02 +00:00
|
|
|
def get_data(self):
|
|
|
|
return {
|
|
|
|
'danger': 'Part category was deleted',
|
|
|
|
}
|
|
|
|
|
2018-04-15 01:40:03 +00:00
|
|
|
|
2018-04-25 04:10:56 +00:00
|
|
|
class CategoryCreate(AjaxCreateView):
|
2019-04-27 12:18:07 +00:00
|
|
|
""" Create view to make a new PartCategory """
|
2018-04-15 01:40:03 +00:00
|
|
|
model = PartCategory
|
2018-04-25 04:10:56 +00:00
|
|
|
ajax_form_action = reverse_lazy('category-create')
|
|
|
|
ajax_form_title = 'Create new part category'
|
|
|
|
ajax_template_name = 'modal_form.html'
|
2018-04-15 01:40:03 +00:00
|
|
|
form_class = EditCategoryForm
|
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
2019-04-27 12:18:07 +00:00
|
|
|
""" Add extra context data to template.
|
|
|
|
|
|
|
|
- If parent category provided, pass the category details to the template
|
|
|
|
"""
|
2018-04-15 01:40:03 +00:00
|
|
|
context = super(CategoryCreate, self).get_context_data(**kwargs).copy()
|
|
|
|
|
|
|
|
parent_id = self.request.GET.get('category', None)
|
|
|
|
|
|
|
|
if parent_id:
|
|
|
|
context['category'] = get_object_or_404(PartCategory, pk=parent_id)
|
|
|
|
|
|
|
|
return context
|
|
|
|
|
|
|
|
def get_initial(self):
|
2019-04-27 12:18:07 +00:00
|
|
|
""" Get initial data for new PartCategory
|
|
|
|
|
|
|
|
- If parent provided, pre-fill the parent category
|
|
|
|
"""
|
2018-04-15 01:40:03 +00:00
|
|
|
initials = super(CategoryCreate, self).get_initial().copy()
|
|
|
|
|
|
|
|
parent_id = self.request.GET.get('category', None)
|
|
|
|
|
|
|
|
if parent_id:
|
|
|
|
initials['parent'] = get_object_or_404(PartCategory, pk=parent_id)
|
|
|
|
|
|
|
|
return initials
|
2018-04-15 11:29:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
class BomItemDetail(DetailView):
|
2019-04-27 12:18:07 +00:00
|
|
|
""" Detail view for BomItem """
|
2018-04-15 15:02:17 +00:00
|
|
|
context_object_name = 'item'
|
2018-04-15 11:29:24 +00:00
|
|
|
queryset = BomItem.objects.all()
|
|
|
|
template_name = 'part/bom-detail.html'
|
|
|
|
|
|
|
|
|
2018-04-25 23:26:43 +00:00
|
|
|
class BomItemCreate(AjaxCreateView):
|
2019-04-27 12:18:07 +00:00
|
|
|
""" Create view for making a new BomItem object """
|
2018-04-15 11:29:24 +00:00
|
|
|
model = BomItem
|
|
|
|
form_class = EditBomItemForm
|
2018-04-25 23:26:43 +00:00
|
|
|
ajax_template_name = 'modal_form.html'
|
|
|
|
ajax_form_title = 'Create BOM item'
|
2018-04-15 11:29:24 +00:00
|
|
|
|
|
|
|
def get_initial(self):
|
2019-04-27 12:18:07 +00:00
|
|
|
""" Provide initial data for the BomItem:
|
|
|
|
|
|
|
|
- If 'parent' provided, set the parent part field
|
|
|
|
"""
|
|
|
|
|
2018-04-15 11:29:24 +00:00
|
|
|
# Look for initial values
|
|
|
|
initials = super(BomItemCreate, self).get_initial().copy()
|
|
|
|
|
|
|
|
# Parent part for this item?
|
|
|
|
parent_id = self.request.GET.get('parent', None)
|
|
|
|
|
|
|
|
if parent_id:
|
|
|
|
initials['part'] = get_object_or_404(Part, pk=parent_id)
|
|
|
|
|
|
|
|
return initials
|
|
|
|
|
|
|
|
|
2018-04-25 23:26:43 +00:00
|
|
|
class BomItemEdit(AjaxUpdateView):
|
2019-04-27 12:18:07 +00:00
|
|
|
""" Update view for editing BomItem """
|
|
|
|
|
2018-04-15 11:29:24 +00:00
|
|
|
model = BomItem
|
|
|
|
form_class = EditBomItemForm
|
2018-04-25 23:26:43 +00:00
|
|
|
ajax_template_name = 'modal_form.html'
|
|
|
|
ajax_form_title = 'Edit BOM item'
|
2018-04-15 11:29:24 +00:00
|
|
|
|
|
|
|
|
2018-04-26 14:54:01 +00:00
|
|
|
class BomItemDelete(AjaxDeleteView):
|
2019-04-27 12:18:07 +00:00
|
|
|
""" Delete view for removing BomItem """
|
2018-04-15 11:29:24 +00:00
|
|
|
model = BomItem
|
2019-04-27 23:00:54 +00:00
|
|
|
ajax_template_name = 'part/bom-delete.html'
|
2018-04-15 11:29:24 +00:00
|
|
|
context_object_name = 'item'
|
2018-04-26 14:54:01 +00:00
|
|
|
ajax_form_title = 'Confim BOM item deletion'
|
2018-04-15 11:29:24 +00:00
|
|
|
|
2018-04-22 11:54:12 +00:00
|
|
|
|
|
|
|
class SupplierPartDetail(DetailView):
|
2019-04-27 12:18:07 +00:00
|
|
|
""" Detail view for SupplierPart """
|
2018-04-22 11:54:12 +00:00
|
|
|
model = SupplierPart
|
|
|
|
template_name = 'company/partdetail.html'
|
|
|
|
context_object_name = 'part'
|
|
|
|
queryset = SupplierPart.objects.all()
|
|
|
|
|
|
|
|
|
2018-04-27 11:32:48 +00:00
|
|
|
class SupplierPartEdit(AjaxUpdateView):
|
2019-04-27 12:18:07 +00:00
|
|
|
""" Update view for editing SupplierPart """
|
|
|
|
|
2018-04-22 11:54:12 +00:00
|
|
|
model = SupplierPart
|
|
|
|
context_object_name = 'part'
|
|
|
|
form_class = EditSupplierPartForm
|
2018-04-27 11:32:48 +00:00
|
|
|
ajax_template_name = 'modal_form.html'
|
|
|
|
ajax_form_title = 'Edit Supplier Part'
|
2018-04-22 11:54:12 +00:00
|
|
|
|
|
|
|
|
2018-04-27 11:32:48 +00:00
|
|
|
class SupplierPartCreate(AjaxCreateView):
|
2019-04-27 12:18:07 +00:00
|
|
|
""" Create view for making new SupplierPart """
|
|
|
|
|
2018-04-22 11:54:12 +00:00
|
|
|
model = SupplierPart
|
|
|
|
form_class = EditSupplierPartForm
|
2018-04-27 11:32:48 +00:00
|
|
|
ajax_template_name = 'modal_form.html'
|
|
|
|
ajax_form_title = 'Create new Supplier Part'
|
2018-04-22 11:54:12 +00:00
|
|
|
context_object_name = 'part'
|
|
|
|
|
|
|
|
def get_initial(self):
|
2019-04-27 12:18:07 +00:00
|
|
|
""" Provide initial data for new SupplierPart:
|
|
|
|
|
|
|
|
- If 'supplier_id' provided, pre-fill supplier field
|
|
|
|
- If 'part_id' provided, pre-fill part field
|
|
|
|
"""
|
2018-04-22 11:54:12 +00:00
|
|
|
initials = super(SupplierPartCreate, self).get_initial().copy()
|
|
|
|
|
|
|
|
supplier_id = self.request.GET.get('supplier', None)
|
|
|
|
part_id = self.request.GET.get('part', None)
|
|
|
|
|
|
|
|
if supplier_id:
|
2018-04-22 13:07:23 +00:00
|
|
|
initials['supplier'] = get_object_or_404(Company, pk=supplier_id)
|
2018-04-28 02:14:18 +00:00
|
|
|
# TODO
|
|
|
|
# self.fields['supplier'].disabled = True
|
2018-04-22 11:54:12 +00:00
|
|
|
if part_id:
|
|
|
|
initials['part'] = get_object_or_404(Part, pk=part_id)
|
2018-04-28 02:14:18 +00:00
|
|
|
# TODO
|
|
|
|
# self.fields['part'].disabled = True
|
2018-04-22 11:54:12 +00:00
|
|
|
|
|
|
|
return initials
|
|
|
|
|
|
|
|
|
2018-04-27 11:32:48 +00:00
|
|
|
class SupplierPartDelete(AjaxDeleteView):
|
2019-04-27 12:18:07 +00:00
|
|
|
""" Delete view for removing a SupplierPart """
|
2018-04-22 11:54:12 +00:00
|
|
|
model = SupplierPart
|
|
|
|
success_url = '/supplier/'
|
2019-04-27 23:00:54 +00:00
|
|
|
ajax_template_name = 'company/partdelete.html'
|