- Gestore Ordini GAS (aggiornato)
- Possibilità di modificare un record, click sulla matita rossa. - corretto altre sistemazioni sui valori di minimo e massimo quantità.
This commit is contained in:
@@ -10,11 +10,13 @@ import { CTitleBanner } from '../../../components/CTitleBanner'
|
||||
import { CGridTableRec } from '../../../components/CGridTableRec'
|
||||
|
||||
import MixinMetaTags from '../../../mixins/mixin-metatags'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'GasOrdini',
|
||||
components: { CImgText, CCard, CMyPage, CTitleBanner, CGridTableRec },
|
||||
setup() {
|
||||
const { t } = useI18n();
|
||||
const pagination = {
|
||||
sortBy: 'name',
|
||||
descending: false,
|
||||
@@ -28,6 +30,7 @@ export default defineComponent({
|
||||
return {
|
||||
colTableGasordine,
|
||||
setmeta,
|
||||
t,
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
<template>
|
||||
<CMyPage title="Gas Ordini" imgbackground="/images/fornitori.jpg" sizes="max-height: 120px">
|
||||
<CMyPage :title="t('pages.gestoreordinigas')" imgbackground="/images/fornitori.jpg" sizes="max-height: 120px">
|
||||
<span>{{
|
||||
setmeta({
|
||||
title: 'Gas Ordini',
|
||||
title: t('pages.gestoreordinigas'),
|
||||
description: '',
|
||||
keywords: '',
|
||||
})
|
||||
@@ -10,10 +10,10 @@
|
||||
</span>
|
||||
|
||||
<div class="q-ma-sm q-gutter-sm q-pa-xs">
|
||||
<CTitleBanner title="Gas Ordini"></CTitleBanner>
|
||||
<CGridTableRec prop_mytable="gasordines" prop_mytitle="Lista Gas Ordini" :prop_mycolumns="colTableGasordine"
|
||||
prop_colkey="name" nodataLabel="Nessun Gas Ordine"
|
||||
noresultLabel="Il filtro selezionato non ha trovato nessun risultato">
|
||||
<CTitleBanner :title="t('pages.gestoreordinigas')"></CTitleBanner>
|
||||
<CGridTableRec prop_mytable="gasordines" :prop_mytitle="t('pages.gestoreordinigas')" :prop_mycolumns="colTableGasordine"
|
||||
prop_colkey="name" nodataLabel="Nessun Gas"
|
||||
noresultLabel="Il filtro selezionato non ha trovato nessun GAS">
|
||||
|
||||
</CGridTableRec>
|
||||
</div>
|
||||
|
||||
@@ -48,14 +48,6 @@ export default defineComponent({
|
||||
preserveNullAndEmptyArrays: true,
|
||||
},
|
||||
},
|
||||
/*{
|
||||
$lookup: {
|
||||
from: 'productinfos',
|
||||
localField: 'product.idProductInfo',
|
||||
foreignField: '_id',
|
||||
as: 'productInfo',
|
||||
},
|
||||
},*/
|
||||
{
|
||||
$unwind: {
|
||||
path: '$productInfo',
|
||||
|
||||
Reference in New Issue
Block a user