|
@@ -1624,7 +1624,15 @@ namespace LogoForceTestApp.Modules.MainModule.ViewModels
|
|
|
for (int i = 0; i < t_pda.Count; i++)
|
|
|
{
|
|
|
fbarcode.Add(t_pda[i].FBarCode);
|
|
|
- tcpService.Send("192.168.10.15", "print:" + fbarcode[i]);
|
|
|
+ string id = string.Empty;
|
|
|
+ foreach (var item in tcpService.SocketClients.GetClients())
|
|
|
+ {
|
|
|
+ if (item.IP == "192.168.10.15")
|
|
|
+ {
|
|
|
+ id = item.Id;
|
|
|
+ tcpService.Send(id, "print:" + fbarcode[i]);
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
//
|