- modifiche al catalogo

- tolta la richiesta di accettazione dei RIS, che ora vengono accettati automaticamente.
This commit is contained in:
Surya Paolo
2024-07-03 13:22:57 +02:00
parent 2ffcf56625
commit 8e711d0f63
50 changed files with 1882 additions and 1390 deletions

View File

@@ -30,6 +30,7 @@ import { useI18n } from '@/boot/i18n'
import { emitKeypressEvents } from 'readline'
import { costanti } from '@costanti'
import objectId from '@src/js/objectId'
import { useProducts } from '@src/store/Products'
export default defineComponent({
name: 'CMyEditElem',
@@ -82,6 +83,8 @@ export default defineComponent({
const enableAdd = ref(true)
const tabadd = ref('tools')
const Products = useProducts()
const neworder = ref(<number | undefined>0)
const myel = toRef(props, 'myelem')
@@ -314,6 +317,7 @@ export default defineComponent({
tabElemsText,
visuadd,
tabadd,
Products,
}
},

View File

@@ -998,7 +998,7 @@
rounded
outlined
v-model="myel.catalogo.productTypes"
:options="tools.SelectListVersione"
:options="shared_consts.VERSIONI_PRODOTTO"
@update:model-value="modifElem"
multiple
dense
@@ -1015,7 +1015,7 @@
rounded
outlined
v-model="myel.catalogo.excludeproductTypes"
:options="tools.SelectListVersione"
:options="shared_consts.VERSIONI_PRODOTTO"
@update:model-value="modifElem"
multiple
dense
@@ -1025,6 +1025,25 @@
map-options
>
</q-select>
<q-select
:behavior="$q.platform.is.ios === true ? 'dialog' : 'menu'"
v-if="enableEdit"
rounded
outlined
v-model="myel.catalogo.Editore"
:options="Products.publishers"
@update:model-value="modifElem"
multiple
dense
label="Editori"
style="width: 150px"
emit-value
map-options
option-value="_id"
option-label="name"
>
</q-select>
</div>
</div>
</div>