COmpletato fix refresh vari segnalati da Gian
This commit is contained in:
Vendored
+1
-1
@@ -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'
|
||||
|
||||
@@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
@@ -420,6 +420,11 @@ namespace MoonProTablet.WebUserControls
|
||||
Response.Redirect("~/ODL");
|
||||
}
|
||||
|
||||
public void hideAll()
|
||||
{
|
||||
divDettOdl.Visible = false;
|
||||
}
|
||||
|
||||
public void checkAll()
|
||||
{
|
||||
lblOut.Text = "";
|
||||
|
||||
@@ -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();
|
||||
//}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user