From 7362162764d9853169a12b2196860a8338105f82 Mon Sep 17 00:00:00 2001 From: Oliver Date: Fri, 3 Dec 2021 15:20:49 +1100 Subject: [PATCH] Use different colors for "pending" orders status --- InvenTree/InvenTree/status_codes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/InvenTree/InvenTree/status_codes.py b/InvenTree/InvenTree/status_codes.py index 4de0b7ced9..656c1d6e51 100644 --- a/InvenTree/InvenTree/status_codes.py +++ b/InvenTree/InvenTree/status_codes.py @@ -107,7 +107,7 @@ class PurchaseOrderStatus(StatusCode): } colors = { - PENDING: 'primary', + PENDING: 'secondary', PLACED: 'primary', COMPLETE: 'success', CANCELLED: 'danger', @@ -147,7 +147,7 @@ class SalesOrderStatus(StatusCode): } colors = { - PENDING: 'primary', + PENDING: 'secondary', SHIPPED: 'success', CANCELLED: 'danger', LOST: 'warning',