Skip to content

Commit

Permalink
Fix Target Date in SEPA File (#245)
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannMaierhofer committed Jun 14, 2024
1 parent cf17124 commit ec112e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/de/jost_net/JVerein/io/AbrechnungSEPA.java
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,7 @@ private void writeSepaFile(AbrechnungSEPAParam param, Basislastschrift lastschri
ls_properties.setProperty("sepaid", epochtime_string);
ls_properties.setProperty("pmtinfid", epochtime_string);
ls_properties.setProperty("sequencetype", "RCUR");
ls_properties.setProperty("targetdate", param.stichtag != null ? ISO_DATE.format(param.stichtag) : SepaUtil.DATE_UNDEFINED);
ls_properties.setProperty("targetdate", param.faelligkeit != null ? ISO_DATE.format(param.faelligkeit) : SepaUtil.DATE_UNDEFINED);
ls_properties.setProperty("type", "CORE");
ls_properties.setProperty("batchbook", "");
int counter = 0;
Expand Down

0 comments on commit ec112e3

Please sign in to comment.