From: Jérôme Benoit Date: Tue, 8 Mar 2022 20:01:46 +0000 (+0100) Subject: Add missing payload attributes to boot notification X-Git-Tag: v1.1.53~7 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=29d1e2e70bc8ce223a0e8f4966552c3ae027e297;p=e-mobility-charging-stations-simulator.git Add missing payload attributes to boot notification Signed-off-by: Jérôme Benoit --- diff --git a/src/charging-station/ChargingStation.ts b/src/charging-station/ChargingStation.ts index 76efaf55..1be6e335 100644 --- a/src/charging-station/ChargingStation.ts +++ b/src/charging-station/ChargingStation.ts @@ -953,6 +953,11 @@ export default class ChargingStation { chargePointVendor: this.bootNotificationRequest.chargePointVendor, chargeBoxSerialNumber: this.bootNotificationRequest.chargeBoxSerialNumber, firmwareVersion: this.bootNotificationRequest.firmwareVersion, + chargePointSerialNumber: this.bootNotificationRequest.chargePointSerialNumber, + iccid: this.bootNotificationRequest.iccid, + imsi: this.bootNotificationRequest.imsi, + meterSerialNumber: this.bootNotificationRequest.meterSerialNumber, + meterType: this.bootNotificationRequest.meterType, }, { skipBufferingOnError: true } )) as BootNotificationResponse; @@ -1257,6 +1262,11 @@ export default class ChargingStation { chargePointVendor: this.bootNotificationRequest.chargePointVendor, chargeBoxSerialNumber: this.bootNotificationRequest.chargeBoxSerialNumber, firmwareVersion: this.bootNotificationRequest.firmwareVersion, + chargePointSerialNumber: this.bootNotificationRequest.chargePointSerialNumber, + iccid: this.bootNotificationRequest.iccid, + imsi: this.bootNotificationRequest.imsi, + meterSerialNumber: this.bootNotificationRequest.meterSerialNumber, + meterType: this.bootNotificationRequest.meterType, }, { skipBufferingOnError: true } );