Skip to content

Commit

Permalink
Sonntag 18:40
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Hornburger committed Jun 23, 2024
1 parent 8d1ea44 commit 3fbea27
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/database/abnahmendbclass.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ export class AbnahmenDBClass {
}
}


public ReadAbnahmenliste(projektkey: string): Promise<any> {

try {
Expand All @@ -55,9 +56,7 @@ export class AbnahmenDBClass {

this.Debug.ShowInfoMessage('Lese Abnahmenliste', 'AbnahmenDBClass', 'ReadAbnahmenliste');

// .sort({Leistung: 1})

AbnahmenmodelClass.find( { Projektkey: projektkey }).then((data: any) => {
AbnahmenmodelClass.find( { Projektkey: projektkey }).sort({Leistung: 1}).then((data: any) => {

data.forEach((abnahme) => {

Expand Down

0 comments on commit 3fbea27

Please sign in to comment.