feat: refs #8298 add price optimum input and update translations for bonus and price optimum
gitea/salix-front/pipeline/pr-dev This commit looks good
Details
gitea/salix-front/pipeline/pr-dev This commit looks good
Details
This commit is contained in:
parent
c0d909b3e8
commit
3e06f604bb
|
@ -100,6 +100,16 @@ const agencyOptions = ref([]);
|
|||
required="true"
|
||||
clearable
|
||||
/>
|
||||
<VnInput
|
||||
v-model="data.priceOptimum"
|
||||
:label="t('Price optimum')"
|
||||
type="number"
|
||||
min="0"
|
||||
required="true"
|
||||
clearable
|
||||
/>
|
||||
</VnRow>
|
||||
<VnRow>
|
||||
<VnInput
|
||||
v-model="data.bonus"
|
||||
:label="t('Bonus')"
|
||||
|
@ -107,8 +117,6 @@ const agencyOptions = ref([]);
|
|||
min="0"
|
||||
clearable
|
||||
/>
|
||||
</VnRow>
|
||||
<VnRow>
|
||||
<VnSelect
|
||||
:label="t('Distribution point')"
|
||||
v-model="data.addressFk"
|
||||
|
@ -152,6 +160,7 @@ es:
|
|||
Traveling days: Dias de viaje
|
||||
Closing: Cierre
|
||||
Price: Precio
|
||||
Price optimum: Precio óptimo
|
||||
Bonus: Bonificación
|
||||
Inflation: Inflación
|
||||
Volumetric: Volumétrico
|
||||
|
|
|
@ -182,13 +182,19 @@ onMounted(() => {
|
|||
min="0"
|
||||
/>
|
||||
<VnInput
|
||||
v-model="eventInclusionFormData.bonus"
|
||||
:label="t('zone.bonus')"
|
||||
v-model="eventInclusionFormData.priceOptimum"
|
||||
:label="t('list.priceOptimum')"
|
||||
type="number"
|
||||
min="0"
|
||||
/>
|
||||
</VnRow>
|
||||
<VnRow>
|
||||
<VnInput
|
||||
v-model="eventInclusionFormData.bonus"
|
||||
:label="t('zone.bonus')"
|
||||
type="number"
|
||||
min="0"
|
||||
/>
|
||||
<VnInput
|
||||
v-model="eventInclusionFormData.m3Max"
|
||||
:label="t('zone.m3Max')"
|
||||
|
|
|
@ -22,6 +22,7 @@ list:
|
|||
agency: Agencia
|
||||
close: Cierre
|
||||
price: Precio
|
||||
priceOptimum: Precio óptimo
|
||||
create: Crear zona
|
||||
openSummary: Detalles
|
||||
searchZone: Buscar zonas
|
||||
|
|
Loading…
Reference in New Issue