OK pagina x dettaglio SUM dei IRK + stampa
This commit is contained in:
@@ -5,7 +5,14 @@
|
||||
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
|
||||
<div class="card" style="width: 100%;">
|
||||
<div class="card-header">
|
||||
<h3 class=""><%: traduci("CartSummary") %></h3>
|
||||
<div class="row">
|
||||
<div class="col-10">
|
||||
<h3 class=""><%: traduci("CartSummary") %></h3>
|
||||
</div>
|
||||
<div class="col-2 text-right">
|
||||
<asp:LinkButton runat="server" ID="lbtPrint" CssClass="btn btn-block btn-info" OnClick="lbtPrint_Click"><i class="fa fa-print" aria-hidden="true"></i> <%: traduci("Print") %></asp:LinkButton>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<uc1:cmp_cartDetIRK runat="server" ID="cmp_cartDetIRK" />
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
using SteamWare;
|
||||
using NKC_SDK;
|
||||
using SteamWare;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
@@ -16,8 +17,23 @@ namespace NKC_WF.site
|
||||
{
|
||||
((SiteContent)this.Master).showSearch = false;
|
||||
}
|
||||
|
||||
cmp_cartDetIRK.CartID = memLayer.ML.QSI("CartID");
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Queue selezionata
|
||||
/// </summary>
|
||||
public string currQueue
|
||||
{
|
||||
get
|
||||
{
|
||||
return "queueIRKGroup";
|
||||
}
|
||||
}
|
||||
protected void lbtPrint_Click(object sender, EventArgs e)
|
||||
{
|
||||
// invio SINGOLO record in stampa
|
||||
DLMan.stampaDoc(cmp_cartDetIRK.CartID.ToString(), currQueue, tipoDocumento.docCartIRKSum, Request.UserHostName);
|
||||
}
|
||||
}
|
||||
}
|
||||
Generated
+9
@@ -14,6 +14,15 @@ namespace NKC_WF.site
|
||||
public partial class CartDetIRK
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// Controllo lbtPrint.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.LinkButton lbtPrint;
|
||||
|
||||
/// <summary>
|
||||
/// Controllo cmp_cartDetIRK.
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user