forked from verdnatura/salix-front
refactor: refs #7354 requested changes
This commit is contained in:
parent
0e9739f2a5
commit
ed4bf3cfa8
|
@ -235,7 +235,7 @@ globals:
|
|||
purchaseRequest: Petición de compra
|
||||
weeklyTickets: Tickets programados
|
||||
formation: Formación
|
||||
locations: Ubicaciones
|
||||
locations: Localizaciones
|
||||
warehouses: Almacenes
|
||||
roles: Roles
|
||||
connections: Conexiones
|
||||
|
|
|
@ -95,7 +95,12 @@ const agencyOptions = ref([]);
|
|||
</VnRow>
|
||||
|
||||
<VnRow>
|
||||
<VnInput v-model="data.inflation" :label="t('Inflation')" clearable />
|
||||
<VnInput
|
||||
v-model="data.inflation"
|
||||
:label="t('Inflation')"
|
||||
type="number"
|
||||
clearable
|
||||
/>
|
||||
<QCheckbox
|
||||
v-model="data.isVolumetric"
|
||||
:label="t('Volumetric')"
|
||||
|
|
|
@ -76,5 +76,5 @@ es:
|
|||
deleteZone: Eliminar zona
|
||||
confirmDeletion: Confirmar eliminación
|
||||
confirmDeletionMessage: Seguro que quieres eliminar este zona?
|
||||
|
||||
Zone deleted: Zona eliminada
|
||||
</i18n>
|
||||
|
|
|
@ -90,7 +90,7 @@ onMounted(async () => {
|
|||
:label="t('deliveryPanel.postcode')"
|
||||
v-model="formData.geoFk"
|
||||
url="Postcodes/location"
|
||||
:fields="['geoFk', 'code', 'townFk']"
|
||||
:fields="['geoFk', 'code', 'townFk', 'countryFk']"
|
||||
sort-by="code, townFk"
|
||||
option-value="geoFk"
|
||||
option-label="code"
|
||||
|
@ -106,7 +106,7 @@ onMounted(async () => {
|
|||
<QItemLabel>{{ opt.code }}</QItemLabel>
|
||||
<QItemLabel caption
|
||||
>{{ opt.town?.province?.name }},
|
||||
{{ opt.town?.province?.country?.country }}</QItemLabel
|
||||
{{ opt.town?.province?.country?.name }}</QItemLabel
|
||||
>
|
||||
</QItemSection>
|
||||
</QItem>
|
||||
|
|
Loading…
Reference in New Issue