Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 50e76bd30c | |||
| 6f6559ce67 | |||
| 5c2f69b8d2 |
@@ -4,7 +4,7 @@
|
|||||||
<ncVendor>S7NET</ncVendor>
|
<ncVendor>S7NET</ncVendor>
|
||||||
<!-- NO_NC/DEMO/FANUC/SIEMENS/OSAI/S7NET -->
|
<!-- NO_NC/DEMO/FANUC/SIEMENS/OSAI/S7NET -->
|
||||||
<showNcHMI>false</showNcHMI>
|
<showNcHMI>false</showNcHMI>
|
||||||
<ncIpAddress>192.168.214.1</ncIpAddress>
|
<ncIpAddress>192.168.0.102</ncIpAddress>
|
||||||
<ncPort>102</ncPort>
|
<ncPort>102</ncPort>
|
||||||
<machineModel>Thermo 2020</machineModel>
|
<machineModel>Thermo 2020</machineModel>
|
||||||
<sharedPath>C:\CMS\Recipes\</sharedPath>
|
<sharedPath>C:\CMS\Recipes\</sharedPath>
|
||||||
|
|||||||
@@ -2569,8 +2569,10 @@ namespace Thermo.Active.NC
|
|||||||
|
|
||||||
ThermoModels.HistorySheet sheetRaw = new ThermoModels.HistorySheet();
|
ThermoModels.HistorySheet sheetRaw = new ThermoModels.HistorySheet();
|
||||||
libraryError = numericalControl.PLC_RHistorySheets(ref sheetRaw);
|
libraryError = numericalControl.PLC_RHistorySheets(ref sheetRaw);
|
||||||
|
if (libraryError.IsError())
|
||||||
|
return libraryError;
|
||||||
|
|
||||||
if(sheetRaw.newData)
|
if (sheetRaw.newData)
|
||||||
{
|
{
|
||||||
|
|
||||||
using (HistorySheetsController HSC = new HistorySheetsController())
|
using (HistorySheetsController HSC = new HistorySheetsController())
|
||||||
|
|||||||
+2
-2
@@ -12,7 +12,7 @@
|
|||||||
}
|
}
|
||||||
.main-container th.lastre-recipe,
|
.main-container th.lastre-recipe,
|
||||||
.main-container td.lastre-recipe {
|
.main-container td.lastre-recipe {
|
||||||
width: 30%;
|
width: 20%;
|
||||||
}
|
}
|
||||||
.main-container th.lastre-numpezzo,
|
.main-container th.lastre-numpezzo,
|
||||||
.main-container td.lastre-numpezzo {
|
.main-container td.lastre-numpezzo {
|
||||||
@@ -20,7 +20,7 @@
|
|||||||
}
|
}
|
||||||
.main-container th.lastre-type,
|
.main-container th.lastre-type,
|
||||||
.main-container td.lastre-type {
|
.main-container td.lastre-type {
|
||||||
width: 10%;
|
width: 20%;
|
||||||
}
|
}
|
||||||
.main-container th.lastre-value,
|
.main-container th.lastre-value,
|
||||||
.main-container td.lastre-value {
|
.main-container td.lastre-value {
|
||||||
|
|||||||
+2
-2
@@ -11,13 +11,13 @@
|
|||||||
width: 20%;
|
width: 20%;
|
||||||
}
|
}
|
||||||
&.lastre-recipe {
|
&.lastre-recipe {
|
||||||
width: 30%;
|
width: 20%;
|
||||||
}
|
}
|
||||||
&.lastre-numpezzo {
|
&.lastre-numpezzo {
|
||||||
width: 10%;
|
width: 10%;
|
||||||
}
|
}
|
||||||
&.lastre-type {
|
&.lastre-type {
|
||||||
width: 10%;
|
width: 20%;
|
||||||
}
|
}
|
||||||
&.lastre-value {
|
&.lastre-value {
|
||||||
width: 30%;
|
width: 30%;
|
||||||
|
|||||||
+1
-1
@@ -17,7 +17,7 @@
|
|||||||
<td>{{item.recipeName}}</td>
|
<td>{{item.recipeName}}</td>
|
||||||
<td class="left">{{item.numDone}}</td>
|
<td class="left">{{item.numDone}}</td>
|
||||||
<td class="left">{{convertType(item.typeVal)}}</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>
|
</tr>
|
||||||
</template>
|
</template>
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|||||||
Reference in New Issue
Block a user