default min e max fido e accumulo, per Circuito
This commit is contained in:
@@ -204,6 +204,7 @@ export const shared_consts = {
|
||||
TABLES_SHOW_ADTYPE: ['myskills', 'mygoods'],
|
||||
|
||||
TABLES_VISU_LISTA_USER: ['myskills', 'mybachecas', 'myhosps', 'mygoods', 'users'],
|
||||
TABLES_FIELDS_DESCR_AND_CITY_AND_USER: ['myskills', 'mybachecas', 'myhosps', 'mygoods'],
|
||||
|
||||
TABLES_ORDER_DATE_UPDATED: ['myskills', 'myhosps', 'mygoods'],
|
||||
TABLES_ORDER_DESCR: ['mygroups'],
|
||||
|
||||
@@ -229,10 +229,7 @@
|
||||
</div>
|
||||
</q-slide-transition>
|
||||
|
||||
<div
|
||||
v-if="prop_search || canEdit"
|
||||
|
||||
>
|
||||
<div v-if="prop_search || canEdit">
|
||||
<div
|
||||
v-if="searchList && finder"
|
||||
class="row justify-evenly q-mb-sm q-mx-sm"
|
||||
@@ -252,6 +249,12 @@
|
||||
{{ getNumFilterSelected() }}
|
||||
</q-badge>
|
||||
</q-btn>
|
||||
<q-btn
|
||||
dense
|
||||
icon="add"
|
||||
color="primary"
|
||||
@click="createNewRecordDialog"
|
||||
/>
|
||||
|
||||
<q-btn
|
||||
dense
|
||||
@@ -1214,7 +1217,7 @@
|
||||
>
|
||||
<q-card class="dialog_card">
|
||||
<q-bar dense class="bg-primary text-white">
|
||||
Nuovo {{ mytitle }}:
|
||||
Aggiungi {{ mytitle }}:
|
||||
<q-space />
|
||||
<q-btn flat round color="white" icon="close" v-close-popup></q-btn>
|
||||
</q-bar>
|
||||
@@ -1266,7 +1269,7 @@
|
||||
</q-card-section>
|
||||
<q-card-actions align="center">
|
||||
<q-btn
|
||||
:label="$t('dialog.save')"
|
||||
:label="$t('dialog.insert')"
|
||||
color="primary"
|
||||
@click="saveNewRecord"
|
||||
></q-btn>
|
||||
|
||||
@@ -181,6 +181,7 @@ const msg_it = {
|
||||
yes: 'Si',
|
||||
no: 'No',
|
||||
save: 'Salva',
|
||||
insert: 'Aggiungi',
|
||||
delete: 'Elimina',
|
||||
cancel: 'Annulla',
|
||||
update: 'Aggiorna',
|
||||
@@ -637,6 +638,7 @@ const msg_it = {
|
||||
rec_already_exist_name: 'Esiste già con questo Nome',
|
||||
rec_already_exist_code: 'Esiste già con questo Link Pagina',
|
||||
rec_already_exist_symbol: 'Esiste già con questo Simbolo',
|
||||
rec_duplicated_descr_city_user: 'l\'annuncio esiste già con questa descrizione',
|
||||
duplicate_username: 'L\'Username è stato già utilizzato',
|
||||
username_not_valid: 'L\'Username non é valido',
|
||||
aportador_not_exist: 'L\'Username di chi ti ha invitato non è presente. Contattaci.',
|
||||
|
||||
@@ -6,6 +6,7 @@ export const serv_constants = {
|
||||
RIS_CODE_EMAIL_ALREADY_VERIFIED: -5,
|
||||
RIS_CODE_EMAIL_VERIFIED: 1,
|
||||
|
||||
RIS_CODE_REC_DUPLICATED_DESCR_CITY_USER: -110,
|
||||
RIS_CODE_REC_ALREADY_EXIST_SYMBOL: -102,
|
||||
RIS_CODE_REC_ALREADY_EXIST_CODE: -101,
|
||||
RIS_CODE_REC_ALREADY_EXIST_NAME: -100,
|
||||
|
||||
@@ -3986,6 +3986,8 @@ export const tools = {
|
||||
this.showNegativeNotif(mythisq, t('reg.err.rec_already_exist_code') + ' ' + msg)
|
||||
} else if (riscode === serv_constants.RIS_CODE_REC_ALREADY_EXIST_SYMBOL) {
|
||||
this.showNegativeNotif(mythisq, t('reg.err.rec_already_exist_symbol') + ' ' + msg)
|
||||
} else if (riscode === serv_constants.RIS_CODE_REC_DUPLICATED_DESCR_CITY_USER) {
|
||||
this.showNegativeNotif(mythisq, t('reg.err.rec_duplicated_descr_city_user') + ' ' + msg)
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
@@ -1093,6 +1093,7 @@ export const useGlobalStore = defineStore('GlobalStore', {
|
||||
return Api.SendReq('/settable', 'POST', mydata)
|
||||
.then((res) => {
|
||||
this.serverError = false
|
||||
console.log('res', res)
|
||||
if (res && res.data) {
|
||||
tools.updateMyData(res.data.ris)
|
||||
if (res.data.rec) {
|
||||
|
||||
@@ -61,8 +61,8 @@ export default defineComponent({
|
||||
numpersone: numpersone,
|
||||
search_username,
|
||||
replace_username,
|
||||
valmin: valmin,
|
||||
valmax: valmax,
|
||||
valmin: tools.convstrToNum(valmin),
|
||||
valmax: tools.convstrToNum(valmax),
|
||||
circuitId,
|
||||
}
|
||||
|
||||
|
||||
@@ -410,6 +410,16 @@
|
||||
label="DEFAULT Max Qta"
|
||||
style="width: 300px"
|
||||
></q-input>
|
||||
<q-select
|
||||
rounded
|
||||
outlined
|
||||
v-model="circuitId"
|
||||
:options="circuitStore.getCircuitsLabelValue()"
|
||||
label="Circuiti"
|
||||
emit-value
|
||||
map-options
|
||||
>
|
||||
</q-select>
|
||||
</div>
|
||||
<div class="row">
|
||||
<q-btn
|
||||
@@ -421,7 +431,8 @@
|
||||
'',
|
||||
'',
|
||||
defpersmin,
|
||||
defpersmax
|
||||
defpersmax,
|
||||
circuitId
|
||||
)
|
||||
"
|
||||
></q-btn>
|
||||
@@ -438,12 +449,29 @@
|
||||
style="width: 300px"
|
||||
></q-input>
|
||||
</div>
|
||||
<q-select
|
||||
rounded
|
||||
outlined
|
||||
v-model="circuitId"
|
||||
:options="circuitStore.getCircuitsLabelValue()"
|
||||
label="Circuiti"
|
||||
emit-value
|
||||
map-options
|
||||
>
|
||||
</q-select>
|
||||
<div class="row">
|
||||
<q-btn
|
||||
label="Imposta Min e Max per i Circuiti Collettivi di DEFAULT"
|
||||
color="primary"
|
||||
@click="
|
||||
EseguiFunz('ImpostaDefMinMaxCollettivi', '', '', defmin, defmax)
|
||||
EseguiFunz(
|
||||
'ImpostaDefMinMaxCollettivi',
|
||||
'',
|
||||
'',
|
||||
defmin,
|
||||
defmax,
|
||||
circuitId
|
||||
)
|
||||
"
|
||||
></q-btn>
|
||||
<br />
|
||||
|
||||
Reference in New Issue
Block a user