File tree Expand file tree Collapse file tree
src/main/java/de/rwth/idsg/steve/ocpp/converter Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -84,7 +84,11 @@ public StatusNotificationRequest convertRequest(ocpp.cs._2012._06.StatusNotifica
8484 return new StatusNotificationRequest ()
8585 .withConnectorId (request .getConnectorId ())
8686 .withStatus (status )
87- .withErrorCode (errorCode );
87+ .withErrorCode (errorCode )
88+ .withInfo (request .getInfo ())
89+ .withTimestamp (request .getTimestamp ())
90+ .withVendorErrorCode (request .getVendorErrorCode ())
91+ .withVendorId (request .getVendorId ());
8892 }
8993
9094 @ Override
@@ -114,7 +118,8 @@ public StartTransactionRequest convertRequest(ocpp.cs._2012._06.StartTransaction
114118 .withConnectorId (request .getConnectorId ())
115119 .withIdTag (request .getIdTag ())
116120 .withMeterStart (request .getMeterStart ())
117- .withTimestamp (request .getTimestamp ());
121+ .withTimestamp (request .getTimestamp ())
122+ .withReservationId (request .getReservationId ());
118123 }
119124
120125 /**
You can’t perform that action at this time.
0 commit comments