Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
angular-gobox / src / constants.js
Size: Mime:
(function() {
    'use strict';

    angular.module('angularGobox')

    .constant('CustomerboxStatus', {
        inStorage: 1,
        atCustomer: 2,
        beingPickedUp: 3,   // legacy
        beingDroppedOff: 4, // legacy
        ended: 5,
        pendingDropOff: 6,
        pendingPickUp: 7
    })

    .constant('BoxType', {
        standard: 1,
        odd: 2
    })

    .constant('TripType', {
        dropOff: 1,
        pickUp: 2
    })

    .constant('TripStatus', {
        awaitingConfirmation: 1,
        confirmed: 2,
        fulfilled: 3,
        cancelled: 4
    })

    ;

})();