mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-29 03:56:43 +00:00
* Add pre-commit to the stack * exclude static * Add locales to excludes * fix style errors * rename pipeline steps * also wait on precommit * make template matching simpler * Use the same code for python setup everywhere * use step and cache for python setup * move regular settings up into general envs * just use full update * Use invoke instead of static references * make setup actions more similar * use python3 * refactor names to be similar * fix runner version * fix references * remove incidential change * use matrix for os * Github can't do this right now * ignore docstyle errors * Add seperate docstring test * update flake call * do not fail on docstring * refactor setup into workflow * update reference * switch to action * resturcture * add bash statements * remove os from cache * update input checks * make code cleaner * fix boolean * no relative paths * install wheel by python * switch to install * revert back to simple wheel * refactor import export tests * move setup keys back to not disturbe tests * remove docstyle till that is fixed * update references * continue on error * add docstring test * use relativ action references * Change step / job docstrings * update to merge * reformat comments 1 * fix docstrings 2 * fix docstrings 3 * fix docstrings 4 * fix docstrings 5 * fix docstrings 6 * fix docstrings 7 * fix docstrings 8 * fix docstirns 9 * fix docstrings 10 * docstring adjustments * update the remaining docstrings * small docstring changes * fix function name * update support files for docstrings * Add missing args to docstrings * Remove outdated function * Add docstrings for the 'build' app * Make API code cleaner * add more docstrings for plugin app * Remove dead code for plugin settings No idea what that was even intended for * ignore __init__ files for docstrings * More docstrings * Update docstrings for the 'part' directory * Fixes for related_part functionality * Fix removed stuff from merge 99676ee * make more consistent * Show statistics for docstrings * add more docstrings * move specific register statements to make them clearer to understant * More docstrings for common * and more docstrings * and more * simpler call * docstrings for notifications * docstrings for common/tests * Add docs for common/models * Revert "move specific register statements to make them clearer to understant" This reverts commit ca9665462202c2d63f34b4fd920013b1457bbb6d. * use typing here * Revert "Make API code cleaner" This reverts commit 24fb68bd3e1ccfea2ee398c9e18afb01eb340fee. * docstring updates for the 'users' app * Add generic Meta info to simple Meta classes * remove unneeded unique_together statements * More simple metas * Remove unnecessary format specifier * Remove extra json format specifiers * Add docstrings for the 'plugin' app * Docstrings for the 'label' app * Add missing docstrings for the 'report' app * Fix build test regression * Fix top-level files * docstrings for InvenTree/InvenTree * reduce unneeded code * add docstrings * and more docstrings * more docstrings * more docstrings for stock * more docstrings * docstrings for order/views * Docstrings for various files in the 'order' app * Docstrings for order/test_api.py * Docstrings for order/serializers.py * Docstrings for order/admin.py * More docstrings for the order app * Add docstrings for the 'company' app * Add unit tests for rebuilding the reference fields * Prune out some more dead code * remove more dead code Co-authored-by: Oliver Walters <oliver.henry.walters@gmail.com>
101 lines
2.8 KiB
Python
101 lines
2.8 KiB
Python
"""Background task definitions for the BuildOrder app"""
|
|
|
|
from decimal import Decimal
|
|
import logging
|
|
|
|
from django.utils.translation import gettext_lazy as _
|
|
from django.template.loader import render_to_string
|
|
|
|
from allauth.account.models import EmailAddress
|
|
|
|
import build.models
|
|
import InvenTree.helpers
|
|
import InvenTree.tasks
|
|
from InvenTree.ready import isImportingData
|
|
|
|
import part.models as part_models
|
|
|
|
|
|
logger = logging.getLogger('inventree')
|
|
|
|
|
|
def check_build_stock(build: build.models.Build):
|
|
"""Check the required stock for a newly created build order.
|
|
|
|
Send an email out to any subscribed users if stock is low.
|
|
"""
|
|
# Do not notify if we are importing data
|
|
if isImportingData():
|
|
return
|
|
|
|
# Iterate through each of the parts required for this build
|
|
|
|
lines = []
|
|
|
|
if not build:
|
|
logger.error("Invalid build passed to 'build.tasks.check_build_stock'")
|
|
return
|
|
|
|
try:
|
|
part = build.part
|
|
except part_models.Part.DoesNotExist:
|
|
# Note: This error may be thrown during unit testing...
|
|
logger.error("Invalid build.part passed to 'build.tasks.check_build_stock'")
|
|
return
|
|
|
|
for bom_item in part.get_bom_items():
|
|
|
|
sub_part = bom_item.sub_part
|
|
|
|
# The 'in stock' quantity depends on whether the bom_item allows variants
|
|
in_stock = sub_part.get_stock_count(include_variants=bom_item.allow_variants)
|
|
|
|
allocated = sub_part.allocation_count()
|
|
|
|
available = max(0, in_stock - allocated)
|
|
|
|
required = Decimal(bom_item.quantity) * Decimal(build.quantity)
|
|
|
|
if available < required:
|
|
# There is not sufficient stock for this part
|
|
|
|
lines.append({
|
|
'link': InvenTree.helpers.construct_absolute_url(sub_part.get_absolute_url()),
|
|
'part': sub_part,
|
|
'in_stock': in_stock,
|
|
'allocated': allocated,
|
|
'available': available,
|
|
'required': required,
|
|
})
|
|
|
|
if len(lines) == 0:
|
|
# Nothing to do
|
|
return
|
|
|
|
# Are there any users subscribed to these parts?
|
|
subscribers = build.part.get_subscribers()
|
|
|
|
emails = EmailAddress.objects.filter(
|
|
user__in=subscribers,
|
|
)
|
|
|
|
if len(emails) > 0:
|
|
|
|
logger.info(f"Notifying users of stock required for build {build.pk}")
|
|
|
|
context = {
|
|
'link': InvenTree.helpers.construct_absolute_url(build.get_absolute_url()),
|
|
'build': build,
|
|
'part': build.part,
|
|
'lines': lines,
|
|
}
|
|
|
|
# Render the HTML message
|
|
html_message = render_to_string('email/build_order_required_stock.html', context)
|
|
|
|
subject = "[InvenTree] " + _("Stock required for build order")
|
|
|
|
recipients = emails.values_list('email', flat=True)
|
|
|
|
InvenTree.tasks.send_email(subject, '', recipients, html_message=html_message)
|