0
0
Fork 0

feat: refs #6600 Add option to add comment for photo motivation

This commit is contained in:
Jorge Penadés 2024-06-03 09:30:37 +02:00
parent 5799a1121b
commit f58b072964
4 changed files with 14 additions and 1 deletions

View File

@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [2420.01]
### Added
- (Item) => Se añade la opción de añadir un comentario del motivo de hacer una foto
## [2418.01]
## [2416.01] - 2024-04-18

View File

@ -106,6 +106,7 @@ globals:
now: Now
name: Name
new: New
comment: Comment
errors:
statusUnauthorized: Access denied
statusInternalServerError: An internal server error has ocurred

View File

@ -106,6 +106,7 @@ globals:
now: Ahora
name: Nombre
new: Nuevo
comment: Comentario
errors:
statusUnauthorized: Acceso denegado
statusInternalServerError: Ha ocurrido un error interno del servidor

View File

@ -220,13 +220,20 @@ const onIntrastatCreated = (response, formData) => {
</QIcon>
</div>
</VnRow>
<VnRow class="row q-gutter-md q-mb-md">
<VnRow>
<QInput
:label="t('basicData.description')"
type="textarea"
v-model="data.description"
fill-input
/>
<VnInput
v-show="data.isPhotoRequested"
type="textarea"
:label="t('globals.comment')"
v-model="data.photoMotivation"
fill-input
/>
</VnRow>
</template>
</FormModel>