25 lines
822 B
JavaScript
25 lines
822 B
JavaScript
(function () {
|
|
'use strict';
|
|
|
|
global.dashModule
|
|
.constant('ORDER_STATUSES_ICONS', {
|
|
open: 'glyphicon glyphicon-eye-open',
|
|
'no-process': 'glyphicon glyphicon-eye-open',
|
|
'in-progress': 'glyphicon glyphicon-time',
|
|
processing: 'glyphicon glyphicon-time',
|
|
production: 'glyphicon glyphicon-ok',
|
|
canceled: 'glyphicon glyphicon-remove',
|
|
'end-of-life': 'glyphicon glyphicon-ok'
|
|
})
|
|
.constant('ORDER_STATUSES', {
|
|
open: 'Open',
|
|
'in-progress': 'In Progress',
|
|
production: 'Completed',
|
|
'end-of-life': 'Completed',
|
|
canceled: 'Canceled',
|
|
'not-accepted': 'Not Accepted',
|
|
invalid: 'Invalid',
|
|
pending: 'Pending'
|
|
});
|
|
})();
|