Skip to content

Commit

Permalink
Freitag 15:00
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Hornburger committed Mar 15, 2024
1 parent e31d9f1 commit f4f47ad
Showing 1 changed file with 25 additions and 7 deletions.
32 changes: 25 additions & 7 deletions src/database/projektpunktedbclass.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,20 +26,38 @@ export class ProjektpunkteDBClass {

ProjektpunktemodelClass = model(this.Const.ProjektpunktecollectionName, Projektpunktshema);

ProjektpunktemodelClass.find( { Deleted: deleted, Projektkey: projektkey, Schnellaufgabe: schnellaufgabe } ).then((data: any) => {
if(schnellaufgabe === true) {

data.forEach((projektpunkt) => {
ProjektpunktemodelClass.find( { Deleted: deleted, Projektkey: projektkey, Schnellaufgabe: true }).then((data: any) => {

Liste.push(projektpunkt._doc);
data.forEach((projektpunkt) => {

Liste.push(projektpunkt._doc);
});

resolve(Liste);

}).catch((error: any) => {

reject(error);
});
}
else {

resolve(Liste);
ProjektpunktemodelClass.find( { Deleted: deleted, Projektkey: projektkey }).then((data: any) => {

}).catch((error: any) => {
data.forEach((projektpunkt) => {

reject(error);
});
Liste.push(projektpunkt._doc);
});

resolve(Liste);

}).catch((error: any) => {

reject(error);
});
}
});

} catch (error) {
Expand Down

0 comments on commit f4f47ad

Please sign in to comment.