Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OO#157 adding kunde konto daten information in rechnung json extract #731

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ trait BuchhaltungJsonProtocol extends BaseJsonProtocol with LazyLogging with Sta
fields("plz").convertTo[String],
fields("ort").convertTo[String],
fields.get("paymentType").fold(Option.empty[PaymentType])(_.convertTo[Option[PaymentType]]),
fields("kundeKontoDaten").convertTo[KontoDaten],
fields("erstelldat").convertTo[DateTime],
fields("ersteller").convertTo[PersonId],
fields("modifidat").convertTo[DateTime],
Expand Down Expand Up @@ -180,6 +181,7 @@ trait BuchhaltungJsonProtocol extends BaseJsonProtocol with LazyLogging with Sta
"plz" -> obj.plz.toJson,
"ort" -> obj.ort.toJson,
"paymentType" -> obj.paymentType.toJson,
"kundeKontoDaten" -> obj.kundeKontoDaten.toJson,
"erstelldat" -> obj.erstelldat.toJson,
"ersteller" -> obj.ersteller.toJson,
"modifidat" -> obj.modifidat.toJson,
Expand Down Expand Up @@ -214,6 +216,7 @@ trait BuchhaltungJsonProtocol extends BaseJsonProtocol with LazyLogging with Sta
fields("ort").convertTo[String],
fields.get("paymentType").fold(Option.empty[PaymentType])(_.convertTo[Option[PaymentType]]),
fields.get("qrCode").fold(Option.empty[String])(_.convertTo[Option[String]]),
fields("kundeKontoDaten").convertTo[KontoDaten],
fields("erstelldat").convertTo[DateTime],
fields("ersteller").convertTo[PersonId],
fields("modifidat").convertTo[DateTime],
Expand Down Expand Up @@ -247,6 +250,7 @@ trait BuchhaltungJsonProtocol extends BaseJsonProtocol with LazyLogging with Sta
"ort" -> obj.ort.toJson,
"paymentType" -> obj.paymentType.toJson,
"qrCode" -> obj.qrCode.toJson,
"kundeKontoDaten" -> obj.kundeKontoDaten.toJson,
"erstelldat" -> obj.erstelldat.toJson,
"ersteller" -> obj.ersteller.toJson,
"modifidat" -> obj.modifidat.toJson,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,7 @@ case class RechnungDetail(
plz: String,
ort: String,
paymentType: Option[PaymentType],
kundeKontoDaten: KontoDaten,
// modification flags
erstelldat: DateTime,
ersteller: PersonId,
Expand Down Expand Up @@ -250,6 +251,7 @@ case class RechnungDetailReport(
ort: String,
paymentType: Option[PaymentType],
qrCode: Option[String],
kundeKontoDaten: KontoDaten,
// modification flags
erstelldat: DateTime,
ersteller: PersonId,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ trait BuchhaltungRepositoryQueries extends LazyLogging with BuchhaltungDBMapping
.leftJoin(heimlieferungAboMapping as heimlieferungAbo).on(rechnungsPosition.aboId, heimlieferungAbo.id)
.leftJoin(postlieferungAboMapping as postlieferungAbo).on(rechnungsPosition.aboId, postlieferungAbo.id)
.leftJoin(zusatzAboMapping as zusatzAbo).on(rechnungsPosition.aboId, zusatzAbo.id)
.leftJoin(kontoDatenMapping as kontoDaten).on(kontoDaten.kunde, rechnung.kundeId)
.where.eq(rechnung.id, id)
.orderBy(rechnung.rechnungsDatum)
}.one(rechnungMapping(rechnung))
Expand All @@ -142,11 +143,13 @@ trait BuchhaltungRepositoryQueries extends LazyLogging with BuchhaltungDBMapping
rs => postlieferungAboMapping.opt(postlieferungAbo)(rs),
rs => heimlieferungAboMapping.opt(heimlieferungAbo)(rs),
rs => depotlieferungAboMapping.opt(depotlieferungAbo)(rs),
rs => zusatzAboMapping.opt(zusatzAbo)(rs)
rs => zusatzAboMapping.opt(zusatzAbo)(rs),
rs => kontoDatenMapping.opt(kontoDaten)(rs)
)
.map({ (rechnung, kunden, rechnungsPositionen, pl, hl, dl, zusatzAbos) =>
.map({ (rechnung, kunden, rechnungsPositionen, pl, hl, dl, zusatzAbos, kontoDaten) =>
val kunde = kunden.head
val abos = pl ++ hl ++ dl ++ zusatzAbos
val kundeKontoDaten = kontoDaten.head
val rechnungsPositionenDetail = {
for {
rechnungsPosition <- rechnungsPositionen
Expand All @@ -156,7 +159,7 @@ trait BuchhaltungRepositoryQueries extends LazyLogging with BuchhaltungDBMapping
}
}.sortBy(_.sort.getOrElse(0))

copyTo[Rechnung, RechnungDetail](rechnung, "kunde" -> kunde, "rechnungsPositionen" -> rechnungsPositionenDetail)
copyTo[Rechnung, RechnungDetail](rechnung, "kunde" -> kunde, "rechnungsPositionen" -> rechnungsPositionenDetail, "kundeKontoDaten" -> kundeKontoDaten)
}).single
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,7 @@ trait KundenportalRepositoryQueries extends LazyLogging with StammdatenDBMapping
.leftJoin(heimlieferungAboMapping as heimlieferungAbo).on(rechnungsPosition.aboId, heimlieferungAbo.id)
.leftJoin(postlieferungAboMapping as postlieferungAbo).on(rechnungsPosition.aboId, postlieferungAbo.id)
.leftJoin(zusatzAboMapping as zusatzAbo).on(rechnungsPosition.aboId, zusatzAbo.id)
.leftJoin(kontoDatenMapping as kontoDaten).on(kontoDaten.kunde, rechnung.kundeId)
.where.eq(rechnung.id, id)
.and.eq(rechnung.kundeId, owner.kundeId)
.orderBy(rechnung.rechnungsDatum)
Expand All @@ -345,11 +346,13 @@ trait KundenportalRepositoryQueries extends LazyLogging with StammdatenDBMapping
rs => postlieferungAboMapping.opt(postlieferungAbo)(rs),
rs => heimlieferungAboMapping.opt(heimlieferungAbo)(rs),
rs => depotlieferungAboMapping.opt(depotlieferungAbo)(rs),
rs => zusatzAboMapping.opt(zusatzAbo)(rs)
rs => zusatzAboMapping.opt(zusatzAbo)(rs),
rs => kontoDatenMapping.opt(kontoDaten)(rs)
)
.map({ (rechnung, kunden, rechnungsPositionen, pl, hl, dl, za) =>
.map({ (rechnung, kunden, rechnungsPositionen, pl, hl, dl, za, kontoDaten) =>
val kunde = kunden.head
val abos = pl ++ hl ++ dl ++ za
val kundeKontoDaten = kontoDaten.head
val rechnungsPositionenDetail = {
for {
rechnungsPosition <- rechnungsPositionen
Expand All @@ -359,7 +362,7 @@ trait KundenportalRepositoryQueries extends LazyLogging with StammdatenDBMapping
}
}.sortBy(_.sort.getOrElse(0))

copyTo[Rechnung, RechnungDetail](rechnung, "kunde" -> kunde, "rechnungsPositionen" -> rechnungsPositionenDetail)
copyTo[Rechnung, RechnungDetail](rechnung, "kunde" -> kunde, "rechnungsPositionen" -> rechnungsPositionenDetail, "kundeKontoDaten" -> kundeKontoDaten)
}).single
}

Expand Down