@@ -346,7 +346,7 @@ object JSONFactory_BERLIN_GROUP_1_3 extends CustomJsonFormats with MdcLoggable{
346346 Some (balances.filter(_.accountId.equals(x.accountId)).flatMap(balance => (List (CoreAccountBalanceJson (
347347 balanceAmount = AmountOfMoneyV13 (x.currency, balance.balanceAmount.toString()),
348348 balanceType = balance.balanceType,
349- lastChangeDateTime = balance.lastChangeDateTime.map(APIUtil .DateWithMsAndTimeZoneOffset .format(_))
349+ lastChangeDateTime = balance.lastChangeDateTime.map(APIUtil .DateWithMsFormat .format(_))
350350 )))))
351351 }else {
352352 None
@@ -432,7 +432,7 @@ object JSONFactory_BERLIN_GROUP_1_3 extends CustomJsonFormats with MdcLoggable{
432432 Some (balances.filter(_.accountId.equals(bankAccount.accountId)).flatMap(balance => (List (CoreAccountBalanceJson (
433433 balanceAmount = AmountOfMoneyV13 (bankAccount.currency, balance.balanceAmount.toString()),
434434 balanceType = balance.balanceType,
435- lastChangeDateTime = balance.lastChangeDateTime.map(APIUtil .DateWithMsAndTimeZoneOffset .format(_))
435+ lastChangeDateTime = balance.lastChangeDateTime.map(APIUtil .DateWithMsFormat .format(_))
436436 )))))
437437 } else {
438438 None
@@ -477,7 +477,7 @@ object JSONFactory_BERLIN_GROUP_1_3 extends CustomJsonFormats with MdcLoggable{
477477 `balances` = accountBalances.map(accountBalance => AccountBalance (
478478 balanceAmount = AmountOfMoneyV13 (bankAccount.currency, accountBalance.balanceAmount.toString()),
479479 balanceType = accountBalance.balanceType,
480- lastChangeDateTime = accountBalance.lastChangeDateTime.map(APIUtil .DateWithMsAndTimeZoneOffset .format(_)),
480+ lastChangeDateTime = accountBalance.lastChangeDateTime.map(APIUtil .DateWithMsFormat .format(_)),
481481 referenceDate = accountBalance.referenceDate,
482482 )
483483 ))
@@ -614,8 +614,8 @@ object JSONFactory_BERLIN_GROUP_1_3 extends CustomJsonFormats with MdcLoggable{
614614 else
615615 transaction.amount.get.toString()
616616 ),
617- bookingDate = transaction.startDate.map(APIUtil .DateWithMsAndTimeZoneOffset .format(_)).getOrElse(" " ),
618- valueDate = transaction.finishDate.map(APIUtil .DateWithMsAndTimeZoneOffset .format(_)).getOrElse(" " ),
617+ bookingDate = transaction.startDate.map(APIUtil .DateWithMsFormat .format(_)).getOrElse(" " ),
618+ valueDate = transaction.finishDate.map(APIUtil .DateWithMsFormat .format(_)).getOrElse(" " ),
619619 remittanceInformationUnstructured = transaction.description.getOrElse(" " ),
620620 bankTransactionCode = " " ,
621621 )
0 commit comments