Controllare che le notifiche per gli Eventi arrivino agli utenti (se io sono in una provincia mi deve arrivare almeno quella)
This commit is contained in:
@@ -390,17 +390,6 @@ export default defineComponent({
|
|||||||
notinsearch: true,
|
notinsearch: true,
|
||||||
useinput: false,
|
useinput: false,
|
||||||
},
|
},
|
||||||
{
|
|
||||||
label: 'Offro/Cerco',
|
|
||||||
table: 'adtypes',
|
|
||||||
key: 'adType',
|
|
||||||
value: tools.getCookie(tools.COOK_SEARCH + 'adtypes', costanti.FILTER_TUTTI, true),
|
|
||||||
arrvalue: [],
|
|
||||||
addall: true,
|
|
||||||
type: costanti.FieldType.select,
|
|
||||||
filter: null,
|
|
||||||
useinput: false,
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: 'Categoria',
|
label: 'Categoria',
|
||||||
table: 'skills',
|
table: 'skills',
|
||||||
@@ -413,6 +402,17 @@ export default defineComponent({
|
|||||||
showcount: true,
|
showcount: true,
|
||||||
useinput: false,
|
useinput: false,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
label: 'Offro/Cerco',
|
||||||
|
table: 'adtypes',
|
||||||
|
key: 'adType',
|
||||||
|
value: tools.getCookie(tools.COOK_SEARCH + 'adtypes', costanti.FILTER_TUTTI, true),
|
||||||
|
arrvalue: [],
|
||||||
|
addall: true,
|
||||||
|
type: costanti.FieldType.select,
|
||||||
|
filter: null,
|
||||||
|
useinput: false,
|
||||||
|
},
|
||||||
/*{
|
/*{
|
||||||
label: 'Specializzazione',
|
label: 'Specializzazione',
|
||||||
table: 'subskills',
|
table: 'subskills',
|
||||||
@@ -750,17 +750,6 @@ export default defineComponent({
|
|||||||
filter: null,
|
filter: null,
|
||||||
tablesel: 'pub_to_share',
|
tablesel: 'pub_to_share',
|
||||||
},*/
|
},*/
|
||||||
{
|
|
||||||
label: 'Offro/Cerco',
|
|
||||||
table: 'adtypes',
|
|
||||||
key: 'adType',
|
|
||||||
value: tools.getCookie(tools.COOK_SEARCH + 'adtypes', costanti.FILTER_TUTTI, true),
|
|
||||||
arrvalue: [],
|
|
||||||
addall: true,
|
|
||||||
type: costanti.FieldType.select,
|
|
||||||
filter: null,
|
|
||||||
useinput: false,
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: 'Settore',
|
label: 'Settore',
|
||||||
table: 'sectorgoods',
|
table: 'sectorgoods',
|
||||||
@@ -785,6 +774,17 @@ export default defineComponent({
|
|||||||
showcount: true,
|
showcount: true,
|
||||||
useinput: false,
|
useinput: false,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
label: 'Offro/Cerco',
|
||||||
|
table: 'adtypes',
|
||||||
|
key: 'adType',
|
||||||
|
value: tools.getCookie(tools.COOK_SEARCH + 'adtypes', costanti.FILTER_TUTTI, true),
|
||||||
|
arrvalue: [],
|
||||||
|
addall: true,
|
||||||
|
type: costanti.FieldType.select,
|
||||||
|
filter: null,
|
||||||
|
useinput: false,
|
||||||
|
},
|
||||||
/*
|
/*
|
||||||
{
|
{
|
||||||
label: 'Consegna',
|
label: 'Consegna',
|
||||||
|
|||||||
@@ -88,8 +88,8 @@
|
|||||||
:col="fieldsTable.getColByColumns(mycolumns, item.key)"
|
:col="fieldsTable.getColByColumns(mycolumns, item.key)"
|
||||||
v-if="
|
v-if="
|
||||||
(item.type === costanti.FieldType.select ||
|
(item.type === costanti.FieldType.select ||
|
||||||
item.type === costanti.FieldType.select_by_server)
|
item.type === costanti.FieldType.select_by_server) &&
|
||||||
&& lengthopt(item, false) > 1
|
lengthopt(item, false) > 1
|
||||||
"
|
"
|
||||||
:label="labelcombo(item)"
|
:label="labelcombo(item)"
|
||||||
v-model:value="item.value"
|
v-model:value="item.value"
|
||||||
@@ -123,7 +123,10 @@
|
|||||||
</div>-->
|
</div>-->
|
||||||
|
|
||||||
<CMySelect
|
<CMySelect
|
||||||
v-if="item.type === costanti.FieldType.multiselect_by_server && lengthopt(item, false) > 1"
|
v-if="
|
||||||
|
item.type === costanti.FieldType.multiselect_by_server &&
|
||||||
|
lengthopt(item, false) > 1
|
||||||
|
"
|
||||||
:col="fieldsTable.getColByColumns(mycolumns, item.key)"
|
:col="fieldsTable.getColByColumns(mycolumns, item.key)"
|
||||||
:multiselect_by_server="true"
|
:multiselect_by_server="true"
|
||||||
:label="labelcombo(item)"
|
:label="labelcombo(item)"
|
||||||
@@ -228,10 +231,12 @@
|
|||||||
|
|
||||||
<div
|
<div
|
||||||
v-if="prop_search || canEdit"
|
v-if="prop_search || canEdit"
|
||||||
class="row justify-center vertical-middle"
|
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
v-if="searchList && finder"
|
||||||
|
class="row justify-evenly q-mb-sm q-mx-sm"
|
||||||
>
|
>
|
||||||
<div class="row justify-around q-mb-sm">
|
|
||||||
<div v-if="searchList && finder">
|
|
||||||
<q-btn
|
<q-btn
|
||||||
dense
|
dense
|
||||||
label="Filtra Ricerca"
|
label="Filtra Ricerca"
|
||||||
@@ -256,7 +261,6 @@
|
|||||||
@click="showNotification = !showNotification"
|
@click="showNotification = !showNotification"
|
||||||
></q-btn>
|
></q-btn>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
<div v-if="prop_search" class="q-mr-sm full-width">
|
<div v-if="prop_search" class="q-mr-sm full-width">
|
||||||
<q-input
|
<q-input
|
||||||
v-model="search"
|
v-model="search"
|
||||||
@@ -550,7 +554,6 @@
|
|||||||
@save="SaveValue"
|
@save="SaveValue"
|
||||||
@show="selItem(row, col)"
|
@show="selItem(row, col)"
|
||||||
@showandsave="showandsel"
|
@showandsave="showandsel"
|
||||||
|
|
||||||
>
|
>
|
||||||
</CMyPopupEdit>
|
</CMyPopupEdit>
|
||||||
</div>
|
</div>
|
||||||
@@ -1421,9 +1424,7 @@
|
|||||||
<q-dialog v-model="showNotification" :maximized="$q.screen.lt.sm">
|
<q-dialog v-model="showNotification" :maximized="$q.screen.lt.sm">
|
||||||
<q-card class="dialog_card">
|
<q-card class="dialog_card">
|
||||||
<q-toolbar class="bg-primary text-white">
|
<q-toolbar class="bg-primary text-white">
|
||||||
<q-toolbar-title>
|
<q-toolbar-title> Notifiche </q-toolbar-title>
|
||||||
Notifiche
|
|
||||||
</q-toolbar-title>
|
|
||||||
<q-btn flat round color="white" icon="close" v-close-popup></q-btn>
|
<q-btn flat round color="white" icon="close" v-close-popup></q-btn>
|
||||||
</q-toolbar>
|
</q-toolbar>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user