diff --git a/Jenkinsfile b/Jenkinsfile index 12aa251f..8980aaf4 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -13,7 +13,7 @@ pipeline { steps { /* calcolo numero versione... diverso x branch MASTER/DEVELOP */ script { - withEnv(['NEXT_BUILD_NUMBER=1356']) { + withEnv(['NEXT_BUILD_NUMBER=1357']) { // env.versionNumber = VersionNumber(versionNumberString : '6.12.${BUILD_DATE_FORMATTED, "yyMM"}.${BUILDS_ALL_TIME}', projectStartDate : '2006-01-01', skipFailedBuilds: true) env.versionNumber = VersionNumber(versionNumberString : '6.12.${BUILD_DATE_FORMATTED, "yyMM"}.${BUILDS_ALL_TIME}', projectStartDate : '2006-01-01', skipFailedBuilds: true, overrideBuildsAllTime: '${NEXT_BUILD_NUMBER}') env.APP_NAME = 'MAPO' diff --git a/MP-ADM/Content/Style.css b/MP-ADM/Content/Style.css index 23586f74..55e58312 100644 --- a/MP-ADM/Content/Style.css +++ b/MP-ADM/Content/Style.css @@ -42,6 +42,12 @@ body { background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#787878', endColorstr='#DEDEDE', GradientType=0); } +.bgLightGrayUp { + background-image: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201%201%22%3E%3ClinearGradient%20id%3D%22g%22%20x1%3D%220%25%22%20y1%3D%220%25%22%20x2%3D%220%25%22%20y2%3D%22100%25%22%3E%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22%23dedede%22%2F%3E%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22%23cdcdcd%22%2F%3E%3C%2FlinearGradient%3E%3Crect%20x%3D%220%22%20y%3D%220%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22url(%23g)%22%20%2F%3E%3C%2Fsvg%3E'); +} +.bgLightGrayDown { + background-image: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201%201%22%3E%3ClinearGradient%20id%3D%22g%22%20x1%3D%220%25%22%20y1%3D%220%25%22%20x2%3D%220%25%22%20y2%3D%22100%25%22%3E%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22%23cdcdcd%22%2F%3E%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22%23fafafa%22%2F%3E%3C%2FlinearGradient%3E%3Crect%20x%3D%220%22%20y%3D%220%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22url(%23g)%22%20%2F%3E%3C%2Fsvg%3E'); +} /*------------------------------------------------------------------ [ Shortcuts / .shortcuts ] */ diff --git a/MP-ADM/Content/Style.less b/MP-ADM/Content/Style.less index d2ecdfe1..6182233d 100644 --- a/MP-ADM/Content/Style.less +++ b/MP-ADM/Content/Style.less @@ -2,6 +2,10 @@ /*Import fonts!*/ @import url('./fonts.less'); +@lgStart: #DEDEDE; +@lgMid: #CDCDCD; +@lgEnd: #FAFAFA; + .body { font-family: 'Open Sans Condensed', sans-serif; margin-top: 0px; @@ -22,6 +26,14 @@ body { filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#787878', endColorstr='#DEDEDE', GradientType=0); } +.bgLightGrayUp { + background-image: svg-gradient(to bottom, @lgStart, @lgMid); +} + +.bgLightGrayDown { + background-image: svg-gradient(to bottom, @lgMid, @lgEnd); +} + /*------------------------------------------------------------------ [ Shortcuts / .shortcuts ] */ diff --git a/MP-ADM/Content/Style.min.css b/MP-ADM/Content/Style.min.css index a649ea8c..98eec5af 100644 --- a/MP-ADM/Content/Style.min.css +++ b/MP-ADM/Content/Style.min.css @@ -1 +1 @@ -@import url('font-awesome.min.css');@font-face{font-family:'Open Sans';font-style:normal;font-weight:400;src:url('../fonts/OpenSans.woff') format('woff');}@font-face{font-family:'Open Sans Condensed';font-style:normal;font-weight:300;src:url('../fonts/OpenSansCondensed.woff') format('woff');}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:url('../fonts/Roboto.woff') format('woff');}@font-face{font-family:'Roboto Condensed';font-style:normal;font-weight:400;src:url('../fonts/RobotoCondensed.woff') format('woff');}.body{font-family:'Open Sans Condensed',sans-serif;margin-top:0;margin-left:0;margin-bottom:0;margin-right:0;font-size:small;}body{font-family:'Open Sans Condensed',sans-serif;background-color:#dedede;background-image:-webkit-gradient(linear,left 0%,left 100%,from(#787878),to(#dedede));background-image:-webkit-linear-gradient(top,#787878,0%,#dedede,100%);background-image:-moz-linear-gradient(top,#787878 0%,#dedede 100%);background-image:linear-gradient(to bottom,#787878 0%,#dedede 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#787878',endColorstr='#DEDEDE',GradientType=0);}.shortcuts{text-align:center;}.shortcuts .shortcut{min-width:18rem;min-height:7.5rem;display:inline-block;padding:1rem 0 .25rem;margin:0 .2em 1.5em;vertical-align:top;text-decoration:none;background:#f3f3f3;background-image:-webkit-gradient(linear,left 0%,left 100%,from(#fff),to(#eee));background-image:-webkit-linear-gradient(top,#fff,0%,#eee,100%);background-image:-moz-linear-gradient(top,#fff 0%,#eee 100%);background-image:linear-gradient(to bottom,#fff 0%,#eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffeeeeee',GradientType=0);border:1px solid #ddd;box-sizing:border-box;border-radius:.75rem;}.shortcuts .shortcut-sm{min-width:11.25rem;min-height:4.5rem;display:inline-block;padding:.375rem 0;margin:0 2px 1em;vertical-align:top;text-decoration:none;background:#f3f3f3;background-image:-webkit-gradient(linear,left 0%,left 100%,from(#fff),to(#eee));background-image:-webkit-linear-gradient(top,#fff,0%,#eee,100%);background-image:-moz-linear-gradient(top,#fff 0%,#eee 100%);background-image:linear-gradient(to bottom,#fff 0%,#eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffeeeeee',GradientType=0);border:1px solid #ddd;box-sizing:border-box;border-radius:.75rem;}.shortcuts .shortcut .shortcut-icon{width:100%;margin-top:0;margin-bottom:0;font-size:3rem;color:#333;}.shortcuts .shortcut-sm .shortcut-icon{width:100%;margin-top:0;margin-bottom:0;font-size:3rem;color:#333;}.shortcuts .shortcut:hover{background:#e8e8e8;background-image:-webkit-gradient(linear,left 0%,left 100%,from(#fafafa),to(#e1e1e1));background-image:-webkit-linear-gradient(top,#fafafa,0%,#e1e1e1,100%);background-image:-moz-linear-gradient(top,#fafafa 0%,#e1e1e1 100%);background-image:linear-gradient(to bottom,#fafafa 0%,#e1e1e1 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffafafa',endColorstr='#ffe1e1e1',GradientType=0);border:1px solid #09f;}.shortcuts .shortcut-sm:hover{background:#e8e8e8;background-image:-webkit-gradient(linear,left 0%,left 100%,from(#fafafa),to(#e1e1e1));background-image:-webkit-linear-gradient(top,#fafafa,0%,#e1e1e1,100%);background-image:-moz-linear-gradient(top,#fafafa 0%,#e1e1e1 100%);background-image:linear-gradient(to bottom,#fafafa 0%,#e1e1e1 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffafafa',endColorstr='#ffe1e1e1',GradientType=0);border:1px solid #09f;}.shortcuts .shortcut:active{box-shadow:inset 0 3px 5px rgba(0,0,0,.125);}.shortcuts .shortcut-sm:active{box-shadow:inset 0 3px 5px rgba(0,0,0,.125);}.shortcuts .shortcut:hover .shortcut-icon{color:#c93;}.shortcuts .shortcut-sm:hover .shortcut-icon{color:#666;}.shortcuts .shortcut-label{display:block;margin-top:.75em;font-size:1.125rem;font-weight:bold;color:#333;border-top:1px solid #dedede;}.table-sm>thead>tr>th,.table-sm>tbody>tr>th,.table-sm>tfoot>tr>th,.table-sm>thead>tr>td,.table-sm>tbody>tr>td,.table-sm>tfoot>tr>td{padding:.15em;}.ajax__tab_xp .ajax__tab_header .ajax__tab_tab{height:21px;}.navbar{min-height:10px;}.fontPiccolo{font-size:8pt;}.fontNormale{font-size:12pt;}.fontMedio{font-size:18pt;}.fontGrande{font-size:24pt;}.padSmall{padding:4px;}.padMed{padding:8px;}.padHigh{padding:16px;}.pad3{padding:3px;}.uiMini{font-size:.8em;}.GridPager a,.GridPager span{display:block;height:1.5em;width:1em;text-align:center;text-decoration:none;}.GridPager a{background-color:#f5f5f5;color:#969696;}.GridPager span{background-color:#a1dcf2;color:#000;font-weight:bold;}.menuMainY{padding:6px 10px;text-align:left;height:3.3em;background:#121212;background-image:-webkit-gradient(linear,left 0%,left 100%,from(#565656),to(#343434));background-image:-webkit-linear-gradient(top,#565656,0%,#343434,100%);background-image:-moz-linear-gradient(top,#565656 0%,#343434 100%);background-image:linear-gradient(to bottom,#565656 0%,#343434 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#565656',endColorstr='#343434',GradientType=0);-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;}.body100{margin-top:0;margin-left:0;margin-bottom:0;margin-right:0;font-family:Verdana,Arial;font-size:small;height:100%;width:100%;}.lblTitoloUI{color:#f00;font-size:12pt;font-style:italic;font-weight:bold;}.lblTitoloUImini{color:#f00;font-size:8pt;font-weight:bold;}.lblMessUI{color:#000;font-size:10pt;}.rigaMacchine{vertical-align:middle;height:300px;width:17%;}.valoriResoconto{height:150px;vertical-align:top;}.imgResoconto{height:95px;vertical-align:bottom;}.sequencerVerde{height:80px;background-image:url(../images/verde.png);}.sequencerGiallo{height:80px;background-image:url(../images/giallo.png);}.sequencerRosso{height:80px;background-image:url(../images/rosso.png);}.sequencerSpento{height:80px;background-image:url(../images/grigio.png);}.sv{height:80px;background-image:url(../images/verde.png);}.sg{height:80px;background-image:url(../images/giallo.png);}.sr{height:80px;background-image:url(../images/rosso.png);}.ss{height:80px;background-image:url(../images/grigio.png);}.timeHist{vertical-align:bottom;text-align:left;}.barTempoCiclo{background-image:url(../images/grigio.png);}.timeLine{width:100%;height:7px;font-size:7pt;text-align:left;}.timeBar{width:100%;}.filtraggio{width:100%;font-size:8pt;background-color:#ababef;}.fullTick{text-align:left;height:7px;font-size:7pt;border-left:#000 1px solid;}.midTick{text-align:left;height:7px;font-size:7pt;border-left:#bababa 1px dotted;}.sVe{text-align:left;width:100%;background:linear-gradient(#009036,#8cbd59,#00762c);background-color:#009036;color:#ff0;}.sGi{text-align:left;width:100%;background:linear-gradient(#ffec00,#ffef27,#b1a400);background-color:#ffec00;}.sRo{text-align:left;width:100%;background-color:#e2001a;background-image:url(../images/rosso.png);}.sBl{text-align:left;width:100%;background:linear-gradient(#509eff,#84baff,#3690ff);background-color:#3690ff;color:#ff0;}.sGr{text-align:left;width:100%;background:linear-gradient(#bcbcbc,#e0e0e0,#aaa);background-color:#bcbcbc;}.statoMacchine{font-size:10pt;height:100%;text-align:left;}.statoRun{height:100%;font-size:12pt;font-weight:bold;background-color:#cfc;}.statoSetup{height:100%;font-size:12pt;font-weight:bold;background-color:#ffc;}.statoGuasto{height:100%;font-size:12pt;font-weight:bold;background-color:#faa;}.statoCampionatura{height:100%;font-size:12pt;font-weight:bold;background-color:#ff0;}.statoDisposizione{height:100%;font-size:12pt;font-weight:bold;background-color:#808080;}.statoVarie{height:100%;font-size:12pt;font-weight:bold;background-color:#800000;}.topTitle{font-size:1.5em;font-weight:bold;text-align:left;background-repeat:repeat-x;background-position:0% 0%;background-attachment:scroll;background-color:#767676;background-image:-webkit-gradient(linear,left top,left bottom,from(#000),to(#767676));background-image:-webkit-linear-gradient(#000,#767676);background-image:-moz-linear-gradient(#000,#767676);background-image:-ms-linear-gradient(#000,#767676);background-image:-o-linear-gradient(#000,#767676);background-image:linear-gradient(#000,#767676);}.topTitle a,.topTitle a:visited{color:#fff;}.warning{padding:4px;font-weight:bold;border-style:solid;border-color:#ff1212;}.menuSx{font-size:8pt;width:180px;vertical-align:top;height:530px;background:#dee8f5;}.hlBounce{font-weight:bold;font-size:10pt;}.alertAjax{color:#ea101e;font-size:small;font-weight:bold;}.dxButtonClass{padding-right:8px;padding-left:8px;font-weight:bold;font-size:9pt;padding-bottom:2px;vertical-align:middle;color:#ff0;padding-top:2px;font-family:verdana,arial;text-align:justify;}.dxButtonSmallClass{padding-right:4px;padding-left:4px;font-size:8pt;padding-bottom:2px;vertical-align:middle;color:#ff0;padding-top:2px;font-family:verdana,arial;text-align:justify;}.dateTimeSmall{padding-right:1px;padding-left:1px;padding-bottom:1px;padding-top:1px;font-size:8pt;vertical-align:middle;color:#ff0;font-family:verdana,arial;text-align:left;}.barraTitolo{background-color:#33b;vertical-align:middle;height:20pt;}.grView{color:#333;font-size:8pt;padding-left:1px;padding-right:1px;padding-top:1px;padding-bottom:1px;}.ctrHeaderPager{background-color:#b8b8b8;font-weight:bold;color:#fff;}.ctrFooter{background-color:#507cd1;font-weight:bold;color:#fff;}.ctrRowStyle{background-color:#eff3fb;}.ctrAltRowStyle{background-color:#fff;}.ctrEditRowStyle{background-color:#d1ddf1;}.ctrSelRowStyle{font-weight:bold;color:#333;background-color:#d1ddf1;}.ctrCommRow{font-weight:bold;background-color:#d1ddf1;}.ctrFiledHead{background-color:#dee8f5;font-weight:bold;width:25%;}.ctrLabelStrong{font-weight:bold;}.ctrFieldEdit{font-size:8pt;}INPUT{font-size:8pt;}.tableContenuto{padding:1em;margin:.2em 1em .2em .2em;width:100%;}.topContrDx{text-align:center;background-color:#fff;text-align:left;font-size:9pt;}.topContrSx{padding:6px 3px 6px 3px;text-align:center;background-color:#dee8f5;border-top:solid 2px #55b;border-left:solid 2px #55b;border-right:solid 2px #55b;font-weight:bold;font-size:8pt;}.contrDx{vertical-align:top;width:100%;background-color:#fff;font-size:8pt;border:1px solid #1a1a44;}.bodyMainCenter{background-image:url('../images/sfondo.png');background-repeat:no-repeat;vertical-align:middle;text-align:center;height:100%;width:100%;}.bottomWrite{vertical-align:bottom;font-weight:bold;font-size:7pt;text-align:right;}.bodyCenter{vertical-align:middle;text-align:center;height:100%;width:100%;}.centerMenu{background-color:#fff;text-align:center;border-width:thin;border-style:groove;border-color:#00f;}.pnlMenuSx{padding-right:5px;}A:visited{color:#00f;}A:hover{color:#000;}.ctrSelRow2DetailStyle{font-weight:bold;color:#333;background-color:#d1ddf1;}.pnlDettaglio{margin:4px 4px 4px 4px;}.dettaglioRiga{vertical-align:top;}.pnlMaster{height:300px;}.pnlDrillDown{border-left:solid 8px #d1ddf1;border-top:solid 8px #d1ddf1;border-bottom:solid 8px #d1ddf1;border-right:solid 8px #d1ddf1;vertical-align:top;height:290px;}.clonaUserPerm{color:#ff6;background-color:#ea101e;}.boxRicerca{padding:4px;}.divSx{float:left;padding:0;margin:0;}.divDx{float:right;padding:0;margin:0;}.clearDiv{clear:both;}.formatTableGeneral{height:100%;width:100%;border-bottom-width:0;}.dgCenter{text-align:center;}.menuSxTree{color:#d9101e;font-size:9pt;text-align:left;font-weight:bold;margin-left:0;margin-right:0;margin-top:0;}.menuSxTreeOver{color:#fff;font-size:10pt;text-align:left;font-weight:bold;margin-left:0;margin-right:0;margin-top:0;}.menuSxElem{color:#00008b;font-size:7pt;text-align:left;font-weight:bold;margin-left:0;margin-right:0;margin-top:0;}.menuSxElemOver{color:#000;font-size:7pt;text-align:left;font-weight:bold;margin-left:0;margin-right:0;margin-top:0;}.menuSxElemSmall{font-size:7pt;text-align:left;margin-left:0;margin-right:0;font-weight:normal;color:#555;margin-top:0;}.menuSxElemSmallOver{color:#555;font-size:9pt;text-align:left;margin-left:0;margin-right:0;font-weight:normal;margin-top:0;}.userClass{padding-right:8px;padding-left:8px;font-weight:bold;font-size:9pt;padding-bottom:2px;vertical-align:bottom;color:#fff;padding-top:2px;font-family:verdana,arial;text-align:justify;}.topMenuMess{font-size:9pt;text-align:left;margin-left:0;margin-right:0;font-weight:bold;color:#fff;margin-top:0;}.topMenuMessEn{font-size:9pt;text-align:left;margin-left:0;margin-right:0;font-weight:bold;color:#000;margin-top:0;}.bodyMain{background-image:url('../images/sfondo.png');background-repeat:no-repeat;vertical-align:top;height:100%;width:100%;}.treeCdC{width:250px;text-align:right;font-size:8pt;width:180px;vertical-align:top;height:100%;background:#fff;}.logoUpSx{width:200px;text-align:left;}.topMenu{width:100%;text-align:left;vertical-align:bottom;}.tabModPrinc{background-color:#fff;}.sxTabPrinc{font-size:10pt;font-style:italic;color:#00f;font-weight:bold;background-color:Transparent;}.dxTabPrinc{background-color:#cbcbff;text-align:right;}.lblTabPrincLang{font-weight:bold;font-size:13pt;color:#00008b;margin-left:8px;margin-right:4px;}.lblTabPrincEn{font-weight:normal;font-size:7pt;color:#00008b;margin-left:4px;margin-right:8px;}.lblTabPrincLang2{font-weight:bold;font-size:10pt;color:#fff;margin-left:8px;margin-right:4px;}.lblTabPrincEn2{font-weight:normal;font-size:7pt;color:#fff;margin-left:4px;margin-right:8px;}.tab_1{vertical-align:top;}.sxTab_1{background-color:#c8d0d4;text-align:left;}.sxTab_1_new{background-color:#99c;text-align:left;}.dxTab_1{width:70%;background-color:#c8d0d4;}.lblTab_1Lang{font-size:10pt;font-weight:bold;color:#00008b;margin-left:8px;margin-right:4px;}.lblTab_1En{font-size:7pt;font-weight:normal;color:#00008b;margin-left:4px;margin-right:8px;}.tab_1Body{vertical-align:middle;border:1px solid #f90;}.lblLang{font-size:10pt;font-weight:bold;color:#000;}.lblEn{font-size:7pt;color:#000;}.dgSx{background-color:#fff;border-width:0;border-style:solid;border-color:#900;}.dgSxSel{text-align:right;font-size:8pt;font-weight:bold;color:#639;background-color:#fc6;padding-left:1px;padding-right:1px;padding-top:1px;}.dgSxItem{text-align:right;font-size:7pt;color:#309;background-color:Transparent;padding-left:1px;padding-right:1px;padding-top:1px;}.dgSxAltItem{text-align:right;font-size:7pt;color:#309;background-color:#f5f5f5;padding-left:1px;padding-right:1px;padding-top:1px;}.dgSxEdit{font-size:8pt;color:#639;background-color:#fc6;padding-left:1px;padding-right:1px;padding-top:1px;vertical-align:text-top;}.dgSxHead{color:#ffc;background:#900;font-weight:bold;font-size:8pt;padding-left:1px;padding-right:1px;padding-top:1px;}.dgSxHead2{color:#ffc;background:#997;font-weight:bold;font-size:8pt;padding-left:1px;padding-right:1px;padding-top:1px;}.dgSxFoot{text-align:right;color:#000;background:#bcb;font-size:8pt;padding-left:1px;padding-right:1px;padding-top:1px;font-weight:bold;border-bottom-style:solid;border-color:#000;}.dgSxPaging{text-align:left;color:#000;background:#fff;font-size:8pt;padding-left:1px;padding-right:1px;padding-top:1px;}.sxTab_2{background-color:#1a6;text-align:left;}.dxTab_2{width:70%;background-color:Transparent;}.lblTab_2Lang{font-size:10pt;font-weight:bold;color:#fff;margin-left:8px;margin-right:4px;}.lblTab_2En{font-size:7pt;font-weight:normal;color:#fff;margin-left:4px;margin-right:8px;}.tab_2Body{vertical-align:middle;border:1px solid #1a6;}.dgDx{background-color:#fff;border:1px solid #039;}.dgDxSel{font-size:8pt;font-weight:bold;color:#cf9;background-color:#099;padding-left:1px;padding-right:1px;padding-top:1px;}.dgDxItem{font-size:7pt;color:#039;background-color:Transparent;padding-left:1px;padding-right:1px;padding-top:1px;}.dgDxAltItem{font-size:7pt;color:#309;background-color:#f5f5f5;padding-left:1px;padding-right:1px;padding-top:1px;}.dgDxEdit{font-size:8pt;font-weight:bold;color:#cf9;background-color:#099;padding-left:1px;padding-right:1px;padding-top:1px;}.dgDxHead{color:#ccf;background:#039;font-weight:bold;font-size:8pt;padding-left:1px;padding-right:1px;padding-top:1px;}.dgDxFoot{color:#039;background-color:#9cc;font-size:10pt;padding-left:1px;padding-right:1px;padding-top:1px;}.chPwdTitle{padding:2px;font-weight:bold;font-size:24pt;color:#f00;text-align:center;}.chPwdTxt{padding:2px;font-weight:bold;font-size:10pt;color:#f00;text-align:center;}.chPwdMess{padding:2px;font-weight:bold;font-style:italic;font-size:9pt;color:#ff0;text-align:center;}.lblFiltrLang{font-size:10pt;font-weight:bold;color:#000;margin-left:2px;margin-right:2px;}.lblFiltrEn{font-size:7pt;font-weight:normal;color:#000;margin-left:2px;margin-right:2px;}.loginTitle{font-weight:bold;font-size:30pt;color:#f00;}.loginTxt{padding:2px;font-weight:bold;font-size:10pt;color:#f00;text-align:center;}.loginMess{padding:2px;font-weight:bold;font-style:italic;font-size:9pt;color:#ff0;text-align:center;}.reportLabel{font-size:16pt;}.reportValue{font-size:16pt;font-weight:bold;}.reportExplLang{font-size:10pt;}.reportExplEn{font-size:7pt;font-style:italic;}.reportElencoZap{font-size:9pt;}.UnauthAppTitle{font-weight:bold;font-size:48pt;margin-left:10pt;}.UnauthTitle{font-size:24pt;color:#f00;margin-left:30pt;}.UnauthMess{font-size:12pt;font-style:italic;margin-left:30pt;}.lblMess{color:#f00;font-size:12pt;font-style:italic;font-weight:bold;}.tableHead{white-space:nowrap;height:auto;vertical-align:top;line-height:18px;width:100%;height:100%;}.tableHead2{white-space:nowrap;height:auto;vertical-align:top;line-height:18px;color:#ffc;background-color:#997;width:100%;}.cmbFiltrText{font-size:9pt;}.currencyFormat{white-space:nowrap;text-align:right;vertical-align:baseline;}.UserLabel{background-color:#f90;text-align:center;margin:6px;}.Calend{padding:4px;background:#fff;color:#000;font-size:8pt;font-family:Verdana;border-color:#999;height:180px;width:200px;}.cmbMini{font-size:8pt;}.txtMini{font-size:8pt;}.valOk{color:#008000;}.valKo{color:#f00;font-weight:bold;}.suggerimento{font-size:8pt;font-weight:bold;color:#f00;}.lblBudget{font-size:8pt;text-align:left;font-weight:bold;}.errore{font-weight:bold;font-size:8pt;color:#f00;background-color:#ff0;}.valUpd{font-style:italic;}.txtMiniLeft{font-size:8pt;text-align:left;}.valOk{color:#008000;}.valKo{color:#f00;font-weight:bold;}.suggerimento{font-size:8pt;font-weight:bold;color:#f00;}.clsBody{border-right:#c6d7da thin solid;border-top:#c6d7da thin solid;border-left:#c6d7da thin solid;border-bottom:#c6d7da thin solid;}.clsCurrentWeek{color:#fff;font-size:12px;text-decoration:none;font-family:Tahoma,Arial,Helvetica,sans-serif;white-space:nowrap;border-top:#c6d7da thin solid;border-bottom:#c6d7da thin solid;background-color:#8cc6ff;font-weight:bolder;font-weight:bold;}.clsCurrentWeek2{color:#000;font-size:12px;text-decoration:none;font-family:Tahoma,Arial,Helvetica,sans-serif;white-space:nowrap;border-top:#c6d7da thin solid;border-bottom:#c6d7da thin solid;font-weight:bolder;font-weight:bold;}.clsDayName{color:#0c0b5f;background-color:#bbbaf5;font-size:12px;text-decoration:none;font-family:Tahoma,Arial,Helvetica,sans-serif;white-space:nowrap;}.clsCurrentDay{color:#fff;background-color:#398ce7;font-size:12px;text-decoration:none;font-family:Tahoma,Arial,Helvetica,sans-serif;white-space:nowrap;font-weight:bolder;font-weight:bold;}.clsWorkDay{color:#000;background-color:#dbeaf5;font-size:12px;text-decoration:none;font-family:Tahoma,Arial,Helvetica,sans-serif;white-space:nowrap;}.clsWorkDay:hover{color:#009400;background-color:#dbeaf5;font-size:12px;text-decoration:underline;font-family:Tahoma,Arial,Helvetica,sans-serif;white-space:nowrap;}.clsWorkDayOtherMonth{color:#000;font-size:12px;text-decoration:none;font-family:Tahoma,Arial,Helvetica,sans-serif;white-space:nowrap;}.clsWeekEnd{color:#f00;background-color:#dbeaf5;font-size:12px;text-decoration:none;font-family:Tahoma,Arial,Helvetica,sans-serif;white-space:nowrap;}.clsWeekEnd:hover{color:#009400;background-color:#dbeaf5;font-size:12px;text-decoration:underline;font-family:Tahoma,Arial,Helvetica,sans-serif;white-space:nowrap;}.clsWeekEndOtherMonth{color:#f00;font-size:12px;text-decoration:none;font-family:Tahoma,Arial,Helvetica,sans-serif;white-space:nowrap;}.searchHead{background-color:#bab;}.textHead{background-color:#96f;}.linkAnnulla{background-color:#e99;color:#000;font-weight:bold;font-size:14pt;}.linkSalva{background-color:#9e9;color:#000;font-weight:bold;font-size:14pt;}.lblSearchLang{font-weight:bold;font-size:11pt;color:#00008b;margin-left:8px;margin-right:4px;}.tblDett{vertical-align:top;background-color:#fff;text-align:left;}.pnlPar_1{background-color:#ea101e;}.pnlPar_1_En{font-size:7pt;font-weight:normal;color:#c0c0c0;}.pnlPar_1_Lang{font-size:8pt;font-weight:bold;color:#c0c0c0;}.pnlPar_1_Error{font-size:7pt;font-weight:bold;color:#ad0;}.pnlPar_1_Descr{background-color:#ea101e;font-size:9pt;font-weight:normal;color:#ff0;}.pnlPar_2{background-color:#dcdcdc;}.pnlPar_2_En{font-size:7pt;font-weight:normal;color:#000;}.pnlPar_2_Lang{font-size:8pt;font-weight:bold;color:#000;}.pnlPar_2_Error{font-size:7pt;font-weight:bold;color:#f00;}.pnlPar_2_Descr{font-size:9pt;font-weight:normal;}.pnlPar_3{background-color:#44c;}.pnlPar_3_En{font-size:8pt;font-weight:bold;color:#ff0;}.pnlPar_3_Lang{font-size:8pt;font-weight:bold;color:#c0c0c0;}.pnlPar_3_Error{font-size:7pt;font-weight:bold;color:#ff0;}.pnlPar_3_Descr{background-color:#44c;font-size:9pt;font-weight:normal;color:#ff0;}.pnlPar_3_warn{background-color:#44c;font-size:8pt;font-weight:normal;font-style:italic;color:#ff0;}.dlTestata{background-color:#fff;border-width:0;border-style:solid;border-color:#009;}.dlTestataSel{font-size:8pt;color:#396;background-color:#111;padding-left:1px;padding-right:1px;padding-top:1px;}.dlTestataItem{text-align:right;font-size:7pt;color:#309;background-color:Transparent;padding-left:1px;padding-right:1px;padding-top:1px;}.dlTestataItemObblig{text-align:right;font-size:7pt;color:#000;background-color:#b3ccff;padding-left:1px;padding-right:1px;padding-top:1px;}.dlTestataAltItem{text-align:right;font-size:7pt;color:#309;background-color:#f5f5f5;padding-left:1px;padding-right:1px;padding-top:1px;}.dlTestataEdit{font-size:8pt;color:#396;background-color:#6fc;padding-left:1px;padding-right:1px;padding-top:1px;vertical-align:text-top;}.dlTestataHead{color:#cff;background:#009;font-weight:bold;font-size:8pt;padding-left:1px;padding-right:1px;padding-top:1px;}.dlTestataHead2{color:#cff;background:#979;font-weight:bold;font-size:8pt;padding-left:1px;padding-right:1px;padding-top:1px;}.dlTestataFoot{text-align:right;color:#33d;background:#d4c8d0;font-size:8pt;padding-left:1px;padding-right:1px;padding-top:1px;}.dlTestata_Lang{font-size:7pt;font-weight:bold;color:#36b;}.dlTestata_En{font-size:7pt;font-weight:normal;color:#393;}.idxContratto{text-align:center;font-size:10pt;font-weight:bold;}.idxStatoContratto{text-align:right;font-size:10pt;font-weight:bold;font-style:italic;color:#00f;}.dlTextbox{font-size:8pt;}.dlLabel{font-size:8pt;color:#000;background-color:Transparent;border-style:none;}.pnl_bozza{background:#dcdcdc;}.pnl_inApprov{background:#cbcbcb;}.pnl_freezed{background:#bababa;}.calDayHead{font-weight:bold;color:#fff;background-color:#6969df;font-size:9pt;}.calTitle{font-weight:bold;color:#00f;background-color:#bababa;font-size:11pt;}.calOtherMonthDay{background:#dcdcdc;}.calWeekEnd{background:#cbcbcb;font-weight:bold;}.cal{font-family:Verdana;font-size:10pt;}.calSel{background:#f00;font-weight:bold;color:#fff;}.calNextPrev{font-weight:bold;}.lblValSel{font-size:8pt;color:#000;background-color:Transparent;border-style:none;}.tableDett1{background:#98ff98;}.lblDett1{text-align:left;font-weight:bold;font-size:7pt;color:#000;}.valDett1{font-size:8pt;color:#000;font-weight:normal;}.tab_2lbl{vertical-align:baseline;border-collapse:collapse;border-width:thin;border-style:none;font-size:7pt;}.dettSel{border-right:#008000 1px solid;padding-right:8px;border-top:#008000 1px solid;padding-left:8px;font-weight:bold;font-size:9pt;background:#3e4;padding-bottom:2px;vertical-align:bottom;border-left:#008000 1px solid;color:#fff;padding-top:2px;border-bottom:#008000 1px solid;font-family:verdana,arial;text-align:justify;}.dettDesel{border-right:#008000 1px solid;padding-right:8px;border-top:#008000 1px solid;padding-left:8px;font-weight:bold;font-size:9pt;background:#fff;padding-bottom:2px;vertical-align:bottom;border-left:#008000 1px solid;color:#000;padding-top:2px;border-bottom:#008000 1px solid;font-family:verdana,arial;text-align:justify;}.dettHide{border-right:#ffa500 1px solid;padding-right:8px;border-top:#ffa500 1px solid;padding-left:8px;font-weight:bold;font-size:9pt;background:#f34;padding-bottom:2px;vertical-align:bottom;border-left:#ffa500 1px solid;color:#fff;padding-top:2px;border-bottom:#ffa500 1px solid;font-family:verdana,arial;text-align:justify;}.tableDett3{background:#98ff98;font-size:9pt;}.dett3Head{background:#00f;color:#ff0;font-weight:bold;font-size:9pt;}.dett3Col1{color:#000;font-weight:bold;font-size:9pt;}.RDA{font-size:7pt;}.Ord{font-size:7pt;background:#d0ffe3;}.Fatt{font-size:7pt;}.linkHead{color:#fff;}.titoloMed{color:#f00;font-size:18pt;font-weight:bold;}.testoMed{font-size:12pt;}.dgAllegati{background-color:#fff;border-width:0;border-style:solid;border-color:#090;}.dgAllegatiSel{text-align:right;font-size:8pt;font-weight:bold;color:#693;background-color:#cf6;padding-left:1px;padding-right:1px;padding-top:1px;}.dgAllegatiItem{text-align:right;font-size:7pt;color:#390;background-color:Transparent;padding-left:1px;padding-right:1px;padding-top:1px;}.dgAllegatiAltItem{text-align:right;font-size:7pt;color:#390;background-color:#f5f5f5;padding-left:1px;padding-right:1px;padding-top:1px;}.dgAllegatiEdit{font-size:8pt;color:#693;background-color:#ccff66;padding-left:1px;padding-right:1px;padding-top:1px;vertical-align:text-top;}.dgAllegatiHead{color:#ffc;background:#090;font-weight:bold;font-size:8pt;padding-left:1px;padding-right:1px;padding-top:1px;}.dgAllegatiFoot{text-align:right;color:#000;background:#cbb;font-size:8pt;padding-left:1px;padding-right:1px;padding-top:1px;font-weight:bold;border-bottom-style:solid;border-color:#000;}.dgAllegatiPaging{text-align:left;color:#000;background:#fff;font-size:8pt;padding-left:1px;padding-right:1px;padding-top:1px;}.btnTab{border-right:#ea101e 1px solid;padding-right:8px;border-top:#ea101e 1px solid;padding-left:8px;font-weight:bold;font-size:9pt;background:#ea101e;padding-bottom:2px;vertical-align:top;border-left:#ea101e 1px solid;color:#fff;padding-top:0;border-bottom:#ea101e 1px solid;font-family:verdana,arial;text-align:justify;}.txtTab{font-size:8pt;font-family:verdana,arial;text-align:justify;}.dropdownList{font-weight:normal;font-size:7pt;background:#ea101e;color:#fff;font-family:verdana,arial;text-align:justify;}.job2do{width:50%;font-weight:normal;border-bottom-style:solid;border-bottom-width:thin;font-size:8pt;color:#00f;font-family:verdana,arial;text-align:left;}.jobDone{width:50%;font-weight:normal;border-bottom-style:solid;border-bottom-width:thin;font-size:8pt;color:#008000;font-family:verdana,arial;text-align:right;}.bodyAvanzamento{font-family:Verdana,Arial;background-image:url(images/gradiente.png);}.lblText{font-size:8pt;}.boxText{font-size:8pt;font-weight:normal;width:100%;}.lblValore{font-size:8pt;color:#000;background-color:Transparent;border-style:none;}.lblValoreBold{font-size:8pt;color:#000;font-weight:bold;background-color:Transparent;border-style:none;}.dgFiles{background-color:#fff;border-width:0;border-style:solid;border-color:#090;}.dgFilesSel{text-align:right;font-size:9pt;font-weight:bold;color:#693;background-color:#cf6;padding-left:1px;padding-right:1px;padding-top:1px;}.dgFilesItem{text-align:right;font-size:8pt;color:#390;background-color:Transparent;padding-left:1px;padding-right:1px;padding-top:1px;}.dgFilesAltItem{text-align:right;font-size:8pt;color:#390;background-color:#f5f5f5;padding-left:1px;padding-right:1px;padding-top:1px;}.dgFilesEdit{font-size:9pt;color:#693;background-color:#ccff66;padding-left:1px;padding-right:1px;padding-top:1px;vertical-align:text-top;}.dgFilesHead{color:#cff;background:#900;font-weight:bold;font-size:9pt;padding-left:1px;padding-right:1px;padding-top:1px;}.dgFilesFoot{text-align:right;color:#000;background:#cbb;font-size:9pt;padding-left:1px;padding-right:1px;padding-top:1px;font-weight:bold;border-bottom-style:solid;border-color:#000;}.dgFilesPaging{text-align:left;color:#000;background:#fff;font-size:9pt;padding-left:1px;padding-right:1px;padding-top:1px;}.statoOff{text-align:center;width:100%;font-size:10pt;color:#44f;}.statoOn{text-align:center;width:100%;font-size:10pt;color:#fff;background:#f90;}.eta2{width:33%;text-align:center;background-color:#fcc;font-size:10pt;font-weight:bold;}.termAnt{width:33%;text-align:center;background-color:#cfc;font-size:10pt;font-weight:bold;}.termPost{width:33%;text-align:center;background-color:#ccf;font-size:10pt;font-weight:bold;}.saveClose{width:100%;text-align:center;background-color:#ea101e;padding:2pt;}.lblColorGray{padding-left:2pt;text-align:left;background-color:#777;font-size:10pt;font-weight:bold;color:#fff;}.lblWhite{width:70%;background-color:#fff;}.tblGray{border-color:#777;}.smallTable{width:300px;}.centerAll{vertical-align:middle;text-align:center;}.selLinguaTxt{padding:2px;font-weight:bold;font-size:12pt;color:#ff0;text-align:center;}.boxShadowDark{-webkit-box-shadow:3px 3px 6px rgba(0,0,0,.3);-moz-box-shadow:3px 3px 6px rgba(0,0,0,.3);box-shadow:3px 3px 6px rgba(0,0,0,.3);}.contrRiq{border-left:solid 2px #c0c0c0;background-color:#fff;border:2px solid #c0c0c0;}.btnMain{font-size:larger;height:250px;width:250px;font-weight:bold;white-space:normal;} \ No newline at end of file +@import url('font-awesome.min.css');@font-face{font-family:'Open Sans';font-style:normal;font-weight:400;src:url('../fonts/OpenSans.woff') format('woff');}@font-face{font-family:'Open Sans Condensed';font-style:normal;font-weight:300;src:url('../fonts/OpenSansCondensed.woff') format('woff');}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:url('../fonts/Roboto.woff') format('woff');}@font-face{font-family:'Roboto Condensed';font-style:normal;font-weight:400;src:url('../fonts/RobotoCondensed.woff') format('woff');}.body{font-family:'Open Sans Condensed',sans-serif;margin-top:0;margin-left:0;margin-bottom:0;margin-right:0;font-size:small;}body{font-family:'Open Sans Condensed',sans-serif;background-color:#dedede;background-image:-webkit-gradient(linear,left 0%,left 100%,from(#787878),to(#dedede));background-image:-webkit-linear-gradient(top,#787878,0%,#dedede,100%);background-image:-moz-linear-gradient(top,#787878 0%,#dedede 100%);background-image:linear-gradient(to bottom,#787878 0%,#dedede 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#787878',endColorstr='#DEDEDE',GradientType=0);}.bgLightGrayUp{background-image:url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201%201%22%3E%3ClinearGradient%20id%3D%22g%22%20x1%3D%220%25%22%20y1%3D%220%25%22%20x2%3D%220%25%22%20y2%3D%22100%25%22%3E%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22%23dedede%22%2F%3E%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22%23cdcdcd%22%2F%3E%3C%2FlinearGradient%3E%3Crect%20x%3D%220%22%20y%3D%220%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22url(%23g)%22%20%2F%3E%3C%2Fsvg%3E');}.bgLightGrayDown{background-image:url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201%201%22%3E%3ClinearGradient%20id%3D%22g%22%20x1%3D%220%25%22%20y1%3D%220%25%22%20x2%3D%220%25%22%20y2%3D%22100%25%22%3E%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22%23cdcdcd%22%2F%3E%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22%23fafafa%22%2F%3E%3C%2FlinearGradient%3E%3Crect%20x%3D%220%22%20y%3D%220%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22url(%23g)%22%20%2F%3E%3C%2Fsvg%3E');}.shortcuts{text-align:center;}.shortcuts .shortcut{min-width:18rem;min-height:7.5rem;display:inline-block;padding:1rem 0 .25rem;margin:0 .2em 1.5em;vertical-align:top;text-decoration:none;background:#f3f3f3;background-image:-webkit-gradient(linear,left 0%,left 100%,from(#fff),to(#eee));background-image:-webkit-linear-gradient(top,#fff,0%,#eee,100%);background-image:-moz-linear-gradient(top,#fff 0%,#eee 100%);background-image:linear-gradient(to bottom,#fff 0%,#eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffeeeeee',GradientType=0);border:1px solid #ddd;box-sizing:border-box;border-radius:.75rem;}.shortcuts .shortcut-sm{min-width:11.25rem;min-height:4.5rem;display:inline-block;padding:.375rem 0;margin:0 2px 1em;vertical-align:top;text-decoration:none;background:#f3f3f3;background-image:-webkit-gradient(linear,left 0%,left 100%,from(#fff),to(#eee));background-image:-webkit-linear-gradient(top,#fff,0%,#eee,100%);background-image:-moz-linear-gradient(top,#fff 0%,#eee 100%);background-image:linear-gradient(to bottom,#fff 0%,#eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffeeeeee',GradientType=0);border:1px solid #ddd;box-sizing:border-box;border-radius:.75rem;}.shortcuts .shortcut .shortcut-icon{width:100%;margin-top:0;margin-bottom:0;font-size:3rem;color:#333;}.shortcuts .shortcut-sm .shortcut-icon{width:100%;margin-top:0;margin-bottom:0;font-size:3rem;color:#333;}.shortcuts .shortcut:hover{background:#e8e8e8;background-image:-webkit-gradient(linear,left 0%,left 100%,from(#fafafa),to(#e1e1e1));background-image:-webkit-linear-gradient(top,#fafafa,0%,#e1e1e1,100%);background-image:-moz-linear-gradient(top,#fafafa 0%,#e1e1e1 100%);background-image:linear-gradient(to bottom,#fafafa 0%,#e1e1e1 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffafafa',endColorstr='#ffe1e1e1',GradientType=0);border:1px solid #09f;}.shortcuts .shortcut-sm:hover{background:#e8e8e8;background-image:-webkit-gradient(linear,left 0%,left 100%,from(#fafafa),to(#e1e1e1));background-image:-webkit-linear-gradient(top,#fafafa,0%,#e1e1e1,100%);background-image:-moz-linear-gradient(top,#fafafa 0%,#e1e1e1 100%);background-image:linear-gradient(to bottom,#fafafa 0%,#e1e1e1 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffafafa',endColorstr='#ffe1e1e1',GradientType=0);border:1px solid #09f;}.shortcuts .shortcut:active{box-shadow:inset 0 3px 5px rgba(0,0,0,.125);}.shortcuts .shortcut-sm:active{box-shadow:inset 0 3px 5px rgba(0,0,0,.125);}.shortcuts .shortcut:hover .shortcut-icon{color:#c93;}.shortcuts .shortcut-sm:hover .shortcut-icon{color:#666;}.shortcuts .shortcut-label{display:block;margin-top:.75em;font-size:1.125rem;font-weight:bold;color:#333;border-top:1px solid #dedede;}.table-sm>thead>tr>th,.table-sm>tbody>tr>th,.table-sm>tfoot>tr>th,.table-sm>thead>tr>td,.table-sm>tbody>tr>td,.table-sm>tfoot>tr>td{padding:.15em;}.ajax__tab_xp .ajax__tab_header .ajax__tab_tab{height:21px;}.navbar{min-height:10px;}.fontPiccolo{font-size:8pt;}.fontNormale{font-size:12pt;}.fontMedio{font-size:18pt;}.fontGrande{font-size:24pt;}.padSmall{padding:4px;}.padMed{padding:8px;}.padHigh{padding:16px;}.pad3{padding:3px;}.uiMini{font-size:.8em;}.GridPager a,.GridPager span{display:block;height:1.5em;width:1em;text-align:center;text-decoration:none;}.GridPager a{background-color:#f5f5f5;color:#969696;}.GridPager span{background-color:#a1dcf2;color:#000;font-weight:bold;}.menuMainY{padding:6px 10px;text-align:left;height:3.3em;background:#121212;background-image:-webkit-gradient(linear,left 0%,left 100%,from(#565656),to(#343434));background-image:-webkit-linear-gradient(top,#565656,0%,#343434,100%);background-image:-moz-linear-gradient(top,#565656 0%,#343434 100%);background-image:linear-gradient(to bottom,#565656 0%,#343434 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#565656',endColorstr='#343434',GradientType=0);-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;}.body100{margin-top:0;margin-left:0;margin-bottom:0;margin-right:0;font-family:Verdana,Arial;font-size:small;height:100%;width:100%;}.lblTitoloUI{color:#f00;font-size:12pt;font-style:italic;font-weight:bold;}.lblTitoloUImini{color:#f00;font-size:8pt;font-weight:bold;}.lblMessUI{color:#000;font-size:10pt;}.rigaMacchine{vertical-align:middle;height:300px;width:17%;}.valoriResoconto{height:150px;vertical-align:top;}.imgResoconto{height:95px;vertical-align:bottom;}.sequencerVerde{height:80px;background-image:url(../images/verde.png);}.sequencerGiallo{height:80px;background-image:url(../images/giallo.png);}.sequencerRosso{height:80px;background-image:url(../images/rosso.png);}.sequencerSpento{height:80px;background-image:url(../images/grigio.png);}.sv{height:80px;background-image:url(../images/verde.png);}.sg{height:80px;background-image:url(../images/giallo.png);}.sr{height:80px;background-image:url(../images/rosso.png);}.ss{height:80px;background-image:url(../images/grigio.png);}.timeHist{vertical-align:bottom;text-align:left;}.barTempoCiclo{background-image:url(../images/grigio.png);}.timeLine{width:100%;height:7px;font-size:7pt;text-align:left;}.timeBar{width:100%;}.filtraggio{width:100%;font-size:8pt;background-color:#ababef;}.fullTick{text-align:left;height:7px;font-size:7pt;border-left:#000 1px solid;}.midTick{text-align:left;height:7px;font-size:7pt;border-left:#bababa 1px dotted;}.sVe{text-align:left;width:100%;background:linear-gradient(#009036,#8cbd59,#00762c);background-color:#009036;color:#ff0;}.sGi{text-align:left;width:100%;background:linear-gradient(#ffec00,#ffef27,#b1a400);background-color:#ffec00;}.sRo{text-align:left;width:100%;background-color:#e2001a;background-image:url(../images/rosso.png);}.sBl{text-align:left;width:100%;background:linear-gradient(#509eff,#84baff,#3690ff);background-color:#3690ff;color:#ff0;}.sGr{text-align:left;width:100%;background:linear-gradient(#bcbcbc,#e0e0e0,#aaa);background-color:#bcbcbc;}.statoMacchine{font-size:10pt;height:100%;text-align:left;}.statoRun{height:100%;font-size:12pt;font-weight:bold;background-color:#cfc;}.statoSetup{height:100%;font-size:12pt;font-weight:bold;background-color:#ffc;}.statoGuasto{height:100%;font-size:12pt;font-weight:bold;background-color:#faa;}.statoCampionatura{height:100%;font-size:12pt;font-weight:bold;background-color:#ff0;}.statoDisposizione{height:100%;font-size:12pt;font-weight:bold;background-color:#808080;}.statoVarie{height:100%;font-size:12pt;font-weight:bold;background-color:#800000;}.topTitle{font-size:1.5em;font-weight:bold;text-align:left;background-repeat:repeat-x;background-position:0% 0%;background-attachment:scroll;background-color:#767676;background-image:-webkit-gradient(linear,left top,left bottom,from(#000),to(#767676));background-image:-webkit-linear-gradient(#000,#767676);background-image:-moz-linear-gradient(#000,#767676);background-image:-ms-linear-gradient(#000,#767676);background-image:-o-linear-gradient(#000,#767676);background-image:linear-gradient(#000,#767676);}.topTitle a,.topTitle a:visited{color:#fff;}.warning{padding:4px;font-weight:bold;border-style:solid;border-color:#ff1212;}.menuSx{font-size:8pt;width:180px;vertical-align:top;height:530px;background:#dee8f5;}.hlBounce{font-weight:bold;font-size:10pt;}.alertAjax{color:#ea101e;font-size:small;font-weight:bold;}.dxButtonClass{padding-right:8px;padding-left:8px;font-weight:bold;font-size:9pt;padding-bottom:2px;vertical-align:middle;color:#ff0;padding-top:2px;font-family:verdana,arial;text-align:justify;}.dxButtonSmallClass{padding-right:4px;padding-left:4px;font-size:8pt;padding-bottom:2px;vertical-align:middle;color:#ff0;padding-top:2px;font-family:verdana,arial;text-align:justify;}.dateTimeSmall{padding-right:1px;padding-left:1px;padding-bottom:1px;padding-top:1px;font-size:8pt;vertical-align:middle;color:#ff0;font-family:verdana,arial;text-align:left;}.barraTitolo{background-color:#33b;vertical-align:middle;height:20pt;}.grView{color:#333;font-size:8pt;padding-left:1px;padding-right:1px;padding-top:1px;padding-bottom:1px;}.ctrHeaderPager{background-color:#b8b8b8;font-weight:bold;color:#fff;}.ctrFooter{background-color:#507cd1;font-weight:bold;color:#fff;}.ctrRowStyle{background-color:#eff3fb;}.ctrAltRowStyle{background-color:#fff;}.ctrEditRowStyle{background-color:#d1ddf1;}.ctrSelRowStyle{font-weight:bold;color:#333;background-color:#d1ddf1;}.ctrCommRow{font-weight:bold;background-color:#d1ddf1;}.ctrFiledHead{background-color:#dee8f5;font-weight:bold;width:25%;}.ctrLabelStrong{font-weight:bold;}.ctrFieldEdit{font-size:8pt;}INPUT{font-size:8pt;}.tableContenuto{padding:1em;margin:.2em 1em .2em .2em;width:100%;}.topContrDx{text-align:center;background-color:#fff;text-align:left;font-size:9pt;}.topContrSx{padding:6px 3px 6px 3px;text-align:center;background-color:#dee8f5;border-top:solid 2px #55b;border-left:solid 2px #55b;border-right:solid 2px #55b;font-weight:bold;font-size:8pt;}.contrDx{vertical-align:top;width:100%;background-color:#fff;font-size:8pt;border:1px solid #1a1a44;}.bodyMainCenter{background-image:url('../images/sfondo.png');background-repeat:no-repeat;vertical-align:middle;text-align:center;height:100%;width:100%;}.bottomWrite{vertical-align:bottom;font-weight:bold;font-size:7pt;text-align:right;}.bodyCenter{vertical-align:middle;text-align:center;height:100%;width:100%;}.centerMenu{background-color:#fff;text-align:center;border-width:thin;border-style:groove;border-color:#00f;}.pnlMenuSx{padding-right:5px;}A:visited{color:#00f;}A:hover{color:#000;}.ctrSelRow2DetailStyle{font-weight:bold;color:#333;background-color:#d1ddf1;}.pnlDettaglio{margin:4px 4px 4px 4px;}.dettaglioRiga{vertical-align:top;}.pnlMaster{height:300px;}.pnlDrillDown{border-left:solid 8px #d1ddf1;border-top:solid 8px #d1ddf1;border-bottom:solid 8px #d1ddf1;border-right:solid 8px #d1ddf1;vertical-align:top;height:290px;}.clonaUserPerm{color:#ff6;background-color:#ea101e;}.boxRicerca{padding:4px;}.divSx{float:left;padding:0;margin:0;}.divDx{float:right;padding:0;margin:0;}.clearDiv{clear:both;}.formatTableGeneral{height:100%;width:100%;border-bottom-width:0;}.dgCenter{text-align:center;}.menuSxTree{color:#d9101e;font-size:9pt;text-align:left;font-weight:bold;margin-left:0;margin-right:0;margin-top:0;}.menuSxTreeOver{color:#fff;font-size:10pt;text-align:left;font-weight:bold;margin-left:0;margin-right:0;margin-top:0;}.menuSxElem{color:#00008b;font-size:7pt;text-align:left;font-weight:bold;margin-left:0;margin-right:0;margin-top:0;}.menuSxElemOver{color:#000;font-size:7pt;text-align:left;font-weight:bold;margin-left:0;margin-right:0;margin-top:0;}.menuSxElemSmall{font-size:7pt;text-align:left;margin-left:0;margin-right:0;font-weight:normal;color:#555;margin-top:0;}.menuSxElemSmallOver{color:#555;font-size:9pt;text-align:left;margin-left:0;margin-right:0;font-weight:normal;margin-top:0;}.userClass{padding-right:8px;padding-left:8px;font-weight:bold;font-size:9pt;padding-bottom:2px;vertical-align:bottom;color:#fff;padding-top:2px;font-family:verdana,arial;text-align:justify;}.topMenuMess{font-size:9pt;text-align:left;margin-left:0;margin-right:0;font-weight:bold;color:#fff;margin-top:0;}.topMenuMessEn{font-size:9pt;text-align:left;margin-left:0;margin-right:0;font-weight:bold;color:#000;margin-top:0;}.bodyMain{background-image:url('../images/sfondo.png');background-repeat:no-repeat;vertical-align:top;height:100%;width:100%;}.treeCdC{width:250px;text-align:right;font-size:8pt;width:180px;vertical-align:top;height:100%;background:#fff;}.logoUpSx{width:200px;text-align:left;}.topMenu{width:100%;text-align:left;vertical-align:bottom;}.tabModPrinc{background-color:#fff;}.sxTabPrinc{font-size:10pt;font-style:italic;color:#00f;font-weight:bold;background-color:Transparent;}.dxTabPrinc{background-color:#cbcbff;text-align:right;}.lblTabPrincLang{font-weight:bold;font-size:13pt;color:#00008b;margin-left:8px;margin-right:4px;}.lblTabPrincEn{font-weight:normal;font-size:7pt;color:#00008b;margin-left:4px;margin-right:8px;}.lblTabPrincLang2{font-weight:bold;font-size:10pt;color:#fff;margin-left:8px;margin-right:4px;}.lblTabPrincEn2{font-weight:normal;font-size:7pt;color:#fff;margin-left:4px;margin-right:8px;}.tab_1{vertical-align:top;}.sxTab_1{background-color:#c8d0d4;text-align:left;}.sxTab_1_new{background-color:#99c;text-align:left;}.dxTab_1{width:70%;background-color:#c8d0d4;}.lblTab_1Lang{font-size:10pt;font-weight:bold;color:#00008b;margin-left:8px;margin-right:4px;}.lblTab_1En{font-size:7pt;font-weight:normal;color:#00008b;margin-left:4px;margin-right:8px;}.tab_1Body{vertical-align:middle;border:1px solid #f90;}.lblLang{font-size:10pt;font-weight:bold;color:#000;}.lblEn{font-size:7pt;color:#000;}.dgSx{background-color:#fff;border-width:0;border-style:solid;border-color:#900;}.dgSxSel{text-align:right;font-size:8pt;font-weight:bold;color:#639;background-color:#fc6;padding-left:1px;padding-right:1px;padding-top:1px;}.dgSxItem{text-align:right;font-size:7pt;color:#309;background-color:Transparent;padding-left:1px;padding-right:1px;padding-top:1px;}.dgSxAltItem{text-align:right;font-size:7pt;color:#309;background-color:#f5f5f5;padding-left:1px;padding-right:1px;padding-top:1px;}.dgSxEdit{font-size:8pt;color:#639;background-color:#fc6;padding-left:1px;padding-right:1px;padding-top:1px;vertical-align:text-top;}.dgSxHead{color:#ffc;background:#900;font-weight:bold;font-size:8pt;padding-left:1px;padding-right:1px;padding-top:1px;}.dgSxHead2{color:#ffc;background:#997;font-weight:bold;font-size:8pt;padding-left:1px;padding-right:1px;padding-top:1px;}.dgSxFoot{text-align:right;color:#000;background:#bcb;font-size:8pt;padding-left:1px;padding-right:1px;padding-top:1px;font-weight:bold;border-bottom-style:solid;border-color:#000;}.dgSxPaging{text-align:left;color:#000;background:#fff;font-size:8pt;padding-left:1px;padding-right:1px;padding-top:1px;}.sxTab_2{background-color:#1a6;text-align:left;}.dxTab_2{width:70%;background-color:Transparent;}.lblTab_2Lang{font-size:10pt;font-weight:bold;color:#fff;margin-left:8px;margin-right:4px;}.lblTab_2En{font-size:7pt;font-weight:normal;color:#fff;margin-left:4px;margin-right:8px;}.tab_2Body{vertical-align:middle;border:1px solid #1a6;}.dgDx{background-color:#fff;border:1px solid #039;}.dgDxSel{font-size:8pt;font-weight:bold;color:#cf9;background-color:#099;padding-left:1px;padding-right:1px;padding-top:1px;}.dgDxItem{font-size:7pt;color:#039;background-color:Transparent;padding-left:1px;padding-right:1px;padding-top:1px;}.dgDxAltItem{font-size:7pt;color:#309;background-color:#f5f5f5;padding-left:1px;padding-right:1px;padding-top:1px;}.dgDxEdit{font-size:8pt;font-weight:bold;color:#cf9;background-color:#099;padding-left:1px;padding-right:1px;padding-top:1px;}.dgDxHead{color:#ccf;background:#039;font-weight:bold;font-size:8pt;padding-left:1px;padding-right:1px;padding-top:1px;}.dgDxFoot{color:#039;background-color:#9cc;font-size:10pt;padding-left:1px;padding-right:1px;padding-top:1px;}.chPwdTitle{padding:2px;font-weight:bold;font-size:24pt;color:#f00;text-align:center;}.chPwdTxt{padding:2px;font-weight:bold;font-size:10pt;color:#f00;text-align:center;}.chPwdMess{padding:2px;font-weight:bold;font-style:italic;font-size:9pt;color:#ff0;text-align:center;}.lblFiltrLang{font-size:10pt;font-weight:bold;color:#000;margin-left:2px;margin-right:2px;}.lblFiltrEn{font-size:7pt;font-weight:normal;color:#000;margin-left:2px;margin-right:2px;}.loginTitle{font-weight:bold;font-size:30pt;color:#f00;}.loginTxt{padding:2px;font-weight:bold;font-size:10pt;color:#f00;text-align:center;}.loginMess{padding:2px;font-weight:bold;font-style:italic;font-size:9pt;color:#ff0;text-align:center;}.reportLabel{font-size:16pt;}.reportValue{font-size:16pt;font-weight:bold;}.reportExplLang{font-size:10pt;}.reportExplEn{font-size:7pt;font-style:italic;}.reportElencoZap{font-size:9pt;}.UnauthAppTitle{font-weight:bold;font-size:48pt;margin-left:10pt;}.UnauthTitle{font-size:24pt;color:#f00;margin-left:30pt;}.UnauthMess{font-size:12pt;font-style:italic;margin-left:30pt;}.lblMess{color:#f00;font-size:12pt;font-style:italic;font-weight:bold;}.tableHead{white-space:nowrap;height:auto;vertical-align:top;line-height:18px;width:100%;height:100%;}.tableHead2{white-space:nowrap;height:auto;vertical-align:top;line-height:18px;color:#ffc;background-color:#997;width:100%;}.cmbFiltrText{font-size:9pt;}.currencyFormat{white-space:nowrap;text-align:right;vertical-align:baseline;}.UserLabel{background-color:#f90;text-align:center;margin:6px;}.Calend{padding:4px;background:#fff;color:#000;font-size:8pt;font-family:Verdana;border-color:#999;height:180px;width:200px;}.cmbMini{font-size:8pt;}.txtMini{font-size:8pt;}.valOk{color:#008000;}.valKo{color:#f00;font-weight:bold;}.suggerimento{font-size:8pt;font-weight:bold;color:#f00;}.lblBudget{font-size:8pt;text-align:left;font-weight:bold;}.errore{font-weight:bold;font-size:8pt;color:#f00;background-color:#ff0;}.valUpd{font-style:italic;}.txtMiniLeft{font-size:8pt;text-align:left;}.valOk{color:#008000;}.valKo{color:#f00;font-weight:bold;}.suggerimento{font-size:8pt;font-weight:bold;color:#f00;}.clsBody{border-right:#c6d7da thin solid;border-top:#c6d7da thin solid;border-left:#c6d7da thin solid;border-bottom:#c6d7da thin solid;}.clsCurrentWeek{color:#fff;font-size:12px;text-decoration:none;font-family:Tahoma,Arial,Helvetica,sans-serif;white-space:nowrap;border-top:#c6d7da thin solid;border-bottom:#c6d7da thin solid;background-color:#8cc6ff;font-weight:bolder;font-weight:bold;}.clsCurrentWeek2{color:#000;font-size:12px;text-decoration:none;font-family:Tahoma,Arial,Helvetica,sans-serif;white-space:nowrap;border-top:#c6d7da thin solid;border-bottom:#c6d7da thin solid;font-weight:bolder;font-weight:bold;}.clsDayName{color:#0c0b5f;background-color:#bbbaf5;font-size:12px;text-decoration:none;font-family:Tahoma,Arial,Helvetica,sans-serif;white-space:nowrap;}.clsCurrentDay{color:#fff;background-color:#398ce7;font-size:12px;text-decoration:none;font-family:Tahoma,Arial,Helvetica,sans-serif;white-space:nowrap;font-weight:bolder;font-weight:bold;}.clsWorkDay{color:#000;background-color:#dbeaf5;font-size:12px;text-decoration:none;font-family:Tahoma,Arial,Helvetica,sans-serif;white-space:nowrap;}.clsWorkDay:hover{color:#009400;background-color:#dbeaf5;font-size:12px;text-decoration:underline;font-family:Tahoma,Arial,Helvetica,sans-serif;white-space:nowrap;}.clsWorkDayOtherMonth{color:#000;font-size:12px;text-decoration:none;font-family:Tahoma,Arial,Helvetica,sans-serif;white-space:nowrap;}.clsWeekEnd{color:#f00;background-color:#dbeaf5;font-size:12px;text-decoration:none;font-family:Tahoma,Arial,Helvetica,sans-serif;white-space:nowrap;}.clsWeekEnd:hover{color:#009400;background-color:#dbeaf5;font-size:12px;text-decoration:underline;font-family:Tahoma,Arial,Helvetica,sans-serif;white-space:nowrap;}.clsWeekEndOtherMonth{color:#f00;font-size:12px;text-decoration:none;font-family:Tahoma,Arial,Helvetica,sans-serif;white-space:nowrap;}.searchHead{background-color:#bab;}.textHead{background-color:#96f;}.linkAnnulla{background-color:#e99;color:#000;font-weight:bold;font-size:14pt;}.linkSalva{background-color:#9e9;color:#000;font-weight:bold;font-size:14pt;}.lblSearchLang{font-weight:bold;font-size:11pt;color:#00008b;margin-left:8px;margin-right:4px;}.tblDett{vertical-align:top;background-color:#fff;text-align:left;}.pnlPar_1{background-color:#ea101e;}.pnlPar_1_En{font-size:7pt;font-weight:normal;color:#c0c0c0;}.pnlPar_1_Lang{font-size:8pt;font-weight:bold;color:#c0c0c0;}.pnlPar_1_Error{font-size:7pt;font-weight:bold;color:#ad0;}.pnlPar_1_Descr{background-color:#ea101e;font-size:9pt;font-weight:normal;color:#ff0;}.pnlPar_2{background-color:#dcdcdc;}.pnlPar_2_En{font-size:7pt;font-weight:normal;color:#000;}.pnlPar_2_Lang{font-size:8pt;font-weight:bold;color:#000;}.pnlPar_2_Error{font-size:7pt;font-weight:bold;color:#f00;}.pnlPar_2_Descr{font-size:9pt;font-weight:normal;}.pnlPar_3{background-color:#44c;}.pnlPar_3_En{font-size:8pt;font-weight:bold;color:#ff0;}.pnlPar_3_Lang{font-size:8pt;font-weight:bold;color:#c0c0c0;}.pnlPar_3_Error{font-size:7pt;font-weight:bold;color:#ff0;}.pnlPar_3_Descr{background-color:#44c;font-size:9pt;font-weight:normal;color:#ff0;}.pnlPar_3_warn{background-color:#44c;font-size:8pt;font-weight:normal;font-style:italic;color:#ff0;}.dlTestata{background-color:#fff;border-width:0;border-style:solid;border-color:#009;}.dlTestataSel{font-size:8pt;color:#396;background-color:#111;padding-left:1px;padding-right:1px;padding-top:1px;}.dlTestataItem{text-align:right;font-size:7pt;color:#309;background-color:Transparent;padding-left:1px;padding-right:1px;padding-top:1px;}.dlTestataItemObblig{text-align:right;font-size:7pt;color:#000;background-color:#b3ccff;padding-left:1px;padding-right:1px;padding-top:1px;}.dlTestataAltItem{text-align:right;font-size:7pt;color:#309;background-color:#f5f5f5;padding-left:1px;padding-right:1px;padding-top:1px;}.dlTestataEdit{font-size:8pt;color:#396;background-color:#6fc;padding-left:1px;padding-right:1px;padding-top:1px;vertical-align:text-top;}.dlTestataHead{color:#cff;background:#009;font-weight:bold;font-size:8pt;padding-left:1px;padding-right:1px;padding-top:1px;}.dlTestataHead2{color:#cff;background:#979;font-weight:bold;font-size:8pt;padding-left:1px;padding-right:1px;padding-top:1px;}.dlTestataFoot{text-align:right;color:#33d;background:#d4c8d0;font-size:8pt;padding-left:1px;padding-right:1px;padding-top:1px;}.dlTestata_Lang{font-size:7pt;font-weight:bold;color:#36b;}.dlTestata_En{font-size:7pt;font-weight:normal;color:#393;}.idxContratto{text-align:center;font-size:10pt;font-weight:bold;}.idxStatoContratto{text-align:right;font-size:10pt;font-weight:bold;font-style:italic;color:#00f;}.dlTextbox{font-size:8pt;}.dlLabel{font-size:8pt;color:#000;background-color:Transparent;border-style:none;}.pnl_bozza{background:#dcdcdc;}.pnl_inApprov{background:#cbcbcb;}.pnl_freezed{background:#bababa;}.calDayHead{font-weight:bold;color:#fff;background-color:#6969df;font-size:9pt;}.calTitle{font-weight:bold;color:#00f;background-color:#bababa;font-size:11pt;}.calOtherMonthDay{background:#dcdcdc;}.calWeekEnd{background:#cbcbcb;font-weight:bold;}.cal{font-family:Verdana;font-size:10pt;}.calSel{background:#f00;font-weight:bold;color:#fff;}.calNextPrev{font-weight:bold;}.lblValSel{font-size:8pt;color:#000;background-color:Transparent;border-style:none;}.tableDett1{background:#98ff98;}.lblDett1{text-align:left;font-weight:bold;font-size:7pt;color:#000;}.valDett1{font-size:8pt;color:#000;font-weight:normal;}.tab_2lbl{vertical-align:baseline;border-collapse:collapse;border-width:thin;border-style:none;font-size:7pt;}.dettSel{border-right:#008000 1px solid;padding-right:8px;border-top:#008000 1px solid;padding-left:8px;font-weight:bold;font-size:9pt;background:#3e4;padding-bottom:2px;vertical-align:bottom;border-left:#008000 1px solid;color:#fff;padding-top:2px;border-bottom:#008000 1px solid;font-family:verdana,arial;text-align:justify;}.dettDesel{border-right:#008000 1px solid;padding-right:8px;border-top:#008000 1px solid;padding-left:8px;font-weight:bold;font-size:9pt;background:#fff;padding-bottom:2px;vertical-align:bottom;border-left:#008000 1px solid;color:#000;padding-top:2px;border-bottom:#008000 1px solid;font-family:verdana,arial;text-align:justify;}.dettHide{border-right:#ffa500 1px solid;padding-right:8px;border-top:#ffa500 1px solid;padding-left:8px;font-weight:bold;font-size:9pt;background:#f34;padding-bottom:2px;vertical-align:bottom;border-left:#ffa500 1px solid;color:#fff;padding-top:2px;border-bottom:#ffa500 1px solid;font-family:verdana,arial;text-align:justify;}.tableDett3{background:#98ff98;font-size:9pt;}.dett3Head{background:#00f;color:#ff0;font-weight:bold;font-size:9pt;}.dett3Col1{color:#000;font-weight:bold;font-size:9pt;}.RDA{font-size:7pt;}.Ord{font-size:7pt;background:#d0ffe3;}.Fatt{font-size:7pt;}.linkHead{color:#fff;}.titoloMed{color:#f00;font-size:18pt;font-weight:bold;}.testoMed{font-size:12pt;}.dgAllegati{background-color:#fff;border-width:0;border-style:solid;border-color:#090;}.dgAllegatiSel{text-align:right;font-size:8pt;font-weight:bold;color:#693;background-color:#cf6;padding-left:1px;padding-right:1px;padding-top:1px;}.dgAllegatiItem{text-align:right;font-size:7pt;color:#390;background-color:Transparent;padding-left:1px;padding-right:1px;padding-top:1px;}.dgAllegatiAltItem{text-align:right;font-size:7pt;color:#390;background-color:#f5f5f5;padding-left:1px;padding-right:1px;padding-top:1px;}.dgAllegatiEdit{font-size:8pt;color:#693;background-color:#ccff66;padding-left:1px;padding-right:1px;padding-top:1px;vertical-align:text-top;}.dgAllegatiHead{color:#ffc;background:#090;font-weight:bold;font-size:8pt;padding-left:1px;padding-right:1px;padding-top:1px;}.dgAllegatiFoot{text-align:right;color:#000;background:#cbb;font-size:8pt;padding-left:1px;padding-right:1px;padding-top:1px;font-weight:bold;border-bottom-style:solid;border-color:#000;}.dgAllegatiPaging{text-align:left;color:#000;background:#fff;font-size:8pt;padding-left:1px;padding-right:1px;padding-top:1px;}.btnTab{border-right:#ea101e 1px solid;padding-right:8px;border-top:#ea101e 1px solid;padding-left:8px;font-weight:bold;font-size:9pt;background:#ea101e;padding-bottom:2px;vertical-align:top;border-left:#ea101e 1px solid;color:#fff;padding-top:0;border-bottom:#ea101e 1px solid;font-family:verdana,arial;text-align:justify;}.txtTab{font-size:8pt;font-family:verdana,arial;text-align:justify;}.dropdownList{font-weight:normal;font-size:7pt;background:#ea101e;color:#fff;font-family:verdana,arial;text-align:justify;}.job2do{width:50%;font-weight:normal;border-bottom-style:solid;border-bottom-width:thin;font-size:8pt;color:#00f;font-family:verdana,arial;text-align:left;}.jobDone{width:50%;font-weight:normal;border-bottom-style:solid;border-bottom-width:thin;font-size:8pt;color:#008000;font-family:verdana,arial;text-align:right;}.bodyAvanzamento{font-family:Verdana,Arial;background-image:url(images/gradiente.png);}.lblText{font-size:8pt;}.boxText{font-size:8pt;font-weight:normal;width:100%;}.lblValore{font-size:8pt;color:#000;background-color:Transparent;border-style:none;}.lblValoreBold{font-size:8pt;color:#000;font-weight:bold;background-color:Transparent;border-style:none;}.dgFiles{background-color:#fff;border-width:0;border-style:solid;border-color:#090;}.dgFilesSel{text-align:right;font-size:9pt;font-weight:bold;color:#693;background-color:#cf6;padding-left:1px;padding-right:1px;padding-top:1px;}.dgFilesItem{text-align:right;font-size:8pt;color:#390;background-color:Transparent;padding-left:1px;padding-right:1px;padding-top:1px;}.dgFilesAltItem{text-align:right;font-size:8pt;color:#390;background-color:#f5f5f5;padding-left:1px;padding-right:1px;padding-top:1px;}.dgFilesEdit{font-size:9pt;color:#693;background-color:#ccff66;padding-left:1px;padding-right:1px;padding-top:1px;vertical-align:text-top;}.dgFilesHead{color:#cff;background:#900;font-weight:bold;font-size:9pt;padding-left:1px;padding-right:1px;padding-top:1px;}.dgFilesFoot{text-align:right;color:#000;background:#cbb;font-size:9pt;padding-left:1px;padding-right:1px;padding-top:1px;font-weight:bold;border-bottom-style:solid;border-color:#000;}.dgFilesPaging{text-align:left;color:#000;background:#fff;font-size:9pt;padding-left:1px;padding-right:1px;padding-top:1px;}.statoOff{text-align:center;width:100%;font-size:10pt;color:#44f;}.statoOn{text-align:center;width:100%;font-size:10pt;color:#fff;background:#f90;}.eta2{width:33%;text-align:center;background-color:#fcc;font-size:10pt;font-weight:bold;}.termAnt{width:33%;text-align:center;background-color:#cfc;font-size:10pt;font-weight:bold;}.termPost{width:33%;text-align:center;background-color:#ccf;font-size:10pt;font-weight:bold;}.saveClose{width:100%;text-align:center;background-color:#ea101e;padding:2pt;}.lblColorGray{padding-left:2pt;text-align:left;background-color:#777;font-size:10pt;font-weight:bold;color:#fff;}.lblWhite{width:70%;background-color:#fff;}.tblGray{border-color:#777;}.smallTable{width:300px;}.centerAll{vertical-align:middle;text-align:center;}.selLinguaTxt{padding:2px;font-weight:bold;font-size:12pt;color:#ff0;text-align:center;}.boxShadowDark{-webkit-box-shadow:3px 3px 6px rgba(0,0,0,.3);-moz-box-shadow:3px 3px 6px rgba(0,0,0,.3);box-shadow:3px 3px 6px rgba(0,0,0,.3);}.contrRiq{border-left:solid 2px #c0c0c0;background-color:#fff;border:2px solid #c0c0c0;}.btnMain{font-size:larger;height:250px;width:250px;font-weight:bold;white-space:normal;} \ No newline at end of file diff --git a/MP-ADM/MP-ADM.csproj b/MP-ADM/MP-ADM.csproj index 9f1f14e6..4a50869a 100644 --- a/MP-ADM/MP-ADM.csproj +++ b/MP-ADM/MP-ADM.csproj @@ -603,6 +603,7 @@ + @@ -957,6 +958,13 @@ cmp_TechSheetArt.ascx + + cmp_TechSheetArtAddNew.ascx + ASPXCodeBehind + + + cmp_TechSheetArtAddNew.ascx + cmp_TechSheetDetail.ascx ASPXCodeBehind diff --git a/MP-ADM/WebUserControls/cmp_ImageArchive.ascx b/MP-ADM/WebUserControls/cmp_ImageArchive.ascx index 684b428d..5540d140 100644 --- a/MP-ADM/WebUserControls/cmp_ImageArchive.ascx +++ b/MP-ADM/WebUserControls/cmp_ImageArchive.ascx @@ -1,9 +1,9 @@ <%@ Control Language="C#" AutoEventWireup="true" CodeBehind="cmp_ImageArchive.ascx.cs" Inherits="MP_ADM.WebUserControls.cmp_ImageArchive" %> -
-
+
+
-
+
Ricerca [ALT-T]
@@ -14,7 +14,7 @@
-
+
col
@@ -27,7 +27,7 @@
-
+
show max
@@ -46,7 +46,7 @@
- + <%# Eval("name") %> diff --git a/MP-ADM/WebUserControls/cmp_ST_preview.ascx b/MP-ADM/WebUserControls/cmp_ST_preview.ascx index bb804e03..35aaeae0 100644 --- a/MP-ADM/WebUserControls/cmp_ST_preview.ascx +++ b/MP-ADM/WebUserControls/cmp_ST_preview.ascx @@ -4,9 +4,11 @@
-
+

Scheda Tecnica Articolo

+
+
Modifica Scheda
diff --git a/MP-ADM/WebUserControls/cmp_TechSheetArt.ascx b/MP-ADM/WebUserControls/cmp_TechSheetArt.ascx index 3447fc72..13592547 100644 --- a/MP-ADM/WebUserControls/cmp_TechSheetArt.ascx +++ b/MP-ADM/WebUserControls/cmp_TechSheetArt.ascx @@ -1,10 +1,11 @@ <%@ Control Language="C#" AutoEventWireup="true" CodeBehind="cmp_TechSheetArt.ascx.cs" Inherits="MP_ADM.WebUserControls.cmp_TechSheetArt" %> +<%@ Register Src="~/WebUserControls/cmp_TechSheetArtAddNew.ascx" TagPrefix="uc1" TagName="cmp_TechSheetArtAddNew" %> -
-
-
+
+
+
- Ricerca [ALT-T] + Schede [ALT-T]
@@ -13,20 +14,27 @@
- - - - +
+
+ Tipologia +
+ + + + +
- NUOVA - Approva -
-
- cod art + btnNew + Nuova Scheda + Approva
-
+
+
+ +
+
+
@@ -56,11 +64,15 @@ + - + + + + diff --git a/MP-ADM/WebUserControls/cmp_TechSheetArt.ascx.cs b/MP-ADM/WebUserControls/cmp_TechSheetArt.ascx.cs index d315b0ec..2c0c6189 100644 --- a/MP-ADM/WebUserControls/cmp_TechSheetArt.ascx.cs +++ b/MP-ADM/WebUserControls/cmp_TechSheetArt.ascx.cs @@ -48,16 +48,38 @@ namespace MP_ADM.WebUserControls } } + private void Cmp_TechSheetArtAddNew_eh_nuovoValore(object sender, EventArgs e) + { + resetSelezione(); + checkVisibility(); + } + #endregion Private Methods #region Protected Methods + protected void ddlTipo_SelectedIndexChanged(object sender, EventArgs e) + { + // imposto sul componente addNew tranne il valore ALL didefault... + cmp_TechSheetArtAddNew.CodTempl = ddlTipo.SelectedValue == "ALL" ? "" : ddlTipo.SelectedValue; + } + protected void grView_SelectedIndexChanged(object sender, EventArgs e) { raiseSelNew(); checkVisibility(); } + /// + /// RIchiesta nuova scheda + /// + /// + /// + protected void lbtAddNew_Click(object sender, EventArgs e) + { + cmp_TechSheetArtAddNew.Visible = !cmp_TechSheetArtAddNew.Visible; + } + /// /// /esegue salvataggio validazione scheda tecnica /// @@ -89,7 +111,12 @@ namespace MP_ADM.WebUserControls protected void Page_Load(object sender, EventArgs e) { + if (!Page.IsPostBack) + { + cmp_TechSheetArtAddNew.Visible = false; + } checkVisibility(); + cmp_TechSheetArtAddNew.eh_nuovoValore += Cmp_TechSheetArtAddNew_eh_nuovoValore; } protected void txtSearchArt_TextChanged(object sender, EventArgs e) @@ -100,6 +127,13 @@ namespace MP_ADM.WebUserControls #region Public Methods + public bool DelEnabled(object _numRow) + { + int numRows = 1; + int.TryParse(_numRow.ToString(), out numRows); + return numRows == 0; + } + public void doUpdate() { grView.DataBind(); diff --git a/MP-ADM/WebUserControls/cmp_TechSheetArt.ascx.designer.cs b/MP-ADM/WebUserControls/cmp_TechSheetArt.ascx.designer.cs index fe509837..0ce2c3a8 100644 --- a/MP-ADM/WebUserControls/cmp_TechSheetArt.ascx.designer.cs +++ b/MP-ADM/WebUserControls/cmp_TechSheetArt.ascx.designer.cs @@ -68,6 +68,15 @@ namespace MP_ADM.WebUserControls /// protected global::System.Web.UI.WebControls.LinkButton lbtApprove; + /// + /// Controllo cmp_TechSheetArtAddNew. + /// + /// + /// Campo generato automaticamente. + /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// + protected global::MP_ADM.WebUserControls.cmp_TechSheetArtAddNew cmp_TechSheetArtAddNew; + /// /// Controllo grView. /// diff --git a/MP-ADM/WebUserControls/cmp_TechSheetArtAddNew.ascx b/MP-ADM/WebUserControls/cmp_TechSheetArtAddNew.ascx new file mode 100644 index 00000000..867311a5 --- /dev/null +++ b/MP-ADM/WebUserControls/cmp_TechSheetArtAddNew.ascx @@ -0,0 +1,24 @@ +<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="cmp_TechSheetArtAddNew.ascx.cs" Inherits="MP_ADM.WebUserControls.cmp_TechSheetArtAddNew" %> +
+
+
+
+ +
+ + + + + + + +
+
+
+ SAVE +
+
+ +
+
\ No newline at end of file diff --git a/MP-ADM/WebUserControls/cmp_TechSheetArtAddNew.ascx.cs b/MP-ADM/WebUserControls/cmp_TechSheetArtAddNew.ascx.cs new file mode 100644 index 00000000..5f622695 --- /dev/null +++ b/MP-ADM/WebUserControls/cmp_TechSheetArtAddNew.ascx.cs @@ -0,0 +1,112 @@ +using SteamWare; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace MP_ADM.WebUserControls +{ + public partial class cmp_TechSheetArtAddNew : BaseUserControl + { + #region Public Properties + + public string CodArticolo + { + get + { + return ddlArticolo.SelectedValue; + } + } + + public string CodTempl + { + get + { + return hfCodTipo.Value; + } + set + { + hfCodTipo.Value = value; + preliminaryCheck(); + } + } + + #endregion Public Properties + + #region Private Methods + + /// + /// verifiche preliminari inserimento scheda + /// + /// + private bool preliminaryCheck() + { + bool answ = false; + // verifico OK selezione tipo + if (string.IsNullOrEmpty(CodTempl)) + { + displError("Errore! prego selezionare tipo scheda per proseguire."); + } + else + { + // verifico NON esista già + var tabST = DataLayerObj.taSTA.getBySearchArt(CodArticolo, CodTempl); + if (tabST.Rows.Count > 0) + { + displError("Errore! Scheda articolo già presente."); + } + else + { + // ok valido! + answ = true; + } + } + lbtAddNew.Enabled = answ; + return answ; + } + + #endregion Private Methods + + #region Protected Methods + + /// + /// selezione articolo + /// + /// + /// + protected void ddlArticolo_SelectedIndexChanged(object sender, EventArgs e) + { + preliminaryCheck(); + } + + protected void displError(string message) + { + lblMessage.Text = message; + lblMessage.Visible = !string.IsNullOrEmpty(message); + } + + protected void lbtAddNew_Click(object sender, EventArgs e) + { + bool checkOk = preliminaryCheck(); + if (checkOk) + { + DataLayerObj.taSTA.InsertQuery(CodTempl, CodArticolo, user_std.UtSn.userNameAD); + raiseNewVal(); + } + } + + protected void Page_Load(object sender, EventArgs e) + { + lblMessage.Visible = false; + } + + protected void txtSearch_TextChanged(object sender, EventArgs e) + { + ddlArticolo.DataBind(); + } + + #endregion Protected Methods + } +} \ No newline at end of file diff --git a/MP-ADM/WebUserControls/cmp_TechSheetArtAddNew.ascx.designer.cs b/MP-ADM/WebUserControls/cmp_TechSheetArtAddNew.ascx.designer.cs new file mode 100644 index 00000000..907882f7 --- /dev/null +++ b/MP-ADM/WebUserControls/cmp_TechSheetArtAddNew.ascx.designer.cs @@ -0,0 +1,71 @@ +//------------------------------------------------------------------------------ +// +// Codice generato da uno strumento. +// +// Le modifiche a questo file possono causare un comportamento non corretto e verranno perse se +// il codice viene rigenerato. +// +//------------------------------------------------------------------------------ + +namespace MP_ADM.WebUserControls +{ + + + public partial class cmp_TechSheetArtAddNew + { + + /// + /// Controllo txtSearch. + /// + /// + /// Campo generato automaticamente. + /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// + protected global::System.Web.UI.WebControls.TextBox txtSearch; + + /// + /// Controllo ddlArticolo. + /// + /// + /// Campo generato automaticamente. + /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// + protected global::System.Web.UI.WebControls.DropDownList ddlArticolo; + + /// + /// Controllo odsArticoli. + /// + /// + /// Campo generato automaticamente. + /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// + protected global::System.Web.UI.WebControls.ObjectDataSource odsArticoli; + + /// + /// Controllo hfCodTipo. + /// + /// + /// Campo generato automaticamente. + /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// + protected global::System.Web.UI.WebControls.HiddenField hfCodTipo; + + /// + /// Controllo lbtAddNew. + /// + /// + /// Campo generato automaticamente. + /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// + protected global::System.Web.UI.WebControls.LinkButton lbtAddNew; + + /// + /// Controllo lblMessage. + /// + /// + /// Campo generato automaticamente. + /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// + protected global::System.Web.UI.WebControls.Label lblMessage; + } +} diff --git a/MP-ADM/WebUserControls/cmp_TechSheetDetail.ascx b/MP-ADM/WebUserControls/cmp_TechSheetDetail.ascx index 81871146..aeb0025b 100644 --- a/MP-ADM/WebUserControls/cmp_TechSheetDetail.ascx +++ b/MP-ADM/WebUserControls/cmp_TechSheetDetail.ascx @@ -24,7 +24,7 @@
- + diff --git a/MP-ADM/WebUserControls/cmp_TechSheetDetail.ascx.cs b/MP-ADM/WebUserControls/cmp_TechSheetDetail.ascx.cs index 50ff2807..df43010f 100644 --- a/MP-ADM/WebUserControls/cmp_TechSheetDetail.ascx.cs +++ b/MP-ADM/WebUserControls/cmp_TechSheetDetail.ascx.cs @@ -86,6 +86,13 @@ namespace MP_ADM.WebUserControls checkVisibility(); } + protected void grView_RowDeleted(object sender, GridViewDeletedEventArgs e) + { + selImage = ""; + checkVisibility(); + raiseNewVal(); + } + protected void grView_RowEditing(object sender, GridViewEditEventArgs e) { selImage = ""; diff --git a/MapoDb/DS_SheetTech.Designer.cs b/MapoDb/DS_SheetTech.Designer.cs index 462c0691..47dccfbb 100644 --- a/MapoDb/DS_SheetTech.Designer.cs +++ b/MapoDb/DS_SheetTech.Designer.cs @@ -542,6 +542,8 @@ namespace MapoDb { private global::System.Data.DataColumn columnIsValidated; + private global::System.Data.DataColumn columnNumRow; + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] public ST_ActualDataTable() { @@ -647,6 +649,14 @@ namespace MapoDb { } } + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + public global::System.Data.DataColumn NumRowColumn { + get { + return this.columnNumRow; + } + } + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] [global::System.ComponentModel.Browsable(false)] @@ -684,7 +694,7 @@ namespace MapoDb { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] - public ST_ActualRow AddST_ActualRow(ST_TemplateRow parentST_TemplateRowByST_Template_ST_Actual, string CodArticolo, int MatrOpr, System.DateTime DtMod, string DescArticolo, string DescTempl, string UserLogin, bool IsValidated) { + public ST_ActualRow AddST_ActualRow(ST_TemplateRow parentST_TemplateRowByST_Template_ST_Actual, string CodArticolo, int MatrOpr, System.DateTime DtMod, string DescArticolo, string DescTempl, string UserLogin, bool IsValidated, int NumRow) { ST_ActualRow rowST_ActualRow = ((ST_ActualRow)(this.NewRow())); object[] columnValuesArray = new object[] { null, @@ -695,7 +705,8 @@ namespace MapoDb { DescArticolo, DescTempl, UserLogin, - IsValidated}; + IsValidated, + NumRow}; if ((parentST_TemplateRowByST_Template_ST_Actual != null)) { columnValuesArray[1] = parentST_TemplateRowByST_Template_ST_Actual[0]; } @@ -737,6 +748,7 @@ namespace MapoDb { this.columnDescTempl = base.Columns["DescTempl"]; this.columnUserLogin = base.Columns["UserLogin"]; this.columnIsValidated = base.Columns["IsValidated"]; + this.columnNumRow = base.Columns["NumRow"]; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] @@ -760,6 +772,8 @@ namespace MapoDb { base.Columns.Add(this.columnUserLogin); this.columnIsValidated = new global::System.Data.DataColumn("IsValidated", typeof(bool), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnIsValidated); + this.columnNumRow = new global::System.Data.DataColumn("NumRow", typeof(int), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnNumRow); this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] { this.columnIdxST}, true)); this.columnIdxST.AutoIncrement = true; @@ -781,6 +795,7 @@ namespace MapoDb { this.columnUserLogin.AllowDBNull = false; this.columnUserLogin.MaxLength = 50; this.columnIsValidated.AllowDBNull = false; + this.columnNumRow.ReadOnly = true; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] @@ -3146,6 +3161,22 @@ namespace MapoDb { } } + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + public int NumRow { + get { + try { + return ((int)(this[this.tableST_Actual.NumRowColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("Il valore della colonna \'NumRow\' nella tabella \'ST_Actual\' è DBNull.", e); + } + } + set { + this[this.tableST_Actual.NumRowColumn] = value; + } + } + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] public ST_TemplateRow ST_TemplateRow { @@ -3157,6 +3188,18 @@ namespace MapoDb { } } + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + public bool IsNumRowNull() { + return this.IsNull(this.tableST_Actual.NumRowColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + public void SetNumRowNull() { + this[this.tableST_Actual.NumRowColumn] = global::System.Convert.DBNull; + } + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] public ST_ActualRowRow[] GetST_ActualRowRows() { @@ -4187,6 +4230,7 @@ namespace MapoDb.DS_SheetTechTableAdapters { tableMapping.ColumnMappings.Add("DescTempl", "DescTempl"); tableMapping.ColumnMappings.Add("UserLogin", "UserLogin"); tableMapping.ColumnMappings.Add("IsValidated", "IsValidated"); + tableMapping.ColumnMappings.Add("NumRow", "NumRow"); this._adapter.TableMappings.Add(tableMapping); } @@ -4200,32 +4244,46 @@ namespace MapoDb.DS_SheetTechTableAdapters { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] private void InitCommandCollection() { - this._commandCollection = new global::System.Data.SqlClient.SqlCommand[4]; + this._commandCollection = new global::System.Data.SqlClient.SqlCommand[6]; this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand(); this._commandCollection[0].Connection = this.Connection; this._commandCollection[0].CommandText = "SELECT *\r\nFROM v_ST_Actual"; this._commandCollection[0].CommandType = global::System.Data.CommandType.Text; this._commandCollection[1] = new global::System.Data.SqlClient.SqlCommand(); this._commandCollection[1].Connection = this.Connection; - this._commandCollection[1].CommandText = "dbo.stp_ST_A_getByKey"; + this._commandCollection[1].CommandText = "dbo.stp_ST_A_DeleteQuery"; this._commandCollection[1].CommandType = global::System.Data.CommandType.StoredProcedure; this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); - this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IdxST", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); + this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_IdxST", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._commandCollection[2] = new global::System.Data.SqlClient.SqlCommand(); this._commandCollection[2].Connection = this.Connection; - this._commandCollection[2].CommandText = "dbo.stp_ST_A_getBySearch"; + this._commandCollection[2].CommandText = "dbo.stp_ST_A_getByKey"; this._commandCollection[2].CommandType = global::System.Data.CommandType.StoredProcedure; this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); - this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@SearchCodArt", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); - this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodTempl", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); + this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IdxST", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._commandCollection[3] = new global::System.Data.SqlClient.SqlCommand(); this._commandCollection[3].Connection = this.Connection; - this._commandCollection[3].CommandText = "dbo.stp_ST_A_updateValid"; + this._commandCollection[3].CommandText = "dbo.stp_ST_A_getBySearch"; this._commandCollection[3].CommandType = global::System.Data.CommandType.StoredProcedure; this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); - this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IdxST", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); - this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsValidated", global::System.Data.SqlDbType.Bit, 1, global::System.Data.ParameterDirection.Input, 1, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); - this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@UserLogin", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); + this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@SearchCodArt", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); + this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodTempl", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); + this._commandCollection[4] = new global::System.Data.SqlClient.SqlCommand(); + this._commandCollection[4].Connection = this.Connection; + this._commandCollection[4].CommandText = "dbo.stp_ST_A_InsertQuery"; + this._commandCollection[4].CommandType = global::System.Data.CommandType.StoredProcedure; + this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); + this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodTempl", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); + this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodArticolo", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); + this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@UserLogin", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); + this._commandCollection[5] = new global::System.Data.SqlClient.SqlCommand(); + this._commandCollection[5].Connection = this.Connection; + this._commandCollection[5].CommandText = "dbo.stp_ST_A_updateValid"; + this._commandCollection[5].CommandType = global::System.Data.CommandType.StoredProcedure; + this._commandCollection[5].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); + this._commandCollection[5].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IdxST", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); + this._commandCollection[5].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsValidated", global::System.Data.SqlDbType.Bit, 1, global::System.Data.ParameterDirection.Input, 1, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); + this._commandCollection[5].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@UserLogin", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] @@ -4257,7 +4315,7 @@ namespace MapoDb.DS_SheetTechTableAdapters { [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)] public virtual DS_SheetTech.ST_ActualDataTable getByKey(global::System.Nullable IdxST) { - this.Adapter.SelectCommand = this.CommandCollection[1]; + this.Adapter.SelectCommand = this.CommandCollection[2]; if ((IdxST.HasValue == true)) { this.Adapter.SelectCommand.Parameters[1].Value = ((int)(IdxST.Value)); } @@ -4274,7 +4332,7 @@ namespace MapoDb.DS_SheetTechTableAdapters { [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)] public virtual DS_SheetTech.ST_ActualDataTable getBySearchArt(string SearchCodArt, string CodTempl) { - this.Adapter.SelectCommand = this.CommandCollection[2]; + this.Adapter.SelectCommand = this.CommandCollection[3]; if ((SearchCodArt == null)) { this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value; } @@ -4292,11 +4350,79 @@ namespace MapoDb.DS_SheetTechTableAdapters { return dataTable; } + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] + public virtual int DeleteQuery(global::System.Nullable Original_IdxST) { + global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[1]; + if ((Original_IdxST.HasValue == true)) { + command.Parameters[1].Value = ((int)(Original_IdxST.Value)); + } + else { + command.Parameters[1].Value = global::System.DBNull.Value; + } + global::System.Data.ConnectionState previousConnectionState = command.Connection.State; + if (((command.Connection.State & global::System.Data.ConnectionState.Open) + != global::System.Data.ConnectionState.Open)) { + command.Connection.Open(); + } + int returnValue; + try { + returnValue = command.ExecuteNonQuery(); + } + finally { + if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) { + command.Connection.Close(); + } + } + return returnValue; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] + public virtual int InsertQuery(string CodTempl, string CodArticolo, string UserLogin) { + global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[4]; + if ((CodTempl == null)) { + command.Parameters[1].Value = global::System.DBNull.Value; + } + else { + command.Parameters[1].Value = ((string)(CodTempl)); + } + if ((CodArticolo == null)) { + command.Parameters[2].Value = global::System.DBNull.Value; + } + else { + command.Parameters[2].Value = ((string)(CodArticolo)); + } + if ((UserLogin == null)) { + command.Parameters[3].Value = global::System.DBNull.Value; + } + else { + command.Parameters[3].Value = ((string)(UserLogin)); + } + global::System.Data.ConnectionState previousConnectionState = command.Connection.State; + if (((command.Connection.State & global::System.Data.ConnectionState.Open) + != global::System.Data.ConnectionState.Open)) { + command.Connection.Open(); + } + int returnValue; + try { + returnValue = command.ExecuteNonQuery(); + } + finally { + if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) { + command.Connection.Close(); + } + } + return returnValue; + } + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] public virtual int updateValid(global::System.Nullable IdxST, global::System.Nullable IsValidated, string UserLogin) { - global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[3]; + global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[5]; if ((IdxST.HasValue == true)) { command.Parameters[1].Value = ((int)(IdxST.Value)); } diff --git a/MapoDb/DS_SheetTech.xsd b/MapoDb/DS_SheetTech.xsd index da86598b..e286d1d3 100644 --- a/MapoDb/DS_SheetTech.xsd +++ b/MapoDb/DS_SheetTech.xsd @@ -29,8 +29,20 @@ FROM v_ST_Actual + + + + + dbo.stp_ST_A_DeleteQuery + + + + + + + @@ -54,6 +66,19 @@ FROM v_ST_Actual + + + + dbo.stp_ST_A_InsertQuery + + + + + + + + + @@ -162,7 +187,7 @@ SELECT IdxST, Label, Oggetto, Num, CodGruppo, CodTipo, Value, CheckType, Require - + dbo.stp_ST_AR_AddByTemplate @@ -174,7 +199,7 @@ SELECT IdxST, Label, Oggetto, Num, CodGruppo, CodTipo, Value, CheckType, Require - + dbo.stp_ST_AR_deleteQuery @@ -642,7 +667,7 @@ SELECT CodTempl, Label, Oggetto, Num, CodGruppo, CodTipo, Value, CheckType, Requ - + @@ -684,10 +709,11 @@ SELECT CodTempl, Label, Oggetto, Num, CodGruppo, CodTipo, Value, CheckType, Requ + - + @@ -760,7 +786,7 @@ SELECT CodTempl, Label, Oggetto, Num, CodGruppo, CodTipo, Value, CheckType, Requ - + @@ -800,7 +826,7 @@ SELECT CodTempl, Label, Oggetto, Num, CodGruppo, CodTipo, Value, CheckType, Requ - + @@ -828,7 +854,7 @@ SELECT CodTempl, Label, Oggetto, Num, CodGruppo, CodTipo, Value, CheckType, Requ - + @@ -848,7 +874,7 @@ SELECT CodTempl, Label, Oggetto, Num, CodGruppo, CodTipo, Value, CheckType, Requ - + @@ -868,7 +894,7 @@ SELECT CodTempl, Label, Oggetto, Num, CodGruppo, CodTipo, Value, CheckType, Requ - + @@ -967,11 +993,11 @@ SELECT CodTempl, Label, Oggetto, Num, CodGruppo, CodTipo, Value, CheckType, Requ - - - - - + + + + + \ No newline at end of file diff --git a/MapoDb/DS_SheetTech.xss b/MapoDb/DS_SheetTech.xss index 6608bf0c..a25b0946 100644 --- a/MapoDb/DS_SheetTech.xss +++ b/MapoDb/DS_SheetTech.xss @@ -4,9 +4,9 @@ Changes to this file may cause incorrect behavior and will be lost if the code is regenerated. --> - + - + @@ -18,11 +18,11 @@ - 452 - 743 + 454 + 760 - 452 + 454 805 @@ -71,11 +71,11 @@ 727 - 547 + 566 - 651 - 547 + 653 + 566