Reviewed-on: #416 Reviewed-by: Javi Gallego <jgallego@verdnatura.es>
This commit is contained in:
commit
76f858ba7e
|
@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
## [2420.01]
|
## [2420.01]
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- (Item) => Se añade la opción de añadir un comentario del motivo de hacer una foto
|
||||||
|
|
||||||
## [2418.01]
|
## [2418.01]
|
||||||
|
|
||||||
## [2416.01] - 2024-04-18
|
## [2416.01] - 2024-04-18
|
||||||
|
|
|
@ -106,6 +106,7 @@ globals:
|
||||||
now: Now
|
now: Now
|
||||||
name: Name
|
name: Name
|
||||||
new: New
|
new: New
|
||||||
|
comment: Comment
|
||||||
errors:
|
errors:
|
||||||
statusUnauthorized: Access denied
|
statusUnauthorized: Access denied
|
||||||
statusInternalServerError: An internal server error has ocurred
|
statusInternalServerError: An internal server error has ocurred
|
||||||
|
|
|
@ -106,6 +106,7 @@ globals:
|
||||||
now: Ahora
|
now: Ahora
|
||||||
name: Nombre
|
name: Nombre
|
||||||
new: Nuevo
|
new: Nuevo
|
||||||
|
comment: Comentario
|
||||||
errors:
|
errors:
|
||||||
statusUnauthorized: Acceso denegado
|
statusUnauthorized: Acceso denegado
|
||||||
statusInternalServerError: Ha ocurrido un error interno del servidor
|
statusInternalServerError: Ha ocurrido un error interno del servidor
|
||||||
|
|
|
@ -220,13 +220,20 @@ const onIntrastatCreated = (response, formData) => {
|
||||||
</QIcon>
|
</QIcon>
|
||||||
</div>
|
</div>
|
||||||
</VnRow>
|
</VnRow>
|
||||||
<VnRow class="row q-gutter-md q-mb-md">
|
<VnRow>
|
||||||
<QInput
|
<VnInput
|
||||||
:label="t('basicData.description')"
|
:label="t('basicData.description')"
|
||||||
type="textarea"
|
type="textarea"
|
||||||
v-model="data.description"
|
v-model="data.description"
|
||||||
fill-input
|
fill-input
|
||||||
/>
|
/>
|
||||||
|
<VnInput
|
||||||
|
v-show="data.isPhotoRequested"
|
||||||
|
type="textarea"
|
||||||
|
:label="t('globals.comment')"
|
||||||
|
v-model="data.photoMotivation"
|
||||||
|
fill-input
|
||||||
|
/>
|
||||||
</VnRow>
|
</VnRow>
|
||||||
</template>
|
</template>
|
||||||
</FormModel>
|
</FormModel>
|
||||||
|
|
Loading…
Reference in New Issue