aggiunto URL x recupero ODL corrente

This commit is contained in:
Samuele E. Locatelli
2018-07-18 12:25:07 +02:00
parent e743cc2f24
commit 0ad9f71750
+19
View File
@@ -1205,6 +1205,25 @@ namespace IOB_WIN
/// <summary>
/// URL per salvataggio contapezzi...
/// </summary>
public string urlGetCurrODL
{
get
{
string answ = "";
try
{
answ = string.Format(@"{0}{1}{2}/getCurrODL/{3}", currIobConf.serverData.MPIP, currIobConf.serverData.MPURL, currIobConf.serverData.CMDALIVE, currIobConf.codIOB);
}
catch (Exception exc)
{
lgError(exc, "Errore in composizione urlGetCurrODL");
}
return answ;
}
}
/// <summary>
/// URL per salvataggio contapezzi...
/// </summary>
public string urlSetPzCount
{
get