Aggiunta preliminare nuove pagine...
This commit is contained in:
@@ -411,12 +411,14 @@
|
||||
<Content Include="site\LabelsPrint.aspx" />
|
||||
<Content Include="site\Login.aspx" />
|
||||
<Content Include="site\MachineLoad.aspx" />
|
||||
<Content Include="site\MachineLoadSmart.aspx" />
|
||||
<Content Include="site\MachineOffline.aspx" />
|
||||
<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\PaintingSmart.aspx" />
|
||||
<Content Include="site\PartValidation.aspx" />
|
||||
<Content Include="site\Reordering.aspx" />
|
||||
<Content Include="site\SecondScreen.aspx" />
|
||||
@@ -771,6 +773,13 @@
|
||||
<Compile Include="site\MachineLoad.aspx.designer.cs">
|
||||
<DependentUpon>MachineLoad.aspx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="site\MachineLoadSmart.aspx.cs">
|
||||
<DependentUpon>MachineLoadSmart.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="site\MachineLoadSmart.aspx.designer.cs">
|
||||
<DependentUpon>MachineLoadSmart.aspx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="site\MachineOffline.aspx.cs">
|
||||
<DependentUpon>MachineOffline.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
@@ -813,6 +822,13 @@
|
||||
<Compile Include="site\Painting.aspx.designer.cs">
|
||||
<DependentUpon>Painting.aspx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="site\PaintingSmart.aspx.cs">
|
||||
<DependentUpon>PaintingSmart.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="site\PaintingSmart.aspx.designer.cs">
|
||||
<DependentUpon>PaintingSmart.aspx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="site\PartValidation.aspx.cs">
|
||||
<DependentUpon>PartValidation.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
|
||||
@@ -3,20 +3,19 @@
|
||||
<%@ Register Src="~/WebUserControls/cmp_barcode.ascx" TagPrefix="uc1" TagName="cmp_barcode" %>
|
||||
|
||||
|
||||
|
||||
<div class="row text-center">
|
||||
<div class="col-4">
|
||||
<uc1:cmp_paint_bins runat="server" ID="cmp_paint_binsIN" titleText="BINS IN" titleClass="text-light" ShowComplete="true" ShowPainted="false" ShowBinDtmx="true" ShowBatch="true" />
|
||||
</div>
|
||||
<div class="col-4">
|
||||
READER<br />
|
||||
<uc1:cmp_barcode runat="server" ID="cmp_barcode" />
|
||||
<asp:HiddenField runat="server" ID="hfLastBCode" />
|
||||
<asp:HiddenField runat="server" ID="hfLastValidBCode" />
|
||||
<div class="col-4">
|
||||
<uc1:cmp_paint_bins runat="server" ID="cmp_paint_binsIN" titleText="BINS IN" titleClass="text-light" ShowComplete="true" ShowPainted="false" ShowBinDtmx="true" ShowBatch="true" />
|
||||
</div>
|
||||
<div class="col-4">
|
||||
READER<br />
|
||||
<uc1:cmp_barcode runat="server" ID="cmp_barcode" />
|
||||
<asp:HiddenField runat="server" ID="hfLastBCode" />
|
||||
<asp:HiddenField runat="server" ID="hfLastValidBCode" />
|
||||
|
||||
<asp:LinkButton runat="server" ID="lbtConfirmPaint" CssClass="btn btn-block btn-warning text-uppercase" OnClick="lbtConfirmPaint_Click"><i class="fa fa-paint-brush" aria-hidden="true"></i> <%: traduci("ConfirmPaint") %></asp:LinkButton>
|
||||
</div>
|
||||
<div class="col-4">
|
||||
<uc1:cmp_paint_bins runat="server" ID="cmp_paint_binsOUT" titleText="BINS OUT" titleClass="text-warning" ShowComplete="true" ShowPainted="true" ShowBinDtmx="true" ShowBatch="true" />
|
||||
</div>
|
||||
<asp:LinkButton runat="server" ID="lbtConfirmPaint" CssClass="btn btn-block btn-warning text-uppercase" OnClick="lbtConfirmPaint_Click"><i class="fa fa-paint-brush" aria-hidden="true"></i> <%: traduci("ConfirmPaint") %></asp:LinkButton>
|
||||
</div>
|
||||
<div class="col-4">
|
||||
<uc1:cmp_paint_bins runat="server" ID="cmp_paint_binsOUT" titleText="BINS OUT" titleClass="text-warning" ShowComplete="true" ShowPainted="true" ShowBinDtmx="true" ShowBatch="true" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
<%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="MachineLoadSmart.aspx.cs" Inherits="NKC_WF.site.MachineLoadSmart" %>
|
||||
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
|
||||
</asp:Content>
|
||||
@@ -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 MachineLoadSmart : System.Web.UI.Page
|
||||
{
|
||||
protected void Page_Load(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
+17
@@ -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 MachineLoadSmart
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -4,14 +4,16 @@
|
||||
|
||||
|
||||
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
|
||||
<div class="card text-center" style="width: 100%;">
|
||||
<h3 class="card-header bg-dark text-warning text-uppercase"><%: traduci("Painting") %></h3>
|
||||
<div class="card-body py-1">
|
||||
<div class="row">
|
||||
<div class="col-12 mb-2">
|
||||
<uc1:cmp_painting runat="server" ID="cmp_painting" />
|
||||
<div class="mx-0">
|
||||
<div class="card text-center" style="width: 100%;">
|
||||
<h4 class="card-header bg-dark text-warning text-uppercase"><%: traduci("Painting") %></h4>
|
||||
<div class="card-body py-1">
|
||||
<div class="row">
|
||||
<div class="col-12 mb-2">
|
||||
<uc1:cmp_painting runat="server" ID="cmp_painting" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</asp:Content>
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
<%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="PaintingSmart.aspx.cs" Inherits="NKC_WF.site.PaintingSmart" %>
|
||||
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
|
||||
</asp:Content>
|
||||
@@ -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 PaintingSmart : System.Web.UI.Page
|
||||
{
|
||||
protected void Page_Load(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
+17
@@ -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 PaintingSmart
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user