2017-03-25 12:07:43 +00:00
|
|
|
from django.contrib import admin
|
2018-04-15 14:44:32 +00:00
|
|
|
from import_export.admin import ImportExportModelAdmin
|
2017-03-25 12:07:43 +00:00
|
|
|
|
2018-04-12 06:27:26 +00:00
|
|
|
from .models import PartCategory, Part
|
2019-04-17 13:58:13 +00:00
|
|
|
from .models import PartAttachment
|
2018-04-22 11:54:12 +00:00
|
|
|
from .models import SupplierPart
|
2018-04-14 04:19:03 +00:00
|
|
|
from .models import BomItem
|
2017-03-28 12:31:41 +00:00
|
|
|
|
2019-04-17 14:20:49 +00:00
|
|
|
|
2018-04-15 14:44:32 +00:00
|
|
|
class PartAdmin(ImportExportModelAdmin):
|
2017-04-11 07:21:05 +00:00
|
|
|
|
2018-04-16 12:13:31 +00:00
|
|
|
list_display = ('name', 'IPN', 'description', 'total_stock', 'category')
|
2017-03-27 10:03:46 +00:00
|
|
|
|
2017-03-28 06:53:54 +00:00
|
|
|
|
2017-03-28 12:31:41 +00:00
|
|
|
class PartCategoryAdmin(admin.ModelAdmin):
|
2017-04-11 07:21:05 +00:00
|
|
|
|
2018-04-13 12:36:59 +00:00
|
|
|
list_display = ('name', 'pathstring', 'description')
|
2017-04-11 07:21:05 +00:00
|
|
|
|
2018-04-15 15:02:17 +00:00
|
|
|
|
2019-04-17 13:58:13 +00:00
|
|
|
class PartAttachmentAdmin(admin.ModelAdmin):
|
|
|
|
|
|
|
|
list_display = ('part', 'attachment')
|
|
|
|
|
|
|
|
|
2018-04-15 14:44:32 +00:00
|
|
|
class BomItemAdmin(ImportExportModelAdmin):
|
2018-04-15 15:02:17 +00:00
|
|
|
list_display = ('part', 'sub_part', 'quantity')
|
|
|
|
|
2018-04-14 04:19:03 +00:00
|
|
|
|
2018-04-22 11:54:12 +00:00
|
|
|
class SupplierPartAdmin(ImportExportModelAdmin):
|
|
|
|
list_display = ('part', 'supplier', 'SKU')
|
2018-04-14 08:44:56 +00:00
|
|
|
|
2018-04-15 15:02:17 +00:00
|
|
|
|
2018-04-12 06:27:26 +00:00
|
|
|
"""
|
2017-03-29 04:02:59 +00:00
|
|
|
class ParameterTemplateAdmin(admin.ModelAdmin):
|
2017-03-29 04:45:50 +00:00
|
|
|
list_display = ('name', 'units', 'format')
|
2017-03-29 04:02:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ParameterAdmin(admin.ModelAdmin):
|
|
|
|
list_display = ('part', 'template', 'value')
|
2018-04-12 06:27:26 +00:00
|
|
|
"""
|
2017-04-11 07:21:05 +00:00
|
|
|
|
2017-03-28 06:49:01 +00:00
|
|
|
admin.site.register(Part, PartAdmin)
|
2017-03-28 12:31:41 +00:00
|
|
|
admin.site.register(PartCategory, PartCategoryAdmin)
|
2019-04-17 13:58:13 +00:00
|
|
|
admin.site.register(PartAttachment, PartAttachmentAdmin)
|
2018-04-14 04:19:03 +00:00
|
|
|
admin.site.register(BomItem, BomItemAdmin)
|
2018-04-22 11:54:12 +00:00
|
|
|
admin.site.register(SupplierPart, SupplierPartAdmin)
|