Add documentation and enhance Conferma entity with QR code tracking
Some checks failed
Build and Publish / build (push) Failing after 48s

- Add Claude Code documentation (CLAUDE.md) with project overview and development commands
- Add specialized agent configurations (spring-boot-engineer, vue3-frontend-engineer)
- Add feature specifications (check liberatorie, configurazione disponibilità, profilo utente)
- Enhance Conferma entity with codiceQrLink and presenzaConfermata fields
- Update Liquibase changelog and test data for Conferma changes
- Update frontend Conferma component and model with new tracking fields

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-14 19:20:02 +01:00
parent 390d47e264
commit c64f7b3ca4
12 changed files with 575 additions and 11 deletions

View File

@@ -36,6 +36,10 @@
<span>{{ t$('smartbookingApp.conferma.motivoConferma') }}</span>
<jhi-sort-indicator :current-order="propOrder" :reverse="reverse" :field-name="'motivoConferma'"></jhi-sort-indicator>
</th>
<th scope="col" @click="changeOrder('codice')">
<span>{{ t$('smartbookingApp.conferma.codice') }}</span>
<jhi-sort-indicator :current-order="propOrder" :reverse="reverse" :field-name="'codice'"></jhi-sort-indicator>
</th>
<th scope="col" @click="changeOrder('tipoConferma')">
<span>{{ t$('smartbookingApp.conferma.tipoConferma') }}</span>
<jhi-sort-indicator :current-order="propOrder" :reverse="reverse" :field-name="'tipoConferma'"></jhi-sort-indicator>

View File

@@ -4,6 +4,7 @@ import { type IUtenteApp } from '@/shared/model/utente-app.model';
export interface IConferma {
id?: number;
motivoConferma?: string | null;
codice?: string | null;
tipoConferma?: keyof typeof TipoConferma | null;
confermataDa?: IUtenteApp | null;
}
@@ -12,6 +13,7 @@ export class Conferma implements IConferma {
constructor(
public id?: number,
public motivoConferma?: string | null,
public codice?: string | null,
public tipoConferma?: keyof typeof TipoConferma | null,
public confermataDa?: IUtenteApp | null,
) {}