Aggiunta apgina x schedulazione ORD/KIT

This commit is contained in:
Samuele E. Locatelli
2020-07-13 13:03:08 +02:00
parent c96fa61d16
commit f7c5044cc6
8 changed files with 91 additions and 1 deletions
Vendored
+1 -1
View File
@@ -11,7 +11,7 @@ pipeline {
steps {
/* calcolo numero versione... diverso x branch MASTER/DEVELOP */
script {
withEnv(['NEXT_BUILD_NUMBER=275']) {
withEnv(['NEXT_BUILD_NUMBER=276']) {
// env.versionNumber = VersionNumber(versionNumberString : '0.9.${BUILD_DATE_FORMATTED, "yyMM"}.${BUILDS_ALL_TIME}', projectStartDate : '2019-07-01', skipFailedBuilds: true)
env.versionNumber = VersionNumber(versionNumberString : '0.9.${BUILD_DATE_FORMATTED, "yyMM"}.${BUILDS_ALL_TIME}', projectStartDate : '2019-07-01', skipFailedBuilds: true, overrideBuildsAllTime: '${NEXT_BUILD_NUMBER}')
env.versionNumberBeta = VersionNumber(versionNumberString : '0.9.${BUILD_DATE_FORMATTED, "yyMM"}-beta.${BUILDS_ALL_TIME}', projectStartDate : '2019-07-01', skipFailedBuilds: true, overrideBuildsAllTime: '${NEXT_BUILD_NUMBER}')
+16
View File
@@ -361,6 +361,7 @@
<Content Include="Images\test_a.svg" />
<Content Include="Images\WIP.png" />
<Content Include="site\KitRequestImporter.aspx" />
<Content Include="site\KitRequestSched.aspx" />
<Content Include="site\Kitting.aspx" />
<Content Include="site\KittingSmart.aspx" />
<Content Include="site\LabelsPrint.aspx" />
@@ -370,6 +371,7 @@
<Content Include="site\MachineUnload.aspx" />
<Content Include="site\MachineUnloadSmart.aspx" />
<Content Include="site\OrderManager.aspx" />
<Content Include="site\OrderScheduler.aspx" />
<Content Include="site\Painting.aspx" />
<Content Include="site\PartValidation.aspx" />
<Content Include="site\Reordering.aspx" />
@@ -642,6 +644,13 @@
<Compile Include="site\KitRequestImporter.aspx.designer.cs">
<DependentUpon>KitRequestImporter.aspx</DependentUpon>
</Compile>
<Compile Include="site\KitRequestSched.aspx.cs">
<DependentUpon>KitRequestSched.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="site\KitRequestSched.aspx.designer.cs">
<DependentUpon>KitRequestSched.aspx</DependentUpon>
</Compile>
<Compile Include="site\Kitting.aspx.cs">
<DependentUpon>Kitting.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
@@ -705,6 +714,13 @@
<Compile Include="site\OrderManager.aspx.designer.cs">
<DependentUpon>OrderManager.aspx</DependentUpon>
</Compile>
<Compile Include="site\OrderScheduler.aspx.cs">
<DependentUpon>OrderScheduler.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="site\OrderScheduler.aspx.designer.cs">
<DependentUpon>OrderScheduler.aspx</DependentUpon>
</Compile>
<Compile Include="site\Painting.aspx.cs">
<DependentUpon>Painting.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
+3
View File
@@ -0,0 +1,3 @@
<%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="KitRequestSched.aspx.cs" Inherits="NKC_WF.site.KitRequestSched" %>
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
</asp:Content>
+17
View File
@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace NKC_WF.site
{
public partial class KitRequestSched : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
}
}
+17
View File
@@ -0,0 +1,17 @@
//------------------------------------------------------------------------------
// <auto-generated>
// Codice generato da uno strumento.
//
// Le modifiche a questo file possono causare un comportamento non corretto e verranno perse se
// il codice viene rigenerato.
// </auto-generated>
//------------------------------------------------------------------------------
namespace NKC_WF.site
{
public partial class KitRequestSched
{
}
}
+3
View File
@@ -0,0 +1,3 @@
<%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="OrderScheduler.aspx.cs" Inherits="NKC_WF.site.OrderScheduler" %>
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
</asp:Content>
+17
View File
@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace NKC_WF.site
{
public partial class OrderScheduler : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
}
}
+17
View File
@@ -0,0 +1,17 @@
//------------------------------------------------------------------------------
// <auto-generated>
// Codice generato da uno strumento.
//
// Le modifiche a questo file possono causare un comportamento non corretto e verranno perse se
// il codice viene rigenerato.
// </auto-generated>
//------------------------------------------------------------------------------
namespace NKC_WF.site
{
public partial class OrderScheduler
{
}
}