diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9aab0aa..9eafcb7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,7 +4,7 @@ variables: ASPNET_MERGE_PATH: 'C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools' EXE_RELEASE_FOLDER: 'c:\Projetcs\Compiled\NKC\Release' DEPLOY_FOLDER: 'c:\Projects\Deploy\NKC\Builds' - VERS_MAIN: '2.0' + VERS_MAIN: '2.5' NEW_REL: '' NEXUS_PATH: 'NKC' PROJ_NAME: 'NKC_WF' @@ -110,8 +110,8 @@ Net:IIS01:deploy: stage: deploy tags: - win - rules: - - if: '$CI_COMMIT_BRANCH == "develop"' + only: + - develop before_script: - *nuget-fix - '& "$env:NUGET_PATH" restore NKC_WF.sln -Verbosity quiet' @@ -124,8 +124,8 @@ Net:IIS02:deploy: stage: deploy tags: - win - rules: - - if: '$CI_COMMIT_BRANCH == "master"' + only: + - master before_script: - *nuget-fix - '& "$env:NUGET_PATH" restore NKC_WF.sln -Verbosity quiet' @@ -161,9 +161,9 @@ Net:install: stage: installer tags: - win -# rules: -# - if: '$CI_COMMIT_BRANCH == "master"' -# when: manual + only: + - develop + - master variables: APP_NAME: NKC PROJ_NAME: NKC_WF diff --git a/NKC_WF/Reports/queueConf.json b/NKC_WF/Reports/queueConf.json index 194ac1b..32ff2af 100644 --- a/NKC_WF/Reports/queueConf.json +++ b/NKC_WF/Reports/queueConf.json @@ -29,6 +29,21 @@ "xmlParam": "EMF8.5in11in0.5in0.5in0.5in0.5in" } }, + { + "name": "queueUnloadBinNE03", + "template": "Bin.rdlc", + "printerName": "Microsoft Print to PDF", + "deviceInfoParam": { + "OutputFormat": "EMF", + "PageHeight": "11in", + "PageWidth": "8.5in", + "MarginLeft": "0.5in", + "MarginRight": "0.5in", + "MarginTop": "0.5in", + "MarginBottom": "0.5in", + "xmlParam": "EMF8.5in11in0.5in0.5in0.5in0.5in" + } + }, { "name": "queueUnloadCartNE01", "template": "Cart.rdlc", @@ -59,6 +74,21 @@ "xmlParam": "EMF8.5in11in0.5in0.5in0.5in0.5in" } }, + { + "name": "queueUnloadCartNE03", + "template": "Cart.rdlc", + "printerName": "Microsoft Print to PDF", + "deviceInfoParam": { + "OutputFormat": "EMF", + "PageHeight": "11in", + "PageWidth": "8.5in", + "MarginLeft": "0.5in", + "MarginRight": "0.5in", + "MarginTop": "0.5in", + "MarginBottom": "0.5in", + "xmlParam": "EMF8.5in11in0.5in0.5in0.5in0.5in" + } + }, { "name": "queueBunk", "template": "BunkGroup.rdlc", @@ -134,6 +164,21 @@ "xmlParam": "EMF4.09in2in0in0in0in0in" } }, + { + "name": "queuePartNE03", + "template": "Part.rdlc", + "printerName": "Microsoft Print to PDF", + "deviceInfoParam": { + "OutputFormat": "EMF", + "PageHeight": "2in", + "PageWidth": "4.09in", + "MarginLeft": "0in", + "MarginRight": "0in", + "MarginTop": "0in", + "MarginBottom": "0in", + "xmlParam": "EMF4.09in2in0in0in0in0in" + } + }, { "name": "queueOtherPart", "template": "OtherPart.rdlc", @@ -238,5 +283,20 @@ "MarginBottom": "0.5in", "xmlParam": "EMF8.5in11in0.5in0.5in0.5in0.5in" } + }, + { + "name": "queueSpecialPartNE03", + "template": "SpecialParts.rdlc", + "printerName": "Microsoft Print to PDF", + "deviceInfoParam": { + "OutputFormat": "EMF", + "PageHeight": "11in", + "PageWidth": "8.5in", + "MarginLeft": "0.5in", + "MarginRight": "0.5in", + "MarginTop": "0.5in", + "MarginBottom": "0.5in", + "xmlParam": "EMF8.5in11in0.5in0.5in0.5in0.5in" + } } ] \ No newline at end of file diff --git a/NKC_WF/WebUserControls/cmp_DailyStatsList.ascx b/NKC_WF/WebUserControls/cmp_DailyStatsList.ascx index bf38e48..eb01c6d 100644 --- a/NKC_WF/WebUserControls/cmp_DailyStatsList.ascx +++ b/NKC_WF/WebUserControls/cmp_DailyStatsList.ascx @@ -50,6 +50,7 @@ + diff --git a/NKC_WF/WebUserControls/cmp_DailyStatsPlot.ascx b/NKC_WF/WebUserControls/cmp_DailyStatsPlot.ascx index e0ede7f..d4fed9a 100644 --- a/NKC_WF/WebUserControls/cmp_DailyStatsPlot.ascx +++ b/NKC_WF/WebUserControls/cmp_DailyStatsPlot.ascx @@ -38,8 +38,10 @@ var dataNE01 = dataTS.filter(record => record.label == "NE01"); var dataNE02 = dataTS.filter(record => record.label == "NE02"); + var dataNE03 = dataTS.filter(record => record.label == "NE03"); //console.log('dataNE01 data', dataNE01); //console.log('dataNE02 data', dataNE02); + //console.log('dataNE03 data', dataNE03); var myOptions = { responsive: true, @@ -84,6 +86,13 @@ lineTension: 0, //steppedLine: false, data: dataNE02 + }, + { + label: 'NE03: <%=hfLegend.Value %>', + borderColor: 'rgb(7, 203, 126)', + lineTension: 0, + //steppedLine: false, + data: dataNE03 } ] }, diff --git a/NKC_WF/WebUserControls/cmp_MachSelSmart.ascx.cs b/NKC_WF/WebUserControls/cmp_MachSelSmart.ascx.cs index 013e865..a4f4d32 100644 --- a/NKC_WF/WebUserControls/cmp_MachSelSmart.ascx.cs +++ b/NKC_WF/WebUserControls/cmp_MachSelSmart.ascx.cs @@ -58,6 +58,10 @@ namespace NKC_WF.WebUserControls { cssClass = "primary"; } + else if (MachineSel == "NE03") + { + cssClass = "success"; + } hfMachine.Value = MachineSel; hfMachClass.Value = cssClass; lbtReset.Attributes.Remove("class"); diff --git a/NKC_WF/WebUserControls/cmp_MachSem.ascx b/NKC_WF/WebUserControls/cmp_MachSem.ascx index cf8059c..791ce3d 100644 --- a/NKC_WF/WebUserControls/cmp_MachSem.ascx +++ b/NKC_WF/WebUserControls/cmp_MachSem.ascx @@ -18,6 +18,7 @@ + diff --git a/VersGen/ChangeLog.html b/VersGen/ChangeLog.html index c5ccedf..19d3e80 100644 --- a/VersGen/ChangeLog.html +++ b/VersGen/ChangeLog.html @@ -8,6 +8,12 @@ Last Changes:
    {{LAST-CHANGES}}
+
  • + v.2.5.* → +
      +
    • Multi machine setup (NE01/NE02/NE03)
    • +
    +
  • v.2.0.* →