Compare commits
2 Commits
0df6c26ed6
...
947ffaa11c
| Author | SHA1 | Date |
|---|---|---|
|
|
947ffaa11c | |
|
|
1141a741b9 |
|
|
@ -337,6 +337,22 @@ function InformationSodistorehome(props: InformationSodistorehomeProps) {
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<TextField
|
||||||
|
label={
|
||||||
|
<FormattedMessage
|
||||||
|
id="batteryClusterNumber"
|
||||||
|
defaultMessage="Battery Cluster Number"
|
||||||
|
/>
|
||||||
|
}
|
||||||
|
name="batteryClusterNumber"
|
||||||
|
value={formValues.batteryClusterNumber}
|
||||||
|
onChange={handleChange}
|
||||||
|
variant="outlined"
|
||||||
|
fullWidth
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<TextField
|
<TextField
|
||||||
label={
|
label={
|
||||||
|
|
|
||||||
|
|
@ -237,6 +237,22 @@ function SodistorehomeInstallationForm(props: SodistorehomeInstallationFormPros)
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<TextField
|
||||||
|
label={
|
||||||
|
<FormattedMessage
|
||||||
|
id="batteryClusterNumber"
|
||||||
|
defaultMessage="Battery Cluster Number"
|
||||||
|
/>
|
||||||
|
}
|
||||||
|
name="batteryClusterNumber"
|
||||||
|
value={formValues.batteryClusterNumber}
|
||||||
|
onChange={handleChange}
|
||||||
|
variant="outlined"
|
||||||
|
fullWidth
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<TextField
|
<TextField
|
||||||
label={
|
label={
|
||||||
|
|
|
||||||
|
|
@ -15,6 +15,7 @@ export interface I_Installation extends I_S3Credentials {
|
||||||
information: string;
|
information: string;
|
||||||
inverterSN: string;
|
inverterSN: string;
|
||||||
dataloggerSN: string;
|
dataloggerSN: string;
|
||||||
|
batteryClusterNumber: number;
|
||||||
parentId: number;
|
parentId: number;
|
||||||
s3WriteKey: string;
|
s3WriteKey: string;
|
||||||
s3WriteSecret: string;
|
s3WriteSecret: string;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue