Poter inserire un Ordine anche per un altra persona... (Modalità Cassa)

This commit is contained in:
Surya Paolo
2024-01-16 23:00:15 +01:00
parent 62267ef618
commit 40076e3e1d
23 changed files with 144 additions and 30 deletions

View File

@@ -22,6 +22,7 @@ export default defineComponent({
props: {},
setup() {
const userStore = useUserStore()
const products = useProducts()
const { t } = useI18n();
function mounted() {
@@ -37,6 +38,7 @@ export default defineComponent({
toolsext,
shared_consts,
t,
products,
}
}
})

View File

@@ -1,6 +1,6 @@
<template>
<q-page>
<CTitleBanner :title="t('ecomm.carrello')"></CTitleBanner>
<CTitleBanner :title="t('ecomm.carrello_di', {user: products.userActive.username})"></CTitleBanner>
<CCart>
</CCart>
</q-page>