1
0
mirror of synced 2024-11-24 05:26:03 +03:00

Remove incorrect status

This commit is contained in:
Pavel 2021-04-14 17:55:21 +03:00
parent 0eff0e82a8
commit fdac0ae49a

View File

@ -55,9 +55,6 @@ class OrderStatuses
// Order is closed and now stored in the archive.
public const ARCHIVE = 'ARCHIVE';
// Undocumented.
public const FROZEN_STATUS = 'FROZEN_STATUS';
// List of all order statuses.
public const STATUSES_LIST = [
self::PLACE_ORDER_SUCCESS,
@ -72,7 +69,6 @@ class OrderStatuses
self::RISK_CONTROL,
self::RISK_CONTROL_HOLD,
self::FINISH,
self::ARCHIVE,
self::FROZEN_STATUS
self::ARCHIVE
];
}