Start adding MissingInAction PARTS

This commit is contained in:
Samuele E. Locatelli
2020-08-20 15:15:33 +02:00
parent ab76101ba4
commit cfc2a83092
7 changed files with 104 additions and 0 deletions
+16
View File
@@ -433,6 +433,7 @@
<Content Include="site\OtherItems.aspx" />
<Content Include="site\Painting.aspx" />
<Content Include="site\PaintingSmart.aspx" />
<Content Include="site\PartMIA.aspx" />
<Content Include="site\PartValidation.aspx" />
<Content Include="site\Reordering.aspx" />
<Content Include="site\SecondScreen.aspx" />
@@ -497,6 +498,7 @@
<Content Include="WebUserControls\cmp_painting.ascx" />
<Content Include="WebUserControls\cmp_paintingSmart.ascx" />
<Content Include="WebUserControls\cmp_paint_bins.ascx" />
<Content Include="WebUserControls\cmp_partMIA.ascx" />
<Content Include="WebUserControls\cmp_scrapList.ascx" />
<Content Include="WebUserControls\cmp_searchItems.ascx" />
<Content Include="WebUserControls\cmp_secScreen.ascx" />
@@ -926,6 +928,13 @@
<Compile Include="site\PaintingSmart.aspx.designer.cs">
<DependentUpon>PaintingSmart.aspx</DependentUpon>
</Compile>
<Compile Include="site\PartMIA.aspx.cs">
<DependentUpon>PartMIA.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="site\PartMIA.aspx.designer.cs">
<DependentUpon>PartMIA.aspx</DependentUpon>
</Compile>
<Compile Include="site\PartValidation.aspx.cs">
<DependentUpon>PartValidation.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
@@ -1423,6 +1432,13 @@
<Compile Include="WebUserControls\cmp_paint_bins.ascx.designer.cs">
<DependentUpon>cmp_paint_bins.ascx</DependentUpon>
</Compile>
<Compile Include="WebUserControls\cmp_partMIA.ascx.cs">
<DependentUpon>cmp_partMIA.ascx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="WebUserControls\cmp_partMIA.ascx.designer.cs">
<DependentUpon>cmp_partMIA.ascx</DependentUpon>
</Compile>
<Compile Include="WebUserControls\cmp_scrapList.ascx.cs">
<DependentUpon>cmp_scrapList.ascx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
+4
View File
@@ -0,0 +1,4 @@
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="cmp_partMIA.ascx.cs" Inherits="NKC_WF.WebUserControls.cmp_partMIA" %>
Elenco parts missing in action
@@ -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.WebUserControls
{
public partial class cmp_partMIA : System.Web.UI.UserControl
{
protected void Page_Load(object sender, EventArgs e)
{
}
}
}
+17
View File
@@ -0,0 +1,17 @@
//------------------------------------------------------------------------------
// <generato automaticamente>
// Codice generato da uno strumento.
//
// Le modifiche a questo file possono causare un comportamento non corretto e verranno perse se
// il codice viene rigenerato.
// </generato automaticamente>
//------------------------------------------------------------------------------
namespace NKC_WF.WebUserControls
{
public partial class cmp_partMIA
{
}
}
+7
View File
@@ -0,0 +1,7 @@
<%@ Page Title="" Language="C#" MasterPageFile="~/SiteContent.master" AutoEventWireup="true" CodeBehind="PartMIA.aspx.cs" Inherits="NKC_WF.site.PartMIA" %>
<%@ Register Src="~/WebUserControls/cmp_partMIA.ascx" TagPrefix="uc1" TagName="cmp_partMIA" %>
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
<uc1:cmp_partMIA runat="server" id="cmp_partMIA" />
</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 PartMIA : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
}
}
+26
View File
@@ -0,0 +1,26 @@
//------------------------------------------------------------------------------
// <generato automaticamente>
// Codice generato da uno strumento.
//
// Le modifiche a questo file possono causare un comportamento non corretto e verranno perse se
// il codice viene rigenerato.
// </generato automaticamente>
//------------------------------------------------------------------------------
namespace NKC_WF.site
{
public partial class PartMIA
{
/// <summary>
/// Controllo cmp_partMIA.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::NKC_WF.WebUserControls.cmp_partMIA cmp_partMIA;
}
}