Aggiunto history x tutti i batch di nesting (da testare)
This commit is contained in:
+6
-1
@@ -18,7 +18,12 @@
|
||||
/// <summary>
|
||||
/// Modalità validazione file (NON ancora particolari in ordini CSV)
|
||||
/// </summary>
|
||||
FileEval
|
||||
FileEval,
|
||||
|
||||
/// <summary>
|
||||
/// Modalità normale (stima/nesting)
|
||||
/// </summary>
|
||||
FullHistory
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
@@ -116,4 +116,4 @@
|
||||
<asp:Timer ID="Timer1" runat="server" Interval="3000" OnTick="Timer1_Tick"></asp:Timer>
|
||||
</div>
|
||||
</ContentTemplate>
|
||||
</asp:UpdatePanel>
|
||||
</asp:UpdatePanel>
|
||||
@@ -138,6 +138,11 @@ namespace NKC_WF.WebUserControls
|
||||
isPartVal = "2";
|
||||
break;
|
||||
|
||||
case BatchListMode.FullHistory:
|
||||
isPartVal = "3";
|
||||
ods.FilterExpression = "";
|
||||
break;
|
||||
|
||||
case BatchListMode.Standard:
|
||||
default:
|
||||
isPartVal = "0";
|
||||
@@ -319,6 +324,7 @@ namespace NKC_WF.WebUserControls
|
||||
|
||||
public void doUpdate()
|
||||
{
|
||||
checkFixOds();
|
||||
grView.DataBind();
|
||||
currSelRow = lastSelRow;
|
||||
fixDetails();
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
<%@ Page Title="" Language="C#" MasterPageFile="~/SiteContent.master" AutoEventWireup="true" CodeBehind="OrderHistory.aspx.cs" Inherits="NKC_WF.site.OrderHistory" %>
|
||||
|
||||
<%@ Register Src="~/WebUserControls/cmp_batchList.ascx" TagPrefix="uc1" TagName="cmp_batchList" %>
|
||||
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
|
||||
<div class="container">
|
||||
<div class="card" style="width: 100%;">
|
||||
@@ -9,7 +10,7 @@
|
||||
<div class="card-body">
|
||||
<div class="row">
|
||||
<div class="col-12" runat="server" id="divFileList">
|
||||
FULL orders List
|
||||
<uc1:cmp_batchList runat="server" ID="cmp_batchList" listMode="FullHistory" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
+9
@@ -22,5 +22,14 @@ namespace NKC_WF.site
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.HtmlControls.HtmlGenericControl divFileList;
|
||||
|
||||
/// <summary>
|
||||
/// Controllo cmp_batchList.
|
||||
/// </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_batchList cmp_batchList;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user