chore: Merged fiori into bookstore and tests into subprojects

This commit is contained in:
Daniel Hutzel
2025-07-17 13:54:32 +02:00
parent dcb0c0394a
commit c10ca17546
83 changed files with 2817 additions and 538 deletions

View File

@@ -0,0 +1,10 @@
//
// Add Author.age and .lifetime with a DB-specific function
//
using { AdminService } from '@capire/bookshop';
extend projection AdminService.Authors with {
strftime('%Y',dateOfDeath)-strftime('%Y',dateOfBirth) as age: Integer,
strftime('%Y',dateOfBirth) || ' ' || strftime('%Y',dateOfDeath) as lifetime : String
}