Skip to content
This repository has been archived by the owner on Aug 24, 2024. It is now read-only.

Commit

Permalink
corr persist insert contract partner
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfliegner committed May 1, 2023
1 parent 81e67c7 commit cc8d9a7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "LifeInsuranceDataModel"
uuid = "4892898e-25d7-46ce-b5c3-dea2164303ac"
authors = ["Michael Fliegner <michael.fliegner@hamburg.de>"]
version = "1.3.1"
version = "1.3.2"

[deps]
BitemporalPostgres = "e513cd14-23e6-48df-acf1-d9bc8fa5674b"
Expand Down
5 changes: 3 additions & 2 deletions src/LifeInsuranceDataModel.jl
Original file line number Diff line number Diff line change
Expand Up @@ -462,8 +462,9 @@ function persistModelStateContract(previous::Dict{String,Any}, current::Dict{Str
@info ("INSERT" * string(i))
let
component = rootcomponent
subcomponent = get_typeof_component(curr)()
create_subcomponent!(component, subcomponent, ToStruct.tostruct(ContractPartnerRefRevision, curr), w)
curr_struct = ToStruct.tostruct(ContractPartnerRefRevision, curr)
subcomponent = get_typeof_component(curr_struct)()
create_subcomponent!(component, subcomponent, curr_struct, w)
end
else
let
Expand Down

2 comments on commit cc8d9a7

@michaelfliegner
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register

Release Notes
ready for release of GenieBuiltLifeProto

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/82960

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v1.3.2 -m "<description of version>" cc8d9a7d2eeba639875fee3eb05cc6f84ed5abc1
git push origin v1.3.2

Please sign in to comment.