mirror of
https://github.com/inventree/InvenTree.git
synced 2026-05-23 01:25:45 +00:00
06266b48af
* Create new model for storing Part pricing data
Currently this model does not "do" anything but will be used for caching pre-calculated pricing information
* Define function for accessing pricing information for a specific part
* Adds admin site support for new PartPricing model
* Specify role for PartPricing model
* Allow blank values for PartPricing model fields
* Add some TODO entries
* Update migration files to sync with latest master
* Expose API endpoint for viewing part pricing information
* Update migration file
* Improvements:
- Updated model with new fields
- Code for calculating BOM price
- Code for calculating internal price
- Code for calculating supplier price
- Updated unit testing
* Fix (and test) for API serializer
* Including min/max pricing data in part serializer
* Bump API version
* Add pricing overview information in part table
- Adds helper function for formatting currency data
- No longer pre-render "price strings" on the server
* Overhaul of BOM API
- Pricing data no longer calculated "on the fly"
- Remove expensive annotation operations
- Display cached price range information in BOM table
* Filter BOM items by "has pricing"
* Part API endpoint can be filtered by price range
* Updpated API version notes
* Improvements for price caching calculations
- Handle null price values
- Handle case where conversion rates are missing
- Allow manual update via API
* Button to manually refresh pricing
* Improve rendering of price-break table
* Update supplier part pricing table
* Updated js functions
* Adds background task to update assembly pricing whenever a part price cache is changed
* Updates for task offloading
* HTML tweaks
* Implement calculation of historical purchase cost
- take supplier part pack size into account
- improve unit tests
* Improvements for pricing tab rendering
* Refactor of pricing page
- Move javascript functions out into separate files
- Change price-break tables to use bar graphs
- Display part pricing history table and chart
- Remove server-side rendering for price history data
- Fix rendering of supplier pricing table
- Adds extra filtering options to the SupplierPriceBreak API endpoint
* Refactor BOM pricing chart / table
- Display as bar chart with min/max pricing
- Display simplified BOM table
* Update page anchors
* Improvements for BOM pricing table display
* Refactoring sales data tables
- Add extra data and filter options to sales order API endpoints
- Display sales order history table and chart
* Add extra fields to PartPricing model:
- sale_price_min
- sale_price_max
- sale_history_min
- sale_history_max
* Calculate and cache sale price data
* Update part pricing when PurchaseOrder is completed
* Update part pricing when sales order is completed
* Signals for updating part pricing cache
- Whenever an internal price break is created / edited / deleted
- Whenever a sale price break is created / edited / deleted
* Also trigger part pricing update when BomItem is created / edited / deleted
* Update part pricing whenever a supplier price break is updated
* Remove has_complete_bom_pricing method
* Export min/max pricing data in BOM file
* Fix pricing data in BOM export
- Calculate total line cost
- Use more than two digits
* Add pricing information to part export
Also some improvements to part exporting
* Allow download of part category table
* Allow export of stock location data to file
* Improved exporting of StockItem data
* Add cached variant pricing data
- New fields in part pricing model
- Display variant pricing overview in "pricing" tab
* Remove outdated "PART_SHOW_PRICE_HISTORY" setting
* Adds scheduled background task to periodically update part pricing
* Internal prices can optionally override other pricing
* Update js file checks
* Update price breaks to use 6 decimal places
* Fix for InvenTreeMoneySerializer class
- Allow 6 decimal places through the API
* Update for supplier price break table
* javascript linting fix
* Further js fixes
* Unit test updates
* Improve rendering of currency in templates
- Do not artificially limit to 2 decimal places
* Unit test fixes
* Add pricing information to part "details" tab
* Tweak for money formatting
* Enable sort-by-price in BOM table
* More unit test tweaks
* Update BOM exporting
* Fixes for background worker process
- To determine if worker is running, look for *any* successful task, not just heartbeat
- Heartbeat rate increased to 5 minute intervals
- Small adjustments to django_q settings
Ref: https://github.com/inventree/InvenTree/issues/3921
(cherry picked from commit cb26003b92)
* Force background processing of heartbeat task when server is started
- Removes the ~5 minute window in which the server "thinks" that the worker is not actually running
* Adjust strategy for preventing recursion
- Rather than looking for duplicate parts, simply increment a counter
- Add a "scheduled_for_update" flag to prevent multiple updates being scheduled
- Consolidate migration files
* Adds helper function for rendering a range of prices
* Include variant cost in calculations
* Fixes for "has_pricing" API filters
* Ensure part pricing status flags are reset when the server restarts
* Bug fix for BOM API filter
* Include BOM quantity in BOM pricing chart
* Small tweaks to pricing tab
* Prevent caching when looking up settings in background worker
- Caching across mnultiple processes causes issues
- Need to move to something like redis to solve this
- Ref: https://github.com/inventree/InvenTree/issues/3921
* Fixes for /part/pricing/ detail API endpoint
* Update pricing tab
- Consistent naming
* Unit test fixes
* Prevent pricing updates when loading test fixtures
* Fix for Part.pricing
* Updates for "check_missing_pricing"
* Change to pie chart for BOM pricing
* Unit test fix
* Updates
- Sort BOM pie chart correctly
- Simplify PartPricing.is_valid
- Pass "limit" through to check_missing_pricing
- Improved logic for update scheduling
* Add option for changing how many decimals to use when displaying pricing data
* remove old unused setting
* Consolidate settings tabs for pricing and currencies
* Fix CI after changing settings page
* Fix rendering for "Supplier Pricing"
- Take unit pricing / pack size into account
* Extra filtering / ordering options for the SupplierPriceBreak API endpoint
* Fix for purchase price history graph
- Use unit pricing (take pack size into account)
* JS fixes
1071 lines
33 KiB
Python
1071 lines
33 KiB
Python
"""DRF data serializers for Part app."""
|
|
|
|
import imghdr
|
|
import io
|
|
from decimal import Decimal
|
|
|
|
from django.core.files.base import ContentFile
|
|
from django.db import models, transaction
|
|
from django.db.models import ExpressionWrapper, F, FloatField, Q
|
|
from django.db.models.functions import Coalesce
|
|
from django.urls import reverse_lazy
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
from rest_framework import serializers
|
|
from sql_util.utils import SubqueryCount, SubquerySum
|
|
|
|
import InvenTree.helpers
|
|
import part.filters
|
|
from common.settings import currency_code_default, currency_code_mappings
|
|
from InvenTree.serializers import (DataFileExtractSerializer,
|
|
DataFileUploadSerializer,
|
|
InvenTreeAttachmentSerializer,
|
|
InvenTreeAttachmentSerializerField,
|
|
InvenTreeDecimalField,
|
|
InvenTreeImageSerializerField,
|
|
InvenTreeModelSerializer,
|
|
InvenTreeMoneySerializer, RemoteImageMixin)
|
|
from InvenTree.status_codes import BuildStatus
|
|
|
|
from .models import (BomItem, BomItemSubstitute, Part, PartAttachment,
|
|
PartCategory, PartCategoryParameterTemplate,
|
|
PartInternalPriceBreak, PartParameter,
|
|
PartParameterTemplate, PartPricing, PartRelated,
|
|
PartSellPriceBreak, PartStar, PartTestTemplate)
|
|
|
|
|
|
class CategorySerializer(InvenTreeModelSerializer):
|
|
"""Serializer for PartCategory."""
|
|
|
|
def get_starred(self, category):
|
|
"""Return True if the category is directly "starred" by the current user."""
|
|
return category in self.context.get('starred_categories', [])
|
|
|
|
@staticmethod
|
|
def annotate_queryset(queryset):
|
|
"""Annotate extra information to the queryset"""
|
|
|
|
# Annotate the number of 'parts' which exist in each category (including subcategories!)
|
|
queryset = queryset.annotate(
|
|
part_count=part.filters.annotate_category_parts()
|
|
)
|
|
|
|
return queryset
|
|
|
|
url = serializers.CharField(source='get_absolute_url', read_only=True)
|
|
|
|
part_count = serializers.IntegerField(read_only=True)
|
|
|
|
level = serializers.IntegerField(read_only=True)
|
|
|
|
starred = serializers.SerializerMethodField()
|
|
|
|
class Meta:
|
|
"""Metaclass defining serializer fields"""
|
|
model = PartCategory
|
|
fields = [
|
|
'pk',
|
|
'name',
|
|
'description',
|
|
'default_location',
|
|
'default_keywords',
|
|
'level',
|
|
'parent',
|
|
'part_count',
|
|
'pathstring',
|
|
'starred',
|
|
'url',
|
|
'icon',
|
|
]
|
|
|
|
|
|
class CategoryTree(InvenTreeModelSerializer):
|
|
"""Serializer for PartCategory tree."""
|
|
|
|
class Meta:
|
|
"""Metaclass defining serializer fields"""
|
|
model = PartCategory
|
|
fields = [
|
|
'pk',
|
|
'name',
|
|
'parent',
|
|
'icon',
|
|
]
|
|
|
|
|
|
class PartAttachmentSerializer(InvenTreeAttachmentSerializer):
|
|
"""Serializer for the PartAttachment class."""
|
|
|
|
class Meta:
|
|
"""Metaclass defining serializer fields"""
|
|
model = PartAttachment
|
|
|
|
fields = [
|
|
'pk',
|
|
'part',
|
|
'attachment',
|
|
'filename',
|
|
'link',
|
|
'comment',
|
|
'upload_date',
|
|
'user',
|
|
'user_detail',
|
|
]
|
|
|
|
read_only_fields = [
|
|
'upload_date',
|
|
]
|
|
|
|
|
|
class PartTestTemplateSerializer(InvenTreeModelSerializer):
|
|
"""Serializer for the PartTestTemplate class."""
|
|
|
|
key = serializers.CharField(read_only=True)
|
|
|
|
class Meta:
|
|
"""Metaclass defining serializer fields"""
|
|
model = PartTestTemplate
|
|
|
|
fields = [
|
|
'pk',
|
|
'key',
|
|
'part',
|
|
'test_name',
|
|
'description',
|
|
'required',
|
|
'requires_value',
|
|
'requires_attachment',
|
|
]
|
|
|
|
|
|
class PartSalePriceSerializer(InvenTreeModelSerializer):
|
|
"""Serializer for sale prices for Part model."""
|
|
|
|
quantity = InvenTreeDecimalField()
|
|
|
|
price = InvenTreeMoneySerializer(
|
|
allow_null=True
|
|
)
|
|
|
|
price_currency = serializers.ChoiceField(
|
|
choices=currency_code_mappings(),
|
|
default=currency_code_default,
|
|
label=_('Currency'),
|
|
help_text=_('Purchase currency of this stock item'),
|
|
)
|
|
|
|
class Meta:
|
|
"""Metaclass defining serializer fields"""
|
|
model = PartSellPriceBreak
|
|
fields = [
|
|
'pk',
|
|
'part',
|
|
'quantity',
|
|
'price',
|
|
'price_currency',
|
|
]
|
|
|
|
|
|
class PartInternalPriceSerializer(InvenTreeModelSerializer):
|
|
"""Serializer for internal prices for Part model."""
|
|
|
|
quantity = InvenTreeDecimalField()
|
|
|
|
price = InvenTreeMoneySerializer(
|
|
allow_null=True
|
|
)
|
|
|
|
price_currency = serializers.ChoiceField(
|
|
choices=currency_code_mappings(),
|
|
default=currency_code_default,
|
|
label=_('Currency'),
|
|
help_text=_('Purchase currency of this stock item'),
|
|
)
|
|
|
|
class Meta:
|
|
"""Metaclass defining serializer fields"""
|
|
model = PartInternalPriceBreak
|
|
fields = [
|
|
'pk',
|
|
'part',
|
|
'quantity',
|
|
'price',
|
|
'price_currency',
|
|
]
|
|
|
|
|
|
class PartThumbSerializer(serializers.Serializer):
|
|
"""Serializer for the 'image' field of the Part model.
|
|
|
|
Used to serve and display existing Part images.
|
|
"""
|
|
|
|
image = serializers.URLField(read_only=True)
|
|
count = serializers.IntegerField(read_only=True)
|
|
|
|
|
|
class PartThumbSerializerUpdate(InvenTreeModelSerializer):
|
|
"""Serializer for updating Part thumbnail."""
|
|
|
|
def validate_image(self, value):
|
|
"""Check that file is an image."""
|
|
validate = imghdr.what(value)
|
|
if not validate:
|
|
raise serializers.ValidationError("File is not an image")
|
|
return value
|
|
|
|
image = InvenTreeAttachmentSerializerField(required=True)
|
|
|
|
class Meta:
|
|
"""Metaclass defining serializer fields"""
|
|
model = Part
|
|
fields = [
|
|
'image',
|
|
]
|
|
|
|
|
|
class PartParameterTemplateSerializer(InvenTreeModelSerializer):
|
|
"""JSON serializer for the PartParameterTemplate model."""
|
|
|
|
class Meta:
|
|
"""Metaclass defining serializer fields"""
|
|
model = PartParameterTemplate
|
|
fields = [
|
|
'pk',
|
|
'name',
|
|
'units',
|
|
'description',
|
|
]
|
|
|
|
|
|
class PartParameterSerializer(InvenTreeModelSerializer):
|
|
"""JSON serializers for the PartParameter model."""
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
"""Custom initialization method for the serializer.
|
|
|
|
Allows us to optionally include or exclude particular information
|
|
"""
|
|
|
|
template_detail = kwargs.pop('template_detail', False)
|
|
|
|
super().__init__(*args, **kwargs)
|
|
|
|
if not template_detail:
|
|
self.fields.pop('template_detail')
|
|
|
|
template_detail = PartParameterTemplateSerializer(source='template', many=False, read_only=True)
|
|
|
|
class Meta:
|
|
"""Metaclass defining serializer fields"""
|
|
model = PartParameter
|
|
fields = [
|
|
'pk',
|
|
'part',
|
|
'template',
|
|
'template_detail',
|
|
'data'
|
|
]
|
|
|
|
|
|
class PartBriefSerializer(InvenTreeModelSerializer):
|
|
"""Serializer for Part (brief detail)"""
|
|
|
|
thumbnail = serializers.CharField(source='get_thumbnail_url', read_only=True)
|
|
|
|
class Meta:
|
|
"""Metaclass defining serializer fields"""
|
|
model = Part
|
|
fields = [
|
|
'pk',
|
|
'IPN',
|
|
'barcode_hash',
|
|
'default_location',
|
|
'name',
|
|
'revision',
|
|
'full_name',
|
|
'description',
|
|
'thumbnail',
|
|
'active',
|
|
'assembly',
|
|
'is_template',
|
|
'purchaseable',
|
|
'salable',
|
|
'trackable',
|
|
'virtual',
|
|
'units',
|
|
]
|
|
|
|
read_only_fields = [
|
|
'barcode_hash',
|
|
]
|
|
|
|
|
|
class PartSerializer(RemoteImageMixin, InvenTreeModelSerializer):
|
|
"""Serializer for complete detail information of a part.
|
|
|
|
Used when displaying all details of a single component.
|
|
"""
|
|
|
|
def get_api_url(self):
|
|
"""Return the API url associated with this serializer"""
|
|
return reverse_lazy('api-part-list')
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
"""Custom initialization method for PartSerializer:
|
|
|
|
- Allows us to optionally pass extra fields based on the query.
|
|
"""
|
|
self.starred_parts = kwargs.pop('starred_parts', [])
|
|
|
|
category_detail = kwargs.pop('category_detail', False)
|
|
|
|
parameters = kwargs.pop('parameters', False)
|
|
|
|
super().__init__(*args, **kwargs)
|
|
|
|
if category_detail is not True:
|
|
self.fields.pop('category_detail')
|
|
|
|
if parameters is not True:
|
|
self.fields.pop('parameters')
|
|
|
|
@staticmethod
|
|
def annotate_queryset(queryset):
|
|
"""Add some extra annotations to the queryset.
|
|
|
|
Performing database queries as efficiently as possible, to reduce database trips.
|
|
"""
|
|
|
|
# Annotate with the total number of stock items
|
|
queryset = queryset.annotate(
|
|
stock_item_count=SubqueryCount('stock_items')
|
|
)
|
|
|
|
# Annotate with the total variant stock quantity
|
|
variant_query = part.filters.variant_stock_query()
|
|
|
|
queryset = queryset.annotate(
|
|
variant_stock=part.filters.annotate_variant_quantity(variant_query, reference='quantity'),
|
|
)
|
|
|
|
# Filter to limit builds to "active"
|
|
build_filter = Q(
|
|
status__in=BuildStatus.ACTIVE_CODES
|
|
)
|
|
|
|
# Annotate with the total 'building' quantity
|
|
queryset = queryset.annotate(
|
|
building=Coalesce(
|
|
SubquerySum('builds__quantity', filter=build_filter),
|
|
Decimal(0),
|
|
output_field=models.DecimalField(),
|
|
)
|
|
)
|
|
|
|
# Annotate with the number of 'suppliers'
|
|
queryset = queryset.annotate(
|
|
suppliers=Coalesce(
|
|
SubqueryCount('supplier_parts'),
|
|
Decimal(0),
|
|
output_field=models.DecimalField(),
|
|
),
|
|
)
|
|
|
|
queryset = queryset.annotate(
|
|
ordering=part.filters.annotate_on_order_quantity(),
|
|
in_stock=part.filters.annotate_total_stock(),
|
|
allocated_to_sales_orders=part.filters.annotate_sales_order_allocations(),
|
|
allocated_to_build_orders=part.filters.annotate_build_order_allocations(),
|
|
)
|
|
|
|
# Annotate with the total 'available stock' quantity
|
|
# This is the current stock, minus any allocations
|
|
queryset = queryset.annotate(
|
|
unallocated_stock=ExpressionWrapper(
|
|
F('in_stock') - F('allocated_to_sales_orders') - F('allocated_to_build_orders'),
|
|
output_field=models.DecimalField(),
|
|
)
|
|
)
|
|
|
|
return queryset
|
|
|
|
def get_starred(self, part):
|
|
"""Return "true" if the part is starred by the current user."""
|
|
return part in self.starred_parts
|
|
|
|
# Extra detail for the category
|
|
category_detail = CategorySerializer(source='category', many=False, read_only=True)
|
|
|
|
# Calculated fields
|
|
allocated_to_build_orders = serializers.FloatField(read_only=True)
|
|
allocated_to_sales_orders = serializers.FloatField(read_only=True)
|
|
unallocated_stock = serializers.FloatField(read_only=True)
|
|
building = serializers.FloatField(read_only=True)
|
|
in_stock = serializers.FloatField(read_only=True)
|
|
variant_stock = serializers.FloatField(read_only=True)
|
|
ordering = serializers.FloatField(read_only=True)
|
|
stock_item_count = serializers.IntegerField(read_only=True)
|
|
suppliers = serializers.IntegerField(read_only=True)
|
|
|
|
image = InvenTreeImageSerializerField(required=False, allow_null=True)
|
|
thumbnail = serializers.CharField(source='get_thumbnail_url', read_only=True)
|
|
starred = serializers.SerializerMethodField()
|
|
|
|
# PrimaryKeyRelated fields (Note: enforcing field type here results in much faster queries, somehow...)
|
|
category = serializers.PrimaryKeyRelatedField(queryset=PartCategory.objects.all())
|
|
|
|
# Pricing fields
|
|
pricing_min = InvenTreeMoneySerializer(source='pricing_data.overall_min', allow_null=True, read_only=True)
|
|
pricing_max = InvenTreeMoneySerializer(source='pricing_data.overall_max', allow_null=True, read_only=True)
|
|
|
|
parameters = PartParameterSerializer(
|
|
many=True,
|
|
read_only=True,
|
|
)
|
|
|
|
class Meta:
|
|
"""Metaclass defining serializer fields"""
|
|
model = Part
|
|
partial = True
|
|
fields = [
|
|
'active',
|
|
'allocated_to_build_orders',
|
|
'allocated_to_sales_orders',
|
|
'assembly',
|
|
'barcode_hash',
|
|
'category',
|
|
'category_detail',
|
|
'component',
|
|
'default_expiry',
|
|
'default_location',
|
|
'default_supplier',
|
|
'description',
|
|
'full_name',
|
|
'image',
|
|
'in_stock',
|
|
'variant_stock',
|
|
'ordering',
|
|
'building',
|
|
'IPN',
|
|
'is_template',
|
|
'keywords',
|
|
'link',
|
|
'minimum_stock',
|
|
'name',
|
|
'notes',
|
|
'parameters',
|
|
'pk',
|
|
'purchaseable',
|
|
'remote_image',
|
|
'revision',
|
|
'salable',
|
|
'starred',
|
|
'stock_item_count',
|
|
'suppliers',
|
|
'thumbnail',
|
|
'trackable',
|
|
'unallocated_stock',
|
|
'units',
|
|
'variant_of',
|
|
'virtual',
|
|
'pricing_min',
|
|
'pricing_max',
|
|
]
|
|
|
|
read_only_fields = [
|
|
'barcode_hash',
|
|
]
|
|
|
|
def save(self):
|
|
"""Save the Part instance"""
|
|
|
|
super().save()
|
|
|
|
part = self.instance
|
|
|
|
# Check if an image was downloaded from a remote URL
|
|
remote_img = getattr(self, 'remote_image_file', None)
|
|
|
|
if remote_img and part:
|
|
fmt = remote_img.format or 'PNG'
|
|
buffer = io.BytesIO()
|
|
remote_img.save(buffer, format=fmt)
|
|
|
|
# Construct a simplified name for the image
|
|
filename = f"part_{part.pk}_image.{fmt.lower()}"
|
|
|
|
part.image.save(
|
|
filename,
|
|
ContentFile(buffer.getvalue()),
|
|
)
|
|
|
|
return self.instance
|
|
|
|
|
|
class PartPricingSerializer(InvenTreeModelSerializer):
|
|
"""Serializer for Part pricing information"""
|
|
|
|
currency = serializers.CharField(allow_null=True, read_only=True)
|
|
|
|
updated = serializers.DateTimeField(allow_null=True, read_only=True)
|
|
|
|
scheduled_for_update = serializers.BooleanField(read_only=True)
|
|
|
|
# Custom serializers
|
|
bom_cost_min = InvenTreeMoneySerializer(allow_null=True, read_only=True)
|
|
bom_cost_max = InvenTreeMoneySerializer(allow_null=True, read_only=True)
|
|
|
|
purchase_cost_min = InvenTreeMoneySerializer(allow_null=True, read_only=True)
|
|
purchase_cost_max = InvenTreeMoneySerializer(allow_null=True, read_only=True)
|
|
|
|
internal_cost_min = InvenTreeMoneySerializer(allow_null=True, read_only=True)
|
|
internal_cost_max = InvenTreeMoneySerializer(allow_null=True, read_only=True)
|
|
|
|
supplier_price_min = InvenTreeMoneySerializer(allow_null=True, read_only=True)
|
|
supplier_price_max = InvenTreeMoneySerializer(allow_null=True, read_only=True)
|
|
|
|
variant_cost_min = InvenTreeMoneySerializer(allow_null=True, read_only=True)
|
|
variant_cost_max = InvenTreeMoneySerializer(allow_null=True, read_only=True)
|
|
|
|
overall_min = InvenTreeMoneySerializer(allow_null=True, read_only=True)
|
|
overall_max = InvenTreeMoneySerializer(allow_null=True, read_only=True)
|
|
|
|
sale_price_min = InvenTreeMoneySerializer(allow_null=True, read_only=True)
|
|
sale_price_max = InvenTreeMoneySerializer(allow_null=True, read_only=True)
|
|
|
|
sale_history_min = InvenTreeMoneySerializer(allow_null=True, read_only=True)
|
|
sale_history_max = InvenTreeMoneySerializer(allow_null=True, read_only=True)
|
|
|
|
update = serializers.BooleanField(
|
|
write_only=True,
|
|
label=_('Update'),
|
|
help_text=_('Update pricing for this part'),
|
|
default=False,
|
|
required=False,
|
|
)
|
|
|
|
class Meta:
|
|
"""Metaclass defining serializer fields"""
|
|
model = PartPricing
|
|
fields = [
|
|
'currency',
|
|
'updated',
|
|
'scheduled_for_update',
|
|
'bom_cost_min',
|
|
'bom_cost_max',
|
|
'purchase_cost_min',
|
|
'purchase_cost_max',
|
|
'internal_cost_min',
|
|
'internal_cost_max',
|
|
'supplier_price_min',
|
|
'supplier_price_max',
|
|
'variant_cost_min',
|
|
'variant_cost_max',
|
|
'overall_min',
|
|
'overall_max',
|
|
'sale_price_min',
|
|
'sale_price_max',
|
|
'sale_history_min',
|
|
'sale_history_max',
|
|
'update',
|
|
]
|
|
|
|
def save(self):
|
|
"""Called when the serializer is saved"""
|
|
data = self.validated_data
|
|
|
|
if InvenTree.helpers.str2bool(data.get('update', False)):
|
|
# Update part pricing
|
|
pricing = self.instance
|
|
pricing.update_pricing()
|
|
|
|
|
|
class PartRelationSerializer(InvenTreeModelSerializer):
|
|
"""Serializer for a PartRelated model."""
|
|
|
|
part_1_detail = PartSerializer(source='part_1', read_only=True, many=False)
|
|
part_2_detail = PartSerializer(source='part_2', read_only=True, many=False)
|
|
|
|
class Meta:
|
|
"""Metaclass defining serializer fields"""
|
|
model = PartRelated
|
|
fields = [
|
|
'pk',
|
|
'part_1',
|
|
'part_1_detail',
|
|
'part_2',
|
|
'part_2_detail',
|
|
]
|
|
|
|
|
|
class PartStarSerializer(InvenTreeModelSerializer):
|
|
"""Serializer for a PartStar object."""
|
|
|
|
partname = serializers.CharField(source='part.full_name', read_only=True)
|
|
username = serializers.CharField(source='user.username', read_only=True)
|
|
|
|
class Meta:
|
|
"""Metaclass defining serializer fields"""
|
|
model = PartStar
|
|
fields = [
|
|
'pk',
|
|
'part',
|
|
'partname',
|
|
'user',
|
|
'username',
|
|
]
|
|
|
|
|
|
class BomItemSubstituteSerializer(InvenTreeModelSerializer):
|
|
"""Serializer for the BomItemSubstitute class."""
|
|
|
|
part_detail = PartBriefSerializer(source='part', read_only=True, many=False)
|
|
|
|
class Meta:
|
|
"""Metaclass defining serializer fields"""
|
|
model = BomItemSubstitute
|
|
fields = [
|
|
'pk',
|
|
'bom_item',
|
|
'part',
|
|
'part_detail',
|
|
]
|
|
|
|
|
|
class BomItemSerializer(InvenTreeModelSerializer):
|
|
"""Serializer for BomItem object."""
|
|
|
|
quantity = InvenTreeDecimalField(required=True)
|
|
|
|
def validate_quantity(self, quantity):
|
|
"""Perform validation for the BomItem quantity field"""
|
|
if quantity <= 0:
|
|
raise serializers.ValidationError(_("Quantity must be greater than zero"))
|
|
|
|
return quantity
|
|
|
|
part = serializers.PrimaryKeyRelatedField(queryset=Part.objects.filter(assembly=True))
|
|
|
|
substitutes = BomItemSubstituteSerializer(many=True, read_only=True)
|
|
|
|
part_detail = PartBriefSerializer(source='part', many=False, read_only=True)
|
|
|
|
sub_part = serializers.PrimaryKeyRelatedField(queryset=Part.objects.filter(component=True))
|
|
|
|
sub_part_detail = PartBriefSerializer(source='sub_part', many=False, read_only=True)
|
|
|
|
validated = serializers.BooleanField(read_only=True, source='is_line_valid')
|
|
|
|
on_order = serializers.FloatField(read_only=True)
|
|
|
|
# Cached pricing fields
|
|
pricing_min = InvenTreeMoneySerializer(source='sub_part.pricing.overall_min', allow_null=True, read_only=True)
|
|
pricing_max = InvenTreeMoneySerializer(source='sub_part.pricing.overall_max', allow_null=True, read_only=True)
|
|
|
|
# Annotated fields for available stock
|
|
available_stock = serializers.FloatField(read_only=True)
|
|
available_substitute_stock = serializers.FloatField(read_only=True)
|
|
available_variant_stock = serializers.FloatField(read_only=True)
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
"""Determine if extra detail fields are to be annotated on this serializer
|
|
|
|
- part_detail and sub_part_detail serializers are only included if requested.
|
|
- This saves a bunch of database requests
|
|
"""
|
|
part_detail = kwargs.pop('part_detail', False)
|
|
sub_part_detail = kwargs.pop('sub_part_detail', False)
|
|
|
|
super(BomItemSerializer, self).__init__(*args, **kwargs)
|
|
|
|
if part_detail is not True:
|
|
self.fields.pop('part_detail')
|
|
|
|
if sub_part_detail is not True:
|
|
self.fields.pop('sub_part_detail')
|
|
|
|
@staticmethod
|
|
def setup_eager_loading(queryset):
|
|
"""Prefetch against the provided queryset to speed up database access"""
|
|
queryset = queryset.prefetch_related('part')
|
|
queryset = queryset.prefetch_related('part__category')
|
|
queryset = queryset.prefetch_related('part__stock_items')
|
|
|
|
queryset = queryset.prefetch_related('sub_part')
|
|
queryset = queryset.prefetch_related('sub_part__category')
|
|
|
|
queryset = queryset.prefetch_related(
|
|
'sub_part__stock_items',
|
|
'sub_part__stock_items__allocations',
|
|
'sub_part__stock_items__sales_order_allocations',
|
|
)
|
|
|
|
queryset = queryset.prefetch_related(
|
|
'substitutes',
|
|
'substitutes__part__stock_items',
|
|
)
|
|
|
|
return queryset
|
|
|
|
@staticmethod
|
|
def annotate_queryset(queryset):
|
|
"""Annotate the BomItem queryset with extra information:
|
|
|
|
Annotations:
|
|
available_stock: The amount of stock available for the sub_part Part object
|
|
"""
|
|
"""
|
|
Construct an "available stock" quantity:
|
|
available_stock = total_stock - build_order_allocations - sales_order_allocations
|
|
"""
|
|
|
|
ref = 'sub_part__'
|
|
|
|
# Annotate with the total "on order" amount for the sub-part
|
|
queryset = queryset.annotate(
|
|
on_order=part.filters.annotate_on_order_quantity(ref),
|
|
)
|
|
|
|
# Calculate "total stock" for the referenced sub_part
|
|
# Calculate the "build_order_allocations" for the sub_part
|
|
# Note that these fields are only aliased, not annotated
|
|
queryset = queryset.alias(
|
|
total_stock=part.filters.annotate_total_stock(reference=ref),
|
|
allocated_to_sales_orders=part.filters.annotate_sales_order_allocations(reference=ref),
|
|
allocated_to_build_orders=part.filters.annotate_build_order_allocations(reference=ref),
|
|
)
|
|
|
|
# Calculate 'available_stock' based on previously annotated fields
|
|
queryset = queryset.annotate(
|
|
available_stock=ExpressionWrapper(
|
|
F('total_stock') - F('allocated_to_sales_orders') - F('allocated_to_build_orders'),
|
|
output_field=models.DecimalField(),
|
|
)
|
|
)
|
|
|
|
ref = 'substitutes__part__'
|
|
|
|
# Extract similar information for any 'substitute' parts
|
|
queryset = queryset.alias(
|
|
substitute_stock=part.filters.annotate_total_stock(reference=ref),
|
|
substitute_build_allocations=part.filters.annotate_build_order_allocations(reference=ref),
|
|
substitute_sales_allocations=part.filters.annotate_sales_order_allocations(reference=ref)
|
|
)
|
|
|
|
# Calculate 'available_substitute_stock' field
|
|
queryset = queryset.annotate(
|
|
available_substitute_stock=ExpressionWrapper(
|
|
F('substitute_stock') - F('substitute_build_allocations') - F('substitute_sales_allocations'),
|
|
output_field=models.DecimalField(),
|
|
)
|
|
)
|
|
|
|
# Annotate the queryset with 'available variant stock' information
|
|
variant_stock_query = part.filters.variant_stock_query(reference='sub_part__')
|
|
|
|
queryset = queryset.alias(
|
|
variant_stock_total=part.filters.annotate_variant_quantity(variant_stock_query, reference='quantity'),
|
|
variant_bo_allocations=part.filters.annotate_variant_quantity(variant_stock_query, reference='sales_order_allocations__quantity'),
|
|
variant_so_allocations=part.filters.annotate_variant_quantity(variant_stock_query, reference='allocations__quantity'),
|
|
)
|
|
|
|
queryset = queryset.annotate(
|
|
available_variant_stock=ExpressionWrapper(
|
|
F('variant_stock_total') - F('variant_bo_allocations') - F('variant_so_allocations'),
|
|
output_field=FloatField(),
|
|
)
|
|
)
|
|
|
|
return queryset
|
|
|
|
class Meta:
|
|
"""Metaclass defining serializer fields"""
|
|
model = BomItem
|
|
fields = [
|
|
'allow_variants',
|
|
'inherited',
|
|
'note',
|
|
'optional',
|
|
'consumable',
|
|
'overage',
|
|
'pk',
|
|
'part',
|
|
'part_detail',
|
|
'pricing_min',
|
|
'pricing_max',
|
|
'quantity',
|
|
'reference',
|
|
'sub_part',
|
|
'sub_part_detail',
|
|
'substitutes',
|
|
'validated',
|
|
|
|
# Annotated fields describing available quantity
|
|
'available_stock',
|
|
'available_substitute_stock',
|
|
'available_variant_stock',
|
|
|
|
# Annotated field describing quantity on order
|
|
'on_order',
|
|
]
|
|
|
|
|
|
class CategoryParameterTemplateSerializer(InvenTreeModelSerializer):
|
|
"""Serializer for the PartCategoryParameterTemplate model."""
|
|
|
|
parameter_template_detail = PartParameterTemplateSerializer(source='parameter_template', many=False, read_only=True)
|
|
|
|
category_detail = CategorySerializer(source='category', many=False, read_only=True)
|
|
|
|
class Meta:
|
|
"""Metaclass defining serializer fields"""
|
|
model = PartCategoryParameterTemplate
|
|
fields = [
|
|
'pk',
|
|
'category',
|
|
'category_detail',
|
|
'parameter_template',
|
|
'parameter_template_detail',
|
|
'default_value',
|
|
]
|
|
|
|
|
|
class PartCopyBOMSerializer(serializers.Serializer):
|
|
"""Serializer for copying a BOM from another part."""
|
|
|
|
class Meta:
|
|
"""Metaclass defining serializer fields"""
|
|
fields = [
|
|
'part',
|
|
'remove_existing',
|
|
'copy_substitutes',
|
|
'include_inherited',
|
|
'skip_invalid',
|
|
]
|
|
|
|
part = serializers.PrimaryKeyRelatedField(
|
|
queryset=Part.objects.all(),
|
|
many=False,
|
|
required=True,
|
|
allow_null=False,
|
|
label=_('Part'),
|
|
help_text=_('Select part to copy BOM from'),
|
|
)
|
|
|
|
def validate_part(self, part):
|
|
"""Check that a 'valid' part was selected."""
|
|
return part
|
|
|
|
remove_existing = serializers.BooleanField(
|
|
label=_('Remove Existing Data'),
|
|
help_text=_('Remove existing BOM items before copying'),
|
|
default=True,
|
|
)
|
|
|
|
include_inherited = serializers.BooleanField(
|
|
label=_('Include Inherited'),
|
|
help_text=_('Include BOM items which are inherited from templated parts'),
|
|
default=False,
|
|
)
|
|
|
|
skip_invalid = serializers.BooleanField(
|
|
label=_('Skip Invalid Rows'),
|
|
help_text=_('Enable this option to skip invalid rows'),
|
|
default=False,
|
|
)
|
|
|
|
copy_substitutes = serializers.BooleanField(
|
|
label=_('Copy Substitute Parts'),
|
|
help_text=_('Copy substitute parts when duplicate BOM items'),
|
|
default=True,
|
|
)
|
|
|
|
def save(self):
|
|
"""Actually duplicate the BOM."""
|
|
base_part = self.context['part']
|
|
|
|
data = self.validated_data
|
|
|
|
base_part.copy_bom_from(
|
|
data['part'],
|
|
clear=data.get('remove_existing', True),
|
|
skip_invalid=data.get('skip_invalid', False),
|
|
include_inherited=data.get('include_inherited', False),
|
|
copy_substitutes=data.get('copy_substitutes', True),
|
|
)
|
|
|
|
|
|
class BomImportUploadSerializer(DataFileUploadSerializer):
|
|
"""Serializer for uploading a file and extracting data from it."""
|
|
|
|
TARGET_MODEL = BomItem
|
|
|
|
class Meta:
|
|
"""Metaclass defining serializer fields"""
|
|
fields = [
|
|
'data_file',
|
|
'part',
|
|
'clear_existing_bom',
|
|
]
|
|
|
|
part = serializers.PrimaryKeyRelatedField(
|
|
queryset=Part.objects.all(),
|
|
required=True,
|
|
allow_null=False,
|
|
many=False,
|
|
)
|
|
|
|
clear_existing_bom = serializers.BooleanField(
|
|
label=_('Clear Existing BOM'),
|
|
help_text=_('Delete existing BOM items before uploading')
|
|
)
|
|
|
|
def save(self):
|
|
"""The uploaded data file has been validated, accept the submitted data"""
|
|
data = self.validated_data
|
|
|
|
if data.get('clear_existing_bom', False):
|
|
part = data['part']
|
|
|
|
with transaction.atomic():
|
|
part.bom_items.all().delete()
|
|
|
|
|
|
class BomImportExtractSerializer(DataFileExtractSerializer):
|
|
"""Serializer class for exatracting BOM data from an uploaded file.
|
|
|
|
The parent class DataFileExtractSerializer does most of the heavy lifting here.
|
|
"""
|
|
|
|
TARGET_MODEL = BomItem
|
|
|
|
def validate_extracted_columns(self):
|
|
"""Validate that the extracted columns are correct"""
|
|
super().validate_extracted_columns()
|
|
|
|
part_columns = ['part', 'part_name', 'part_ipn', 'part_id']
|
|
|
|
if not any([col in self.columns for col in part_columns]):
|
|
# At least one part column is required!
|
|
raise serializers.ValidationError(_("No part column specified"))
|
|
|
|
def process_row(self, row):
|
|
"""Process a single row from the loaded BOM file"""
|
|
# Skip any rows which are at a lower "level"
|
|
level = row.get('level', None)
|
|
|
|
if level is not None:
|
|
try:
|
|
level = int(level)
|
|
if level != 1:
|
|
# Skip this row
|
|
return None
|
|
except Exception:
|
|
pass
|
|
|
|
# Attempt to extract a valid part based on the provided data
|
|
part_id = row.get('part_id', row.get('part', None))
|
|
part_name = row.get('part_name', row.get('part', None))
|
|
part_ipn = row.get('part_ipn', None)
|
|
|
|
part = None
|
|
|
|
if part_id is not None:
|
|
try:
|
|
part = Part.objects.get(pk=part_id)
|
|
except (ValueError, Part.DoesNotExist):
|
|
pass
|
|
|
|
# No direct match, where else can we look?
|
|
if part is None and (part_name or part_ipn):
|
|
queryset = Part.objects.all()
|
|
|
|
if part_name:
|
|
queryset = queryset.filter(name=part_name)
|
|
|
|
if part_ipn:
|
|
queryset = queryset.filter(IPN=part_ipn)
|
|
|
|
if queryset.exists():
|
|
if queryset.count() == 1:
|
|
part = queryset.first()
|
|
else:
|
|
row['errors']['part'] = _('Multiple matching parts found')
|
|
|
|
if part is None:
|
|
row['errors']['part'] = _('No matching part found')
|
|
else:
|
|
if not part.component:
|
|
row['errors']['part'] = _('Part is not designated as a component')
|
|
|
|
# Update the 'part' value in the row
|
|
row['part'] = part.pk if part is not None else None
|
|
|
|
# Check the provided 'quantity' value
|
|
quantity = row.get('quantity', None)
|
|
|
|
if quantity is None:
|
|
row['errors']['quantity'] = _('Quantity not provided')
|
|
else:
|
|
try:
|
|
quantity = Decimal(quantity)
|
|
|
|
if quantity <= 0:
|
|
row['errors']['quantity'] = _('Quantity must be greater than zero')
|
|
except Exception:
|
|
row['errors']['quantity'] = _('Invalid quantity')
|
|
|
|
return row
|
|
|
|
|
|
class BomImportSubmitSerializer(serializers.Serializer):
|
|
"""Serializer for uploading a BOM against a specified part.
|
|
|
|
A "BOM" is a set of BomItem objects which are to be validated together as a set
|
|
"""
|
|
|
|
items = BomItemSerializer(many=True, required=True)
|
|
|
|
def validate(self, data):
|
|
"""Validate the submitted BomItem data:
|
|
|
|
- At least one line (BomItem) is required
|
|
"""
|
|
items = data['items']
|
|
|
|
if len(items) == 0:
|
|
raise serializers.ValidationError(_("At least one BOM item is required"))
|
|
|
|
data = super().validate(data)
|
|
|
|
return data
|
|
|
|
def save(self):
|
|
"""POST: Perform final save of submitted BOM data:
|
|
|
|
- By this stage each line in the BOM has been validated
|
|
- Individually 'save' (create) each BomItem line
|
|
"""
|
|
data = self.validated_data
|
|
|
|
items = data['items']
|
|
|
|
try:
|
|
with transaction.atomic():
|
|
|
|
for item in items:
|
|
|
|
part = item['part']
|
|
sub_part = item['sub_part']
|
|
|
|
# Ignore duplicate BOM items
|
|
if BomItem.objects.filter(part=part, sub_part=sub_part).exists():
|
|
continue
|
|
|
|
# Create a new BomItem object
|
|
BomItem.objects.create(**item)
|
|
|
|
except Exception as e:
|
|
raise serializers.ValidationError(detail=serializers.as_serializer_error(e))
|