diverse BugFixes

This commit is contained in:
2024-08-12 17:18:32 +02:00
parent 3a6a64cce9
commit ec0576e7b8
17 changed files with 118 additions and 100 deletions

View File

@@ -56,6 +56,9 @@ export class SelectOptionsService {
getCustomerType(value: string): string {
return this.customerTypes.find(c => c.value === value)?.name;
}
getCustomerSubType(value: string): string {
return this.customerSubTypes.find(c => c.value === value)?.name;
}
getGender(value: string): string {
return this.gender.find(c => c.value === value)?.name;
}