1
0
Fork 0
forked from Kispi/Core

feat(webapp): add missing students export
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Simon Giesel 2023-07-14 12:12:05 +02:00
parent d92696e2ff
commit dd23862e9d
2 changed files with 34 additions and 1 deletions

View file

@ -67,7 +67,10 @@
<MagnifyingGlassIcon class="h-6 w-6" />Verwaltung
</template>
<div class="mt-4 flex h-full flex-col gap-4">
<button class="btn-disabled btn">
<button
class="btn"
@click="showMissingStudentsPrintWindow"
>
<QueueListIcon class="h-5 w-5" />
Fehlende Schüler
</button>
@ -351,6 +354,30 @@ function showCreatedCompaniesPrintWindow(): void {
}
}
async function showMissingStudentsPrintWindow(): Promise<void> {
const printWindow = window.open('', '', 'height=400,width=800');
const missingStudents = await AccountService.getMissingStudents();
if(!printWindow) {
alert('Druckansicht konnte nicht erstellt werden.');
} else {
printWindow.document.write('<html><head><title>Fehlende Schüler</title></head><body>');
printWindow.document.write(`<h1>Fehlende Schüler am ${DateService.toShortString(new Date())}</h1>`);
printWindow.document.write('<table style="border-collapse: collapse;">');
printWindow.document.write('<tbody>');
printWindow.document.write('<tr><th style="padding: 1rem; border: 1px solid black">Schüler</th>');
printWindow.document.write('<th style="padding: 1rem; border: 1px solid black">Klasse</th></tr>');
for(const student of missingStudents) {
printWindow.document.write(`<tr><td style="padding: 1rem; border: 1px solid black">${student.firstName} ${student.lastName}</td>`);
printWindow.document.write(`<td style="padding: 1rem; border: 1px solid black">${student.grade}</td></tr>`);
}
printWindow.document.write('</tbody>');
printWindow.document.write('</table>');
printWindow.document.write('</body></html>');
printWindow.document.close();
printWindow.print();
}
}
onMounted(async () => {
settings.value = await SettingsService.getSettings();
minWage.value = settings.value.minWage / 100;

View file

@ -1,5 +1,6 @@
import { RecordSubscription, UnsubscribeFunc } from 'pocketbase';
import { AccountsListResponse, AccountsRecord, AccountsResponse, Collections } from '../types/pocketbase.types';
import { DateService } from './date.service';
import { PocketbaseService } from './pocketbase.service';
const COLLECTION = PocketbaseService.getApi().collection(Collections.Accounts);
@ -31,6 +32,11 @@ export class AccountService {
public static async updateWage(accountId: string, wageFactor: number): Promise<AccountsResponse> {
return COLLECTION.update(accountId, { wageFactor });
}
public static async getMissingStudents(): Promise<AccountsResponse[]> {
return ((await COLLECTION.getFullList<AccountsResponse>()).filter(
(account: AccountsResponse) => !DateService.isToday(new Date(account.lastCheckIn)),
));
}
public static async subscribeToAccountChanges(
callback: (data: RecordSubscription<AccountsResponse>)=> void,
): Promise<UnsubscribeFunc> {