Ospitalità

This commit is contained in:
Paolo Arena
2022-05-07 09:22:47 +02:00
parent 200ac47035
commit 11acac03e5
13 changed files with 40 additions and 27 deletions

View File

@@ -1,4 +1,4 @@
APP_VERSION="0.3.16" APP_VERSION="0.3.17"
SERVICE_WORKER_FILE="service-worker.js" SERVICE_WORKER_FILE="service-worker.js"
APP_ID="13" APP_ID="13"
DIRECTORY_LOCAL="newfreeplanet" DIRECTORY_LOCAL="newfreeplanet"

View File

@@ -1,4 +1,4 @@
APP_VERSION="0.3.16" APP_VERSION="0.3.17"
SERVICE_WORKER_FILE="service-worker.js" SERVICE_WORKER_FILE="service-worker.js"
APP_ID="13" APP_ID="13"
DIRECTORY_LOCAL=newfreeplanet DIRECTORY_LOCAL=newfreeplanet

View File

@@ -1,4 +1,4 @@
APP_VERSION="0.3.16" APP_VERSION="0.3.17"
SERVICE_WORKER_FILE="service-worker.js" SERVICE_WORKER_FILE="service-worker.js"
APP_ID="13" APP_ID="13"
DIRECTORY_LOCAL="newfreeplanet" DIRECTORY_LOCAL="newfreeplanet"

View File

@@ -1,4 +1,4 @@
APP_VERSION="0.3.16" APP_VERSION="0.3.17"
SERVICE_WORKER_FILE="service-worker.js" SERVICE_WORKER_FILE="service-worker.js"
APP_ID="12" APP_ID="12"
DIRECTORY_LOCAL="newfreeplanet" DIRECTORY_LOCAL="newfreeplanet"

View File

@@ -1,4 +1,4 @@
APP_VERSION="0.3.16" APP_VERSION="0.3.17"
SERVICE_WORKER_FILE="service-worker.js" SERVICE_WORKER_FILE="service-worker.js"
APP_ID="13" APP_ID="13"
DIRECTORY_LOCAL="newfreeplanet" DIRECTORY_LOCAL="newfreeplanet"

View File

@@ -1,4 +1,4 @@
APP_VERSION="0.3.16" APP_VERSION="0.3.17"
SERVICE_WORKER_FILE="service-worker.js" SERVICE_WORKER_FILE="service-worker.js"
APP_ID="13" APP_ID="13"
DIRECTORY_LOCAL=newfreeplanet DIRECTORY_LOCAL=newfreeplanet

View File

@@ -1,6 +1,6 @@
{ {
"name": "riso", "name": "riso",
"version": "0.3.16", "version": "0.3.17",
"description": "Riso", "description": "Riso",
"productName": "Riso", "productName": "Riso",
"author": "Paolo Arena", "author": "Paolo Arena",

View File

@@ -256,19 +256,27 @@ export const shared_consts = {
}, },
{ {
value: 4, value: 4,
label: 'in camper', label: 'Camper',
}, },
{ {
value: 5, value: 5,
label: 'in tenda', label: 'Roulotte',
}, },
{ {
value: 6, value: 6,
label: 'in giardino', label: 'Tenda',
}, },
{ {
value: 7, value: 7,
label: 'all\'aperto', label: 'Casetta sull\'Albero',
},
{
value: 8,
label: 'Giardino',
},
{
value: 9,
label: 'Aria aperta',
}, },
], ],
@@ -277,7 +285,7 @@ export const shared_consts = {
People: [ People: [
{ {
value: 0, value: 0,
label: 'Nessuna', label: 'Nessuno',
}, },
{ {
value: 1, value: 1,
@@ -327,18 +335,14 @@ export const shared_consts = {
value: 12, value: 12,
label: '12', label: '12',
}, },
{
value: 13,
label: '13',
},
{
value: 14,
label: '14',
},
{ {
value: 15, value: 15,
label: '15', label: '15',
}, },
{
value: 20,
label: '20',
},
], ],
Preferences: [ Preferences: [
@@ -374,6 +378,14 @@ export const shared_consts = {
value: 8, value: 8,
label: 'Sono permessi soggiorni a lungo termine', label: 'Sono permessi soggiorni a lungo termine',
}, },
{
value: 9,
label: 'Cucina Vegetariana',
},
{
value: 10,
label: 'Cucina Vegana',
},
], ],
Regions: [ Regions: [

View File

@@ -10,8 +10,7 @@
calcstat.numUsersReg calcstat.numUsersReg
}} }}
</q-item-label> </q-item-label>
<q-item-label :class="!$q.dark.isActive? 'text-grey-7':'text-white'" style="letter-spacing: 1px;">Persone <q-item-label :class="!$q.dark.isActive? 'text-grey-7':'text-white'" style="letter-spacing: 1px;">Persone Iscritte
Iscritte
</q-item-label> </q-item-label>
</q-item-section> </q-item-section>

View File

@@ -555,7 +555,7 @@ export default defineComponent({
icon: 'flag', icon: 'flag',
}, },
{ {
label: 'Max. Ospiti', label: 'N° max Ospiti',
table: toolsext.TABPEOPLE, table: toolsext.TABPEOPLE,
key: 'numMaxPeopleHosp', key: 'numMaxPeopleHosp',
type: costanti.FieldType.select, type: costanti.FieldType.select,

View File

@@ -958,7 +958,7 @@ const msg_it = {
}, },
hosps: { hosps: {
typeHosp: 'Tipologia', typeHosp: 'Tipologia',
numMaxPeopleHosp: 'Numero Massimo di Ospiti', numMaxPeopleHosp: 'N° max Ospiti',
accomodation: { accomodation: {
title: 'Tipo di Ospitalità', title: 'Tipo di Ospitalità',
location: 'Spazio', location: 'Spazio',

View File

@@ -57,15 +57,16 @@ export const costanti = {
}, },
{ {
visible: true, visible: true,
title: 'Scambio Ospitalità', title: 'Ospitalità',
strsingolo: 'Scambio Ospitalità', strsingolo: 'Ospitalità',
to: '/hosps', to: '/hosps',
icon: 'fas fa-bed', icon: 'fas fa-bed',
color: 'lime-6', color: 'lime-8',
textcolor: '', textcolor: '',
hint: '', hint: '',
disable: false, disable: false,
small: false, small: false,
visuonstat: true,
}, },
{ {
visible: false, visible: false,

View File

@@ -4360,6 +4360,7 @@ export const tools = {
'lime-3': '#e6ee9c', 'lime-3': '#e6ee9c',
'lime-4': '#dce775', 'lime-4': '#dce775',
'lime-6': '#cddc39', 'lime-6': '#cddc39',
'lime-8': '#afb42b',
'limegreen': '#32cd32', 'limegreen': '#32cd32',
'linen': '#faf0e6', 'linen': '#faf0e6',
'magenta': '#ff00ff', 'magenta': '#ff00ff',