mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-28 11:36:44 +00:00
* Trigger a notification when a new SalesOrder is created - Notify the "responsible" owners (excluding the creator) - Add unit test for new notification * Adds notification when a new PurchaseOrder is created * Add notification when a new build order is created - Includes unit tests * Refactor order notification code - Adds a "exclude users" option for sending notifications * Fixes for notification refactoring * make notification a helper * reduce statements togehter * make reuse easier * Add docs * Make context variables clearer * fix assertation * Fix set notation Co-authored-by: Matthias <code@mjmair.com>
266 lines
8.7 KiB
Python
266 lines
8.7 KiB
Python
"""Various unit tests for order models"""
|
|
|
|
from datetime import datetime, timedelta
|
|
|
|
import django.core.exceptions as django_exceptions
|
|
from django.contrib.auth import get_user_model
|
|
from django.contrib.auth.models import Group
|
|
from django.test import TestCase
|
|
|
|
import common.models
|
|
import order.tasks
|
|
from company.models import Company, SupplierPart
|
|
from InvenTree.status_codes import PurchaseOrderStatus
|
|
from part.models import Part
|
|
from stock.models import StockLocation
|
|
from users.models import Owner
|
|
|
|
from .models import PurchaseOrder, PurchaseOrderLineItem
|
|
|
|
|
|
class OrderTest(TestCase):
|
|
"""Tests to ensure that the order models are functioning correctly."""
|
|
|
|
fixtures = [
|
|
'company',
|
|
'supplier_part',
|
|
'price_breaks',
|
|
'category',
|
|
'part',
|
|
'location',
|
|
'stock',
|
|
'order',
|
|
'users',
|
|
]
|
|
|
|
def test_basics(self):
|
|
"""Basic tests e.g. repr functions etc."""
|
|
order = PurchaseOrder.objects.get(pk=1)
|
|
|
|
self.assertEqual(order.get_absolute_url(), '/order/purchase-order/1/')
|
|
|
|
self.assertEqual(str(order), 'PO0001 - ACME')
|
|
|
|
line = PurchaseOrderLineItem.objects.get(pk=1)
|
|
|
|
self.assertEqual(str(line), "100 x ACME0001 from ACME (for PO0001 - ACME)")
|
|
|
|
def test_rebuild_reference(self):
|
|
"""Test that the reference_int field is correctly updated when the model is saved"""
|
|
|
|
order = PurchaseOrder.objects.get(pk=1)
|
|
order.save()
|
|
self.assertEqual(order.reference_int, 1)
|
|
|
|
order.reference = '12345XYZ'
|
|
order.save()
|
|
self.assertEqual(order.reference_int, 12345)
|
|
|
|
def test_overdue(self):
|
|
"""Test overdue status functionality."""
|
|
today = datetime.now().date()
|
|
|
|
order = PurchaseOrder.objects.get(pk=1)
|
|
self.assertFalse(order.is_overdue)
|
|
|
|
order.target_date = today - timedelta(days=5)
|
|
order.save()
|
|
self.assertTrue(order.is_overdue)
|
|
|
|
order.target_date = today + timedelta(days=1)
|
|
order.save()
|
|
self.assertFalse(order.is_overdue)
|
|
|
|
def test_on_order(self):
|
|
"""There should be 3 separate items on order for the M2x4 LPHS part."""
|
|
part = Part.objects.get(name='M2x4 LPHS')
|
|
|
|
open_orders = []
|
|
|
|
for supplier in part.supplier_parts.all():
|
|
open_orders += supplier.open_orders()
|
|
|
|
self.assertEqual(len(open_orders), 4)
|
|
|
|
# Test the total on-order quantity
|
|
self.assertEqual(part.on_order, 1400)
|
|
|
|
def test_add_items(self):
|
|
"""Test functions for adding line items to an order."""
|
|
order = PurchaseOrder.objects.get(pk=1)
|
|
|
|
self.assertEqual(order.status, PurchaseOrderStatus.PENDING)
|
|
self.assertEqual(order.lines.count(), 4)
|
|
|
|
sku = SupplierPart.objects.get(SKU='ACME-WIDGET')
|
|
part = sku.part
|
|
|
|
# Try to order some invalid things
|
|
with self.assertRaises(django_exceptions.ValidationError):
|
|
order.add_line_item(sku, -999)
|
|
|
|
with self.assertRaises(django_exceptions.ValidationError):
|
|
order.add_line_item(sku, 'not a number')
|
|
|
|
# Order the part
|
|
self.assertEqual(part.on_order, 0)
|
|
|
|
order.add_line_item(sku, 100)
|
|
|
|
self.assertEqual(part.on_order, 100)
|
|
self.assertEqual(order.lines.count(), 5)
|
|
|
|
# Order the same part again (it should be merged)
|
|
order.add_line_item(sku, 50)
|
|
self.assertEqual(order.lines.count(), 5)
|
|
self.assertEqual(part.on_order, 150)
|
|
|
|
# Try to order a supplier part from the wrong supplier
|
|
sku = SupplierPart.objects.get(SKU='ZERG-WIDGET')
|
|
|
|
with self.assertRaises(django_exceptions.ValidationError):
|
|
order.add_line_item(sku, 99)
|
|
|
|
def test_pricing(self):
|
|
"""Test functions for adding line items to an order including price-breaks."""
|
|
order = PurchaseOrder.objects.get(pk=7)
|
|
|
|
self.assertEqual(order.status, PurchaseOrderStatus.PENDING)
|
|
self.assertEqual(order.lines.count(), 0)
|
|
|
|
sku = SupplierPart.objects.get(SKU='ZERGM312')
|
|
part = sku.part
|
|
|
|
# Order the part
|
|
self.assertEqual(part.on_order, 0)
|
|
|
|
# Order 25 with manually set high value
|
|
pp = sku.get_price(25)
|
|
order.add_line_item(sku, 25, purchase_price=pp)
|
|
self.assertEqual(part.on_order, 25)
|
|
self.assertEqual(order.lines.count(), 1)
|
|
self.assertEqual(order.lines.first().purchase_price.amount, 200)
|
|
|
|
# Add a few, now the pricebreak should adjust although wrong price given
|
|
order.add_line_item(sku, 10, purchase_price=sku.get_price(25))
|
|
self.assertEqual(part.on_order, 35)
|
|
self.assertEqual(order.lines.count(), 1)
|
|
self.assertEqual(order.lines.first().purchase_price.amount, 8)
|
|
|
|
# Order the same part again (it should be merged)
|
|
order.add_line_item(sku, 100, purchase_price=sku.get_price(100))
|
|
self.assertEqual(order.lines.count(), 1)
|
|
self.assertEqual(part.on_order, 135)
|
|
self.assertEqual(order.lines.first().purchase_price.amount, 1.25)
|
|
|
|
def test_receive(self):
|
|
"""Test order receiving functions."""
|
|
part = Part.objects.get(name='M2x4 LPHS')
|
|
|
|
# Receive some items
|
|
line = PurchaseOrderLineItem.objects.get(id=1)
|
|
|
|
order = line.order
|
|
loc = StockLocation.objects.get(id=1)
|
|
|
|
# There should be two lines against this order
|
|
self.assertEqual(len(order.pending_line_items()), 4)
|
|
|
|
# Should fail, as order is 'PENDING' not 'PLACED"
|
|
self.assertEqual(order.status, PurchaseOrderStatus.PENDING)
|
|
|
|
with self.assertRaises(django_exceptions.ValidationError):
|
|
order.receive_line_item(line, loc, 50, user=None)
|
|
|
|
order.place_order()
|
|
|
|
self.assertEqual(order.status, PurchaseOrderStatus.PLACED)
|
|
|
|
order.receive_line_item(line, loc, 50, user=None)
|
|
|
|
self.assertEqual(line.remaining(), 50)
|
|
|
|
self.assertEqual(part.on_order, 1350)
|
|
|
|
# Try to order some invalid things
|
|
with self.assertRaises(django_exceptions.ValidationError):
|
|
order.receive_line_item(line, loc, -10, user=None)
|
|
|
|
with self.assertRaises(django_exceptions.ValidationError):
|
|
order.receive_line_item(line, loc, 'not a number', user=None)
|
|
|
|
# Receive the rest of the items
|
|
order.receive_line_item(line, loc, 50, user=None)
|
|
|
|
line = PurchaseOrderLineItem.objects.get(id=2)
|
|
|
|
order.receive_line_item(line, loc, 500, user=None)
|
|
|
|
self.assertEqual(part.on_order, 800)
|
|
self.assertEqual(order.status, PurchaseOrderStatus.PLACED)
|
|
|
|
for line in order.pending_line_items():
|
|
order.receive_line_item(line, loc, line.quantity, user=None)
|
|
|
|
self.assertEqual(order.status, PurchaseOrderStatus.COMPLETE)
|
|
|
|
def test_overdue_notification(self):
|
|
"""Test overdue purchase order notification
|
|
|
|
Ensure that a notification is sent when a PurchaseOrder becomes overdue
|
|
"""
|
|
po = PurchaseOrder.objects.get(pk=1)
|
|
|
|
# Created by 'sam'
|
|
po.created_by = get_user_model().objects.get(pk=4)
|
|
|
|
# Responsible : 'Engineers' group
|
|
responsible = Owner.create(obj=Group.objects.get(pk=2))
|
|
po.responsible = responsible
|
|
|
|
# Target date = yesterday
|
|
po.target_date = datetime.now().date() - timedelta(days=1)
|
|
po.save()
|
|
|
|
# Check for overdue purchase orders
|
|
order.tasks.check_overdue_purchase_orders()
|
|
|
|
for user_id in [2, 3, 4]:
|
|
messages = common.models.NotificationMessage.objects.filter(
|
|
category='order.overdue_purchase_order',
|
|
user__id=user_id,
|
|
)
|
|
|
|
self.assertTrue(messages.exists())
|
|
|
|
msg = messages.first()
|
|
|
|
self.assertEqual(msg.target_object_id, 1)
|
|
self.assertEqual(msg.name, 'Overdue Purchase Order')
|
|
|
|
def test_new_po_notification(self):
|
|
"""Test that a notification is sent when a new PurchaseOrder is created
|
|
|
|
- The responsible user(s) should receive a notification
|
|
- The creating user should *not* receive a notification
|
|
"""
|
|
|
|
PurchaseOrder.objects.create(
|
|
supplier=Company.objects.get(pk=1),
|
|
reference='XYZABC',
|
|
created_by=get_user_model().objects.get(pk=3),
|
|
responsible=Owner.create(obj=get_user_model().objects.get(pk=4)),
|
|
)
|
|
|
|
messages = common.models.NotificationMessage.objects.filter(
|
|
category='order.new_purchaseorder',
|
|
)
|
|
|
|
self.assertEqual(messages.count(), 1)
|
|
|
|
# A notification should have been generated for user 4 (who is a member of group 3)
|
|
self.assertTrue(messages.filter(user__pk=4).exists())
|
|
|
|
# However *no* notification should have been generated for the creating user
|
|
self.assertFalse(messages.filter(user__pk=3).exists())
|