add backup load in information tab
This commit is contained in:
parent
b09cf00d78
commit
444a0a29f2
|
|
@ -62,6 +62,7 @@ public class Installation : TreeNode
|
|||
public string InstallationModel { get; set; } = "";
|
||||
public string ExternalEms { get; set; } = "No";
|
||||
public string CouplingType { get; set; } = "DC";
|
||||
public string BackupLoad { get; set; } = "None";
|
||||
|
||||
[Ignore]
|
||||
public String OrderNumbers { get; set; }
|
||||
|
|
|
|||
|
|
@ -294,6 +294,7 @@ public static partial class Db
|
|||
fileConnection.Execute("UPDATE Installation SET ExternalEms = 'No' WHERE ExternalEms IS NULL OR ExternalEms = ''");
|
||||
fileConnection.Execute("UPDATE Installation SET InstallationModel = '' WHERE InstallationModel IS NULL");
|
||||
fileConnection.Execute("UPDATE Installation SET PvStringsPerInverter = '' WHERE PvStringsPerInverter IS NULL");
|
||||
fileConnection.Execute("UPDATE Installation SET BackupLoad = 'None' WHERE BackupLoad IS NULL");
|
||||
|
||||
return fileConnection;
|
||||
//return CopyDbToMemory(fileConnection);
|
||||
|
|
|
|||
|
|
@ -931,6 +931,35 @@ function InformationSodistorehome(props: InformationSodistorehomeProps) {
|
|||
</FormControl>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<FormControl sx={{ m: 1, width: '50ch' }}>
|
||||
<InputLabel
|
||||
shrink
|
||||
sx={{ fontSize: 14, backgroundColor: 'white', px: 0.5 }}
|
||||
>
|
||||
<FormattedMessage id="backupLoad" defaultMessage="Backup Load" />
|
||||
</InputLabel>
|
||||
<Select
|
||||
name="backupLoad"
|
||||
value={formValues.backupLoad || 'None'}
|
||||
onChange={handleChange}
|
||||
inputProps={{ readOnly: !canEdit }}
|
||||
displayEmpty
|
||||
notched
|
||||
>
|
||||
<MenuItem value="Whole">
|
||||
<FormattedMessage id="backupWhole" defaultMessage="Whole house" />
|
||||
</MenuItem>
|
||||
<MenuItem value="Partial">
|
||||
<FormattedMessage id="backupPartial" defaultMessage="Partial" />
|
||||
</MenuItem>
|
||||
<MenuItem value="None">
|
||||
<FormattedMessage id="backupNone" defaultMessage="Not used" />
|
||||
</MenuItem>
|
||||
</Select>
|
||||
</FormControl>
|
||||
</div>
|
||||
|
||||
{isSodistorePro ? (
|
||||
<div>
|
||||
<TextField
|
||||
|
|
|
|||
|
|
@ -29,6 +29,7 @@ export interface I_Installation extends I_S3Credentials {
|
|||
installationModel: string;
|
||||
externalEms: string;
|
||||
couplingType: string;
|
||||
backupLoad: string;
|
||||
|
||||
parentId: number;
|
||||
s3WriteKey: string;
|
||||
|
|
|
|||
|
|
@ -135,6 +135,10 @@
|
|||
"couplingAC": "AC-gekoppelt",
|
||||
"couplingDC": "DC-gekoppelt",
|
||||
"couplingMixed": "Gemischt",
|
||||
"backupLoad": "Notstromfähigkeit",
|
||||
"backupWhole": "Komplettes Haus",
|
||||
"backupPartial": "Teilnetz",
|
||||
"backupNone": "nicht verwendet",
|
||||
"selectModel": "Modell auswählen...",
|
||||
"inverterN": "Wechselrichter {n}",
|
||||
"clusterN": "Cluster {n}",
|
||||
|
|
|
|||
|
|
@ -117,6 +117,10 @@
|
|||
"couplingAC": "AC-coupled",
|
||||
"couplingDC": "DC-coupled",
|
||||
"couplingMixed": "Mixed",
|
||||
"backupLoad": "Backup Load",
|
||||
"backupWhole": "Whole house",
|
||||
"backupPartial": "Partial",
|
||||
"backupNone": "Not used",
|
||||
"selectModel": "Select model...",
|
||||
"inverterN": "Inverter {n}",
|
||||
"clusterN": "Cluster {n}",
|
||||
|
|
|
|||
|
|
@ -129,6 +129,10 @@
|
|||
"couplingAC": "Couplage AC",
|
||||
"couplingDC": "Couplage DC",
|
||||
"couplingMixed": "Mixte",
|
||||
"backupLoad": "Capacité de secours",
|
||||
"backupWhole": "Maison entière",
|
||||
"backupPartial": "Partiel",
|
||||
"backupNone": "Non utilisé",
|
||||
"selectModel": "Sélectionner le modèle...",
|
||||
"inverterN": "Onduleur {n}",
|
||||
"clusterN": "Cluster {n}",
|
||||
|
|
|
|||
|
|
@ -117,6 +117,10 @@
|
|||
"couplingAC": "Accoppiamento AC",
|
||||
"couplingDC": "Accoppiamento DC",
|
||||
"couplingMixed": "Misto",
|
||||
"backupLoad": "Capacità di backup",
|
||||
"backupWhole": "Intera casa",
|
||||
"backupPartial": "Parziale",
|
||||
"backupNone": "Non utilizzato",
|
||||
"selectModel": "Seleziona modello...",
|
||||
"inverterN": "Inverter {n}",
|
||||
"clusterN": "Cluster {n}",
|
||||
|
|
|
|||
Loading…
Reference in New Issue