Change color of SO status SHIPPED (#9668)
This commit is contained in:
parent
4347e87253
commit
3d71be3d41
|
|
@ -47,7 +47,7 @@ class SalesOrderStatus(StatusCode):
|
|||
_('In Progress'),
|
||||
ColorEnum.primary,
|
||||
) # Order has been issued, and is in progress
|
||||
SHIPPED = 20, _('Shipped'), ColorEnum.success # Order has been shipped to customer
|
||||
SHIPPED = 20, _('Shipped'), ColorEnum.primary # Order has been shipped to customer
|
||||
ON_HOLD = 25, _('On Hold'), ColorEnum.warning # Order is on hold
|
||||
COMPLETE = 30, _('Complete'), ColorEnum.success # Order is complete
|
||||
CANCELLED = 40, _('Cancelled'), ColorEnum.danger # Order has been cancelled
|
||||
|
|
|
|||
Loading…
Reference in New Issue