Fix report giornaliero
This commit is contained in:
Binary file not shown.
@@ -11,7 +11,9 @@
|
||||
<h1><%# SteamWare.memLayer.ML.cdv("FATT_H1") %></h1>
|
||||
<p>
|
||||
<%# SteamWare.memLayer.ML.cdv("FATT_P1") %><br />
|
||||
<%# SteamWare.memLayer.ML.cdv("FATT_P2") %>
|
||||
<%# SteamWare.memLayer.ML.cdv("FATT_P2") %><br />
|
||||
<%# SteamWare.memLayer.ML.cdv("FATT_P3") %><br />
|
||||
<%# SteamWare.memLayer.ML.cdv("FATT_P4") %>
|
||||
</p>
|
||||
<div class="text-left">
|
||||
<strong style="font-size: 2em;">
|
||||
|
||||
@@ -1,23 +1,17 @@
|
||||
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_giornaliero.ascx.cs" Inherits="MedAP.WebUserControl.mod_giornaliero" %>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-7 text-center">
|
||||
<div class="col-xs-8 text-left">
|
||||
<div class="row">
|
||||
<h1>Registro Fatture Emesse</h1>
|
||||
<p class="small"><%: SteamWare.memLayer.ML.cdv("FATT_P2") %> - <%: SteamWare.memLayer.ML.cdv("FATT_P3") %> | <%: SteamWare.memLayer.ML.cdv("FATT_P4") %></p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xs-5 text-right text-info">
|
||||
<div class="col-xs-4 text-right text-info">
|
||||
<h1><%: SteamWare.memLayer.ML.cdv("FATT_H1") %></h1>
|
||||
<p>
|
||||
<%: SteamWare.memLayer.ML.cdv("FATT_P1") %>
|
||||
</p>
|
||||
<div class="text-right">
|
||||
<strong style="font-size: 2em;">
|
||||
<asp:Label ID="tipoLabel" runat="server" Text='<%# Eval("tipo") %>' /></strong>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xs-12 text-right small">
|
||||
<%: SteamWare.memLayer.ML.cdv("FATT_P2") %>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
@@ -25,19 +19,19 @@
|
||||
<asp:Repeater runat="server" ID="repMonth" DataSourceID="odsMonth">
|
||||
<ItemTemplate>
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<div class="panel-heading fontBig">
|
||||
<div class="row">
|
||||
<div class="col-xs-12">
|
||||
<b><%# Eval("anno") %> / <%# Eval("mese") %></b>
|
||||
<b><%# Eval("anno") %> / <%# meseFromInt(Eval("mese"))%></b>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="panel-body bg-default fontSmall">
|
||||
<div class="panel-body bg-default fontStd">
|
||||
<asp:HiddenField runat="server" ID="hfAnno" Value='<%# Eval("anno") %>' />
|
||||
<asp:HiddenField runat="server" ID="hfMese" Value='<%# Eval("mese") %>' />
|
||||
<asp:Repeater runat="server" ID="repDay" DataSourceID="odsDay">
|
||||
<ItemTemplate>
|
||||
<div class="panel panel-default">
|
||||
<div class="panel panel-info">
|
||||
<div class="panel-heading">
|
||||
<div class="row">
|
||||
<div class="col-xs-12">
|
||||
@@ -45,11 +39,11 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="panel-body bg-default fontSmall">
|
||||
<div class="panel-body bg-default fontSmall" style="padding-top: 0;">
|
||||
<asp:HiddenField runat="server" ID="hfGiorno" Value='<%# Eval("giorno") %>' />
|
||||
<asp:Repeater runat="server" ID="repDocs" DataSourceID="ods">
|
||||
<HeaderTemplate>
|
||||
<div class="row bg-info">
|
||||
<div class="row bg-primary">
|
||||
<div class="col-xs-1 text-left">
|
||||
TIPO
|
||||
</div>
|
||||
@@ -132,24 +126,24 @@
|
||||
</SelectParameters>
|
||||
</asp:ObjectDataSource>
|
||||
</div>
|
||||
<div class="panel-footer bg-info fontSmall">
|
||||
<div class="panel-footer bg-info fontStd">
|
||||
<div class="row text-right">
|
||||
<div class="col-xs-8 text-left">
|
||||
<div class="col-xs-5 text-left">
|
||||
<b>TOTALE MENSILE</b>
|
||||
</div>
|
||||
<div class="col-xs-1">
|
||||
# DOC<br />
|
||||
<b><%# Eval("numDoc") %></b>
|
||||
</div>
|
||||
<div class="col-xs-1">
|
||||
<div class="col-xs-2">
|
||||
NETTO<br />
|
||||
<b><%# Eval("totNetto","{0:C2}") %></b>
|
||||
</div>
|
||||
<div class="col-xs-1">
|
||||
<div class="col-xs-2">
|
||||
IVA<br />
|
||||
<b><%# Eval("totIva","{0:C2}") %></b>
|
||||
</div>
|
||||
<div class="col-xs-1">
|
||||
<div class="col-xs-2">
|
||||
IMPORTO<br />
|
||||
<b><%# Eval("totImporto","{0:C2}") %></b>
|
||||
</div>
|
||||
|
||||
@@ -13,5 +13,14 @@ namespace MedAP.WebUserControl
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public string meseFromInt(object _num)
|
||||
{
|
||||
int num = 0;
|
||||
int.TryParse(_num.ToString(), out num);
|
||||
string answ = "";
|
||||
answ = new DateTime(2000, num, 1).ToString("MMMM").ToUpper();
|
||||
return answ;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -12,15 +12,6 @@ namespace MedAP.WebUserControl {
|
||||
|
||||
public partial class mod_giornaliero {
|
||||
|
||||
/// <summary>
|
||||
/// Controllo tipoLabel.
|
||||
/// </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.Label tipoLabel;
|
||||
|
||||
/// <summary>
|
||||
/// Controllo repMonth.
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user