- Installa APP: Messaggio in CIMA

- in sistemazione: select compare la scelta di prima.
This commit is contained in:
Surya Paolo
2022-12-07 18:16:23 +01:00
parent 077c2dbd9e
commit 944d121943
29 changed files with 1119 additions and 752 deletions

View File

@@ -264,6 +264,7 @@ export default defineComponent({
const addRow = ref('Aggiungi')
const newRecordBool = ref(false)
const newRecordBoolOld = ref(false)
const editRecordBool = ref(false)
const newRecord: any = ref({})
const recSaved: any = ref({})
@@ -278,6 +279,7 @@ export default defineComponent({
const tablesel = ref('')
const loading = ref(false)
const editOn = ref(false)
const visupagedialog = ref(false)
const myrecdialog = ref(null)
@@ -1818,6 +1820,15 @@ export default defineComponent({
ris.username = userStore.my.username
}
if (userStore.my.profile) {
if (fieldsTable.tableforEnableCircuits.includes(props.prop_mytable)) {
if (!userStore.my.profile.calc.numGoodsAndServices)
userStore.my.profile.calc.numGoodsAndServices = 1
else
userStore.my.profile.calc.numGoodsAndServices += 1
}
}
// console.table(serverData.value)
if (indrec >= 0)
serverData.value[indrec] = ris
@@ -2153,6 +2164,8 @@ export default defineComponent({
t,
exportTable,
showNotification,
editOn,
newRecordBoolOld,
}
}
})