Fix gestione numKeyb x pubblicazione update

This commit is contained in:
Samuele E. Locatelli
2018-09-21 22:46:59 +02:00
parent deb0f271b8
commit dc57cf680e
3 changed files with 14 additions and 2 deletions
+7 -1
View File
@@ -591,7 +591,13 @@
<None Include="Web.Debug.config">
<DependentUpon>Web.config</DependentUpon>
</None>
<None Include="Web.OVH.config">
<None Include="Web.IIS01.config">
<DependentUpon>Web.config</DependentUpon>
</None>
<None Include="Web.IIS02.config">
<DependentUpon>Web.config</DependentUpon>
</None>
<None Include="Web.OVH-EletScal.config">
<DependentUpon>Web.config</DependentUpon>
</None>
<None Include="Web.Release.config">
@@ -22,6 +22,7 @@ namespace C_TRACK.WebUserControls
if (mod_numKeyb.numSelected >= 0)
{
txtQta.Text = mod_numKeyb.numSelected.ToString();
refreshQtaSel();
}
}
@@ -153,6 +154,11 @@ namespace C_TRACK.WebUserControls
}
protected void txtQta_TextChanged(object sender, EventArgs e)
{
refreshQtaSel();
}
private void refreshQtaSel()
{
int newQta = QtaFaseCurr;
int.TryParse(txtQta.Text, out newQta);
Vendored
+1 -1
View File
@@ -17,7 +17,7 @@ pipeline {
/* calcolo numero versione... diverso x branch MASTER/DEVELOP */
script {
withEnv(['NEXT_BUILD_NUMBER=56']) {
withEnv(['NEXT_BUILD_NUMBER=58']) {
// env.versionNumber = VersionNumber(versionNumberString : '1.1.${BUILD_DATE_FORMATTED, "yyMM"}.${BUILDS_ALL_TIME}', projectStartDate : '2018-01-01', skipFailedBuilds: true)
env.versionNumber = VersionNumber(versionNumberString : '1.1.${BUILD_DATE_FORMATTED, "yyMM"}.${BUILDS_ALL_TIME}', projectStartDate : '2018-01-01', skipFailedBuilds: true, overrideBuildsAllTime: '${NEXT_BUILD_NUMBER}')
env.APP_NAME = 'C.TRACK'