Compare commits

..

3 Commits

Author SHA1 Message Date
Thermo_SIM 50e76bd30c FIx Logs 2021-03-22 18:33:06 +01:00
Thermo_SIM 6f6559ce67 Fix Sheet read 2021-03-22 17:59:30 +01:00
Samuele E. Locatelli 5c2f69b8d2 fix serverconfig 2021-03-22 16:48:56 +01:00
5 changed files with 9 additions and 7 deletions
+1 -1
View File
@@ -4,7 +4,7 @@
<ncVendor>S7NET</ncVendor>
<!-- NO_NC/DEMO/FANUC/SIEMENS/OSAI/S7NET -->
<showNcHMI>false</showNcHMI>
<ncIpAddress>192.168.214.1</ncIpAddress>
<ncIpAddress>192.168.0.102</ncIpAddress>
<ncPort>102</ncPort>
<machineModel>Thermo 2020</machineModel>
<sharedPath>C:\CMS\Recipes\</sharedPath>
+3 -1
View File
@@ -2569,8 +2569,10 @@ namespace Thermo.Active.NC
ThermoModels.HistorySheet sheetRaw = new ThermoModels.HistorySheet();
libraryError = numericalControl.PLC_RHistorySheets(ref sheetRaw);
if (libraryError.IsError())
return libraryError;
if(sheetRaw.newData)
if (sheetRaw.newData)
{
using (HistorySheetsController HSC = new HistorySheetsController())
@@ -12,7 +12,7 @@
}
.main-container th.lastre-recipe,
.main-container td.lastre-recipe {
width: 30%;
width: 20%;
}
.main-container th.lastre-numpezzo,
.main-container td.lastre-numpezzo {
@@ -20,7 +20,7 @@
}
.main-container th.lastre-type,
.main-container td.lastre-type {
width: 10%;
width: 20%;
}
.main-container th.lastre-value,
.main-container td.lastre-value {
@@ -11,13 +11,13 @@
width: 20%;
}
&.lastre-recipe {
width: 30%;
width: 20%;
}
&.lastre-numpezzo {
width: 10%;
}
&.lastre-type {
width: 10%;
width: 20%;
}
&.lastre-value {
width: 30%;
@@ -17,7 +17,7 @@
<td>{{item.recipeName}}</td>
<td class="left">{{item.numDone}}</td>
<td class="left">{{convertType(item.typeVal)}}</td>
<td class="left">{{item.firstVal}} [{{item.secondVal}}, {{item.thirdVal}}]</td>
<td class="left">{{item.firstVal | round(1)}} [{{item.secondVal | round(1)}}, {{item.thirdVal | round(1)}}]</td>
</tr>
</template>
</tbody>