possibilità di modificare un ordine, e anche i totali
This commit is contained in:
@@ -1066,12 +1066,14 @@ export const shared_consts = {
|
||||
RECEIVED: 7,
|
||||
COMPLETED: 6,
|
||||
CANCELED: 10,
|
||||
PREPARED: 15,
|
||||
DELETE_REALLY: 20,
|
||||
},
|
||||
|
||||
OrderStat: {
|
||||
// IN_CART: { label: 'In Carrello', value: 1 }, //IN_CART
|
||||
IN_CORSO: { label: 'In Corso', value: 2, icon: 'fas fa-tasks', color: 'text-black' }, //CHECKOUT_SENT
|
||||
PREPARED: { label: 'Preparati', value: 15, icon: 'fas fa-archive', color: 'text-orange' },
|
||||
CONFERMATI: { label: 'Confermati', value: 3, icon: 'fas fa-calendar', color: 'text-blue' }, //ORDER_CONFIRMED
|
||||
PAGATI: { label: 'Pagati', value: 4, icon: 'money', color: 'text-green' }, //PAYED
|
||||
DELIVERED: { label: 'Consegnato', value: 5, icon: 'fas fa-calendar', color: 'text-blue' }, //DELIVERED
|
||||
@@ -1081,14 +1083,6 @@ export const shared_consts = {
|
||||
CANCELLATI: { label: 'Cancellati', value: 10, icon: 'delete', color: 'text-red' }, //CANCELED
|
||||
},
|
||||
|
||||
OrderStatusView: [
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
6,
|
||||
10,
|
||||
],
|
||||
|
||||
REACTIONS_FIELD:
|
||||
{
|
||||
numseen: 1,
|
||||
@@ -1110,6 +1104,10 @@ export const shared_consts = {
|
||||
label: 'Ordine in Lavorazione',
|
||||
value: 2,
|
||||
},
|
||||
{
|
||||
label: 'Preparato',
|
||||
value: 15,
|
||||
},
|
||||
{
|
||||
label: 'Ordine Confermato',
|
||||
value: 3,
|
||||
@@ -1149,23 +1147,29 @@ export const shared_consts = {
|
||||
color: 'secondary',
|
||||
},
|
||||
{
|
||||
label: 'Conferma Ordine Evaso (e aggiorna Qta in Stock)', //ORDER_CONFIRMED
|
||||
label: '📩 Conferma Ordine Evaso (e aggiorna Qta in Stock)', //ORDER_CONFIRMED
|
||||
value: 3,
|
||||
icon: 'fas fa-calendar-check',
|
||||
color: 'primary',
|
||||
},
|
||||
{
|
||||
label: '📩 Imposta come Consegnato', //DELIVERED
|
||||
value: 5,
|
||||
icon: 'fas fa-shipping-fast',
|
||||
color: 'blue',
|
||||
},
|
||||
{
|
||||
label: 'Imposta come Preparato', //PREPARED
|
||||
value: 15,
|
||||
icon: 'fas fa-archive',
|
||||
color: 'blue',
|
||||
},
|
||||
{
|
||||
label: 'Imposta come Pagato', //PAYED
|
||||
value: 4,
|
||||
icon: 'money',
|
||||
color: 'positive',
|
||||
},
|
||||
{
|
||||
label: 'Imposta come Consegnato', //DELIVERED
|
||||
value: 5,
|
||||
icon: 'fas fa-shipping-fast',
|
||||
color: 'blue',
|
||||
},
|
||||
{
|
||||
label: 'Imposta come Spedito', //DELIVERED
|
||||
value: 5,
|
||||
|
||||
Reference in New Issue
Block a user