COmpletato fix refresh vari segnalati da Gian

This commit is contained in:
Samuele E. Locatelli
2019-07-09 08:32:53 +02:00
parent a630b55423
commit b76d08ab9a
5 changed files with 19 additions and 6 deletions
Vendored
+1 -1
View File
@@ -18,7 +18,7 @@ pipeline {
/* calcolo numero versione... diverso x branch MASTER/DEVELOP */
script {
withEnv(['NEXT_BUILD_NUMBER=1212']) {
withEnv(['NEXT_BUILD_NUMBER=1213']) {
// env.versionNumber = VersionNumber(versionNumberString : '6.6.${BUILD_DATE_FORMATTED, "yyMM"}.${BUILDS_ALL_TIME}', projectStartDate : '2006-01-01', skipFailedBuilds: true)
env.versionNumber = VersionNumber(versionNumberString : '6.6.${BUILD_DATE_FORMATTED, "yyMM"}.${BUILDS_ALL_TIME}', projectStartDate : '2006-01-01', skipFailedBuilds: true, overrideBuildsAllTime: '${NEXT_BUILD_NUMBER}')
env.APP_NAME = 'MAPO'
+3
View File
@@ -139,6 +139,8 @@ namespace MoonProTablet
private void checkAll()
{
// parto: nascondo tutto...
mod_ODL1.hideAll();
fixSelMacc();
memLayer.ML.setSessionVal("TipoLink", "EditMacch");
// imposto idxMacchina x subControl...
@@ -216,6 +218,7 @@ namespace MoonProTablet
protected void ddlSubMacc_SelectedIndexChanged(object sender, EventArgs e)
{
// procedo...
subMaccSel = ddlSubMacc.SelectedValue;
checkAll();
}
@@ -30,5 +30,6 @@ namespace MoonProTablet.WebUserControls
frmView.DataBind();
}
}
}
}
+5
View File
@@ -420,6 +420,11 @@ namespace MoonProTablet.WebUserControls
Response.Redirect("~/ODL");
}
public void hideAll()
{
divDettOdl.Visible = false;
}
public void checkAll()
{
lblOut.Text = "";
+9 -5
View File
@@ -147,7 +147,7 @@ namespace MoonProTablet
return answ;
}
}
protected void ddlODL_SelectedIndexChanged(object sender, EventArgs e)
{
@@ -197,10 +197,14 @@ namespace MoonProTablet
{
logger.lg.scriviLog(string.Format("Errore recupero ODL corrente da confermare per la macchina {0}{1}{2}", idxMacchina, Environment.NewLine, exc), tipoLog.ERROR);
}
if (odlOk)
{
Response.Redirect("ODL");
}
//if (odlOk)
//{
Response.Redirect("ODL");
//}
//else
//{
// mod_dettMacchina1.doUpdate();
//}
}
}
}