- aggiornato scheda e rigenera lista
- corretto filtro sulla Collana
This commit is contained in:
@@ -21,7 +21,7 @@
|
||||
dark
|
||||
color="green"
|
||||
v-model="myvalue"
|
||||
:label="col.title ? col.title : col.label"
|
||||
:label="title ? title : col.label"
|
||||
@update:model-value="changevalRec"
|
||||
></q-toggle>
|
||||
</div>
|
||||
@@ -30,7 +30,7 @@
|
||||
dark
|
||||
color="green"
|
||||
v-model="myvalue"
|
||||
:label="col.title"
|
||||
:label="title"
|
||||
:disable="
|
||||
(disable && col.name !== 'profile.saw_zoom_presentation') || (!isInModif && !canModify && !canEdit)
|
||||
"
|
||||
@@ -688,6 +688,7 @@
|
||||
:optval="fieldsTable.getKeyByTable(col.jointable)"
|
||||
:optlab="fieldsTable.getLabelByTable(col.jointable)"
|
||||
:opticon="fieldsTable.getIconByTable(col.jointable)"
|
||||
:dense="dense"
|
||||
></CMyChipList>
|
||||
</div>
|
||||
</div>
|
||||
@@ -700,7 +701,7 @@
|
||||
:row="row"
|
||||
:multiple="true"
|
||||
:withToggle="true"
|
||||
:label="col.label ? col.label : t(col.label_trans)"
|
||||
:label="col.label ? col.label : col?.label_trans ? t(col?.label_trans) : ''"
|
||||
:filter_table="col.filter_table"
|
||||
:filter_field="col.filter_field"
|
||||
:value_extra="value_extra"
|
||||
@@ -757,12 +758,14 @@
|
||||
:rec="row"
|
||||
:type="col.fieldtype"
|
||||
:type_out="col.field_outtype"
|
||||
:label="title"
|
||||
@update:value="changevalRec"
|
||||
:value="myvalue"
|
||||
:options="globalStore.getTableJoinByName(col.jointable, col.addall, col.addnone, col.filter)"
|
||||
:optval="fieldsTable.getKeyByTable(col.jointable)"
|
||||
:optlab="fieldsTable.getLabelByTable(col.jointable)"
|
||||
:opticon="fieldsTable.getIconByTable(col.jointable)"
|
||||
:dense="dense"
|
||||
></CMyChipList>
|
||||
</div>
|
||||
</div>
|
||||
@@ -846,6 +849,7 @@
|
||||
:optval="fieldsTable.getKeyByTable(col.jointable)"
|
||||
:optlab="fieldsTable.getLabelByTable(col.jointable)"
|
||||
:opticon="fieldsTable.getIconByTable(col.jointable)"
|
||||
:dense="dense"
|
||||
></CMyChipList>
|
||||
</div>
|
||||
</div>
|
||||
@@ -1009,7 +1013,7 @@
|
||||
<CMyEditor
|
||||
v-if="visueditor"
|
||||
v-model:value="myvalue"
|
||||
:title="col.title"
|
||||
:title="title"
|
||||
@keyup.enter.stop
|
||||
:canModify="canModify"
|
||||
@showandsave="Savedb"
|
||||
@@ -1050,7 +1054,7 @@
|
||||
v-model="myvalue"
|
||||
:disable="col.disable || disable || col.fieldtype === costanti.FieldType.image_and_filename"
|
||||
:readonly="col.disable || disable"
|
||||
:title="col.title ? col.title : col.titlepopupedit"
|
||||
:title="title ? title : col.titlepopupedit"
|
||||
buttons
|
||||
:label-set="t('dialog.save')"
|
||||
:label-cancel="t('dialog.cancel')"
|
||||
@@ -1063,7 +1067,7 @@
|
||||
<div v-if="col.fieldtype === costanti.FieldType.boolean">
|
||||
<q-checkbox
|
||||
v-model="scope.value"
|
||||
:label="col.title ? col.title : col.titlepopupedit"
|
||||
:label="title ? title : col.titlepopupedit"
|
||||
>
|
||||
</q-checkbox>
|
||||
<span v-html="visuValByType(myvalue, col, row)"></span>
|
||||
|
||||
Reference in New Issue
Block a user