initial docker setup

This commit is contained in:
GotPPay
2018-06-14 16:49:28 +02:00
parent bc80b7342e
commit b5f87f27f8
3023 changed files with 985078 additions and 1 deletions

View File

@@ -0,0 +1,44 @@
const MODULE = 'DASHBOARD_';
export const REQUEST_GADGETS = MODULE + 'REQUEST_GADGETS';
export const RECIEVE_GADGETS = MODULE + 'RECIEVE_GADGETS';
export const REQUEST_ORDERS = MODULE + 'REQUEST_ORDERS';
export const RECEIVE_ORDERS = MODULE + 'RECEIVE_ORDERS';
export const REQUEST_NEXT_ACTIONS = MODULE + 'REQUEST_NEXT_ACTIONS';
export const RECIEVE_NEXT_ACTIONS = MODULE + 'RECIEVE_NEXT_ACTIONS';
export const dashboardTexts = {
labels : {
ORDER_CENTRAL: 'Order Central',
NEXT_ACTIONS: 'Next Actions',
NO_ORDERS: 'For the moment you don\'t have any orders. Go to the Co-Market to add packages.',
NO_ACTIONS: 'No actions available.'
},
tableHeaders: {
ORDER: 'Order Number',
ORDER_DATE: 'Order Date',
PLACED_BY: 'Placed By',
REFERENCE: 'Location Details',
STATUS: 'Status',
ON_DELIVERY: 'On Delivery',
MONTHLY: 'Monthly'
},
buttons: {
DETAILS: 'Details'
},
statuses: {
open: 'Open',
'in-progress': 'In Progress',
production: 'Production',
'end-of-life': 'End Of Life',
canceled: 'Canceled',
'not-accepted': 'Not Accepted',
invalid: 'Invalid',
pending: 'Pending'
},
messages: {
ORDER_PLACED: 'Thank you for your order! You will be able to see the progress of it in the Details section of your order'
}
}