张松男 3 years ago
parent
commit
d93efc31dd
  1. 2
      ServicesCenter/WCF/OpcServerHost/App.config
  2. 15
      ServicesCenter/WCF/OpcServerHost/OpcDeal/ParaInit.cs

2
ServicesCenter/WCF/OpcServerHost/App.config

@ -3,7 +3,7 @@
<appSettings> <appSettings>
<add key="ServerAddressIP" value="net.tcp://127.0.0.1:4444/OpcService"/> <add key="ServerAddressIP" value="net.tcp://127.0.0.1:4444/OpcService"/>
<!--<add key="OPCServerIP" value="10.111.226.150" />--> <!--<add key="OPCServerIP" value="10.111.226.150" />-->
<add key="OPCServerIP" value="127.0.0.1" /> <add key="OPCServerIP" value="10.111.144.99" />
<add key="OPCServerName" value="Kepware.KEPServerEX.V6" /> <add key="OPCServerName" value="Kepware.KEPServerEX.V6" />
<!--<add key="OPCServerName" value="kepware.KEPServerEX.V5" />--> <!--<add key="OPCServerName" value="kepware.KEPServerEX.V5" />-->
<add key="PRODUCELINE" value="CFAACD" /> <add key="PRODUCELINE" value="CFAACD" />

15
ServicesCenter/WCF/OpcServerHost/OpcDeal/ParaInit.cs

@ -691,11 +691,8 @@ namespace OpcServerHost.Init
#region 捕获条码扫描完成标记 #region 捕获条码扫描完成标记
if (currentPC.COLUMNCODE == "PLC_Scan_Ok_t")
{
if (currentPC.COLUMNTYPE == OpcEnumGeter.COLUMNTYPE.EQUIPSCANFLAG.GetHashCode().ToString()) if (currentPC.COLUMNTYPE == OpcEnumGeter.COLUMNTYPE.EQUIPSCANFLAG.GetHashCode().ToString())
{ {
#region 提示扫描条码完成 #region 提示扫描条码完成
if (itemValue == null) if (itemValue == null)
@ -744,17 +741,20 @@ namespace OpcServerHost.Init
string item = parameter.MACHINECODDE + ":" + parameter.MOLDNUMBER + ":" + parameter.COLUMNCODE; string item = parameter.MACHINECODDE + ":" + parameter.MOLDNUMBER + ":" + parameter.COLUMNCODE;
var result = opcplcConnection.ReadtagValue(opcItemDict[item]); var result = opcplcConnection.ReadtagValue(opcItemDict[item]);
//var result = (object)"[0.25.68.48.52.67.82.69.87.85.70.76.50.49.49.50.49.53.48.48.49.83.68.48.48.48.49]";
if (result != null) if (result != null)
{ {
ASCIIEncoding asciiEncoding = new ASCIIEncoding(); ASCIIEncoding asciiEncoding = new ASCIIEncoding();
var product_str = result.ToString().Replace("[","").Replace("]", "").Split('.');
var count = Convert.ToInt32(product_str[1]) - 1; var arraysList = (Array[])result;
var count = Convert.ToInt32(arraysList[1]) - 1;
//var count = 24;
var productCode = ""; var productCode = "";
for (int c = 0; c <= count; c++) for (int c = 0; c <= count; c++)
{ {
byte[] byteArray = new byte[] { Convert.ToByte(product_str[c + 2]) }; byte[] byteArray = new byte[] { Convert.ToByte(arraysList[c + 2]) };
productCode += asciiEncoding.GetString(byteArray); productCode += asciiEncoding.GetString(byteArray);
} }
parameter.PARAVALUE = productCode; parameter.PARAVALUE = productCode;
@ -813,7 +813,6 @@ namespace OpcServerHost.Init
#endregion #endregion
} }
}
#endregion #endregion
#region 中断 #region 中断

Loading…
Cancel
Save