v.115 aggiunta fatture & altri metodi...
This commit is contained in:
Generated
+45
-1
@@ -5918,6 +5918,8 @@ namespace Data {
|
||||
|
||||
private global::System.Data.DataColumn columnnAperte;
|
||||
|
||||
private global::System.Data.DataColumn columnnSospese;
|
||||
|
||||
private global::System.Data.DataColumn columnnConcluse;
|
||||
|
||||
private global::System.Data.DataColumn columnnFatturate;
|
||||
@@ -5989,6 +5991,14 @@ namespace Data {
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
||||
public global::System.Data.DataColumn nSospeseColumn {
|
||||
get {
|
||||
return this.columnnSospese;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
||||
public global::System.Data.DataColumn nConcluseColumn {
|
||||
@@ -6050,13 +6060,14 @@ namespace Data {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
||||
public PAZ_DashStatsRow AddPAZ_DashStatsRow(int nRichieste, int nPrevReq, int nPrevAppr, int nAperte, int nConcluse, int nFatturate, int nPagate) {
|
||||
public PAZ_DashStatsRow AddPAZ_DashStatsRow(int nRichieste, int nPrevReq, int nPrevAppr, int nAperte, int nSospese, int nConcluse, int nFatturate, int nPagate) {
|
||||
PAZ_DashStatsRow rowPAZ_DashStatsRow = ((PAZ_DashStatsRow)(this.NewRow()));
|
||||
object[] columnValuesArray = new object[] {
|
||||
nRichieste,
|
||||
nPrevReq,
|
||||
nPrevAppr,
|
||||
nAperte,
|
||||
nSospese,
|
||||
nConcluse,
|
||||
nFatturate,
|
||||
nPagate};
|
||||
@@ -6086,6 +6097,7 @@ namespace Data {
|
||||
this.columnnPrevReq = base.Columns["nPrevReq"];
|
||||
this.columnnPrevAppr = base.Columns["nPrevAppr"];
|
||||
this.columnnAperte = base.Columns["nAperte"];
|
||||
this.columnnSospese = base.Columns["nSospese"];
|
||||
this.columnnConcluse = base.Columns["nConcluse"];
|
||||
this.columnnFatturate = base.Columns["nFatturate"];
|
||||
this.columnnPagate = base.Columns["nPagate"];
|
||||
@@ -6102,6 +6114,8 @@ namespace Data {
|
||||
base.Columns.Add(this.columnnPrevAppr);
|
||||
this.columnnAperte = new global::System.Data.DataColumn("nAperte", typeof(int), null, global::System.Data.MappingType.Element);
|
||||
base.Columns.Add(this.columnnAperte);
|
||||
this.columnnSospese = new global::System.Data.DataColumn("nSospese", typeof(int), null, global::System.Data.MappingType.Element);
|
||||
base.Columns.Add(this.columnnSospese);
|
||||
this.columnnConcluse = new global::System.Data.DataColumn("nConcluse", typeof(int), null, global::System.Data.MappingType.Element);
|
||||
base.Columns.Add(this.columnnConcluse);
|
||||
this.columnnFatturate = new global::System.Data.DataColumn("nFatturate", typeof(int), null, global::System.Data.MappingType.Element);
|
||||
@@ -6112,6 +6126,7 @@ namespace Data {
|
||||
this.columnnPrevReq.ReadOnly = true;
|
||||
this.columnnPrevAppr.ReadOnly = true;
|
||||
this.columnnAperte.ReadOnly = true;
|
||||
this.columnnSospese.ReadOnly = true;
|
||||
this.columnnConcluse.ReadOnly = true;
|
||||
this.columnnFatturate.ReadOnly = true;
|
||||
this.columnnPagate.ReadOnly = true;
|
||||
@@ -8817,6 +8832,22 @@ namespace Data {
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
||||
public int nSospese {
|
||||
get {
|
||||
try {
|
||||
return ((int)(this[this.tablePAZ_DashStats.nSospeseColumn]));
|
||||
}
|
||||
catch (global::System.InvalidCastException e) {
|
||||
throw new global::System.Data.StrongTypingException("Il valore della colonna \'nSospese\' nella tabella \'PAZ_DashStats\' è DBNull.", e);
|
||||
}
|
||||
}
|
||||
set {
|
||||
this[this.tablePAZ_DashStats.nSospeseColumn] = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
||||
public int nConcluse {
|
||||
@@ -8913,6 +8944,18 @@ namespace Data {
|
||||
this[this.tablePAZ_DashStats.nAperteColumn] = global::System.Convert.DBNull;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
||||
public bool IsnSospeseNull() {
|
||||
return this.IsNull(this.tablePAZ_DashStats.nSospeseColumn);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
||||
public void SetnSospeseNull() {
|
||||
this[this.tablePAZ_DashStats.nSospeseColumn] = global::System.Convert.DBNull;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
|
||||
public bool IsnConcluseNull() {
|
||||
@@ -13978,6 +14021,7 @@ SELECT idxPriorita, descrPriorita, scadenzaGg FROM AnagPrior WHERE (idxPriorita
|
||||
tableMapping.ColumnMappings.Add("nPrevReq", "nPrevReq");
|
||||
tableMapping.ColumnMappings.Add("nPrevAppr", "nPrevAppr");
|
||||
tableMapping.ColumnMappings.Add("nAperte", "nAperte");
|
||||
tableMapping.ColumnMappings.Add("nSospese", "nSospese");
|
||||
tableMapping.ColumnMappings.Add("nConcluse", "nConcluse");
|
||||
tableMapping.ColumnMappings.Add("nFatturate", "nFatturate");
|
||||
tableMapping.ColumnMappings.Add("nPagate", "nPagate");
|
||||
|
||||
+3
-1
@@ -871,7 +871,7 @@ FROM v_ER_Acts</CommandText>
|
||||
</TableAdapter>
|
||||
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="PAZ_DashStatsTableAdapter" GeneratorDataComponentClassName="PAZ_DashStatsTableAdapter" Name="PAZ_DashStats" UserDataComponentName="PAZ_DashStatsTableAdapter">
|
||||
<MainSource>
|
||||
<DbSource ConnectionRef="B2BCondConnectionString (Settings)" DbObjectName="B2BCond.dbo.stp_PAZ_DashStats" DbObjectType="StoredProcedure" FillMethodModifier="Public" FillMethodName="Fill" GenerateMethods="Both" GenerateShortCommands="true" GeneratorGetMethodName="GetData" GeneratorSourceName="Fill" GetMethodModifier="Public" GetMethodName="GetData" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetData" UserSourceName="Fill">
|
||||
<DbSource ConnectionRef="B2BCondConnectionString (Settings)" DbObjectName="B2BCond.dbo.stp_PAZ_DashStats" DbObjectType="StoredProcedure" FillMethodModifier="Public" FillMethodName="Fill" GenerateMethods="Both" GenerateShortCommands="false" GeneratorGetMethodName="GetData" GeneratorSourceName="Fill" GetMethodModifier="Public" GetMethodName="GetData" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="false" UserGetMethodName="GetData" UserSourceName="Fill">
|
||||
<SelectCommand>
|
||||
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
|
||||
<CommandText>dbo.stp_PAZ_DashStats</CommandText>
|
||||
@@ -888,6 +888,7 @@ FROM v_ER_Acts</CommandText>
|
||||
<Mapping SourceColumn="nPrevReq" DataSetColumn="nPrevReq" />
|
||||
<Mapping SourceColumn="nPrevAppr" DataSetColumn="nPrevAppr" />
|
||||
<Mapping SourceColumn="nAperte" DataSetColumn="nAperte" />
|
||||
<Mapping SourceColumn="nSospese" DataSetColumn="nSospese" />
|
||||
<Mapping SourceColumn="nConcluse" DataSetColumn="nConcluse" />
|
||||
<Mapping SourceColumn="nFatturate" DataSetColumn="nFatturate" />
|
||||
<Mapping SourceColumn="nPagate" DataSetColumn="nPagate" />
|
||||
@@ -1443,6 +1444,7 @@ FROM v_ER_Acts</CommandText>
|
||||
<xs:element name="nPrevReq" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnnPrevReq" msprop:Generator_ColumnPropNameInRow="nPrevReq" msprop:Generator_ColumnPropNameInTable="nPrevReqColumn" msprop:Generator_UserColumnName="nPrevReq" type="xs:int" minOccurs="0" />
|
||||
<xs:element name="nPrevAppr" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnnPrevAppr" msprop:Generator_ColumnPropNameInRow="nPrevAppr" msprop:Generator_ColumnPropNameInTable="nPrevApprColumn" msprop:Generator_UserColumnName="nPrevAppr" type="xs:int" minOccurs="0" />
|
||||
<xs:element name="nAperte" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnnAperte" msprop:Generator_ColumnPropNameInRow="nAperte" msprop:Generator_ColumnPropNameInTable="nAperteColumn" msprop:Generator_UserColumnName="nAperte" type="xs:int" minOccurs="0" />
|
||||
<xs:element name="nSospese" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnnSospese" msprop:Generator_ColumnPropNameInRow="nSospese" msprop:Generator_ColumnPropNameInTable="nSospeseColumn" msprop:Generator_UserColumnName="nSospese" type="xs:int" minOccurs="0" />
|
||||
<xs:element name="nConcluse" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnnConcluse" msprop:Generator_ColumnPropNameInRow="nConcluse" msprop:Generator_ColumnPropNameInTable="nConcluseColumn" msprop:Generator_UserColumnName="nConcluse" type="xs:int" minOccurs="0" />
|
||||
<xs:element name="nFatturate" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnnFatturate" msprop:Generator_ColumnPropNameInRow="nFatturate" msprop:Generator_ColumnPropNameInTable="nFatturateColumn" msprop:Generator_UserColumnName="nFatturate" type="xs:int" minOccurs="0" />
|
||||
<xs:element name="nPagate" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnnPagate" msprop:Generator_ColumnPropNameInRow="nPagate" msprop:Generator_ColumnPropNameInTable="nPagateColumn" msprop:Generator_UserColumnName="nPagate" type="xs:int" minOccurs="0" />
|
||||
|
||||
+1
-1
@@ -19,7 +19,7 @@
|
||||
<Shape ID="DesignTable:PAM_DashStats" ZOrder="6" X="456" Y="472" Height="250" Width="278" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="191" />
|
||||
<Shape ID="DesignTable:AnagPrior" ZOrder="5" X="858" Y="1438" Height="181" Width="239" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="99" />
|
||||
<Shape ID="DesignTable:ER_Acts" ZOrder="4" X="444" Y="1115" Height="411" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="306" />
|
||||
<Shape ID="DesignTable:PAZ_DashStats" ZOrder="3" X="89" Y="758" Height="250" Width="273" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="191" />
|
||||
<Shape ID="DesignTable:PAZ_DashStats" ZOrder="3" X="89" Y="758" Height="273" Width="273" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="214" />
|
||||
</Shapes>
|
||||
<Connectors>
|
||||
<Connector ID="DesignRelation:FK_AnagCondomini_AnagAmministratori" ZOrder="17" LineWidth="11">
|
||||
|
||||
Vendored
+1
-1
@@ -17,7 +17,7 @@ pipeline {
|
||||
|
||||
/* calcolo numero versione... diverso x branch MASTER/DEVELOP */
|
||||
script {
|
||||
withEnv(['NEXT_BUILD_NUMBER=114']) {
|
||||
withEnv(['NEXT_BUILD_NUMBER=115']) {
|
||||
// env.versionNumber = VersionNumber(versionNumberString : '0.9.${BUILD_DATE_FORMATTED, "yyMM"}.${BUILDS_ALL_TIME}', projectStartDate : '2006-01-01', skipFailedBuilds: true)
|
||||
env.versionNumber = VersionNumber(versionNumberString : '0.9.${BUILD_DATE_FORMATTED, "yyMM"}.${BUILDS_ALL_TIME}', projectStartDate : '2006-01-01', skipFailedBuilds: true, overrideBuildsAllTime: '${NEXT_BUILD_NUMBER}')
|
||||
env.APP_NAME = 'SOSCONDOMINI'
|
||||
|
||||
@@ -8,12 +8,12 @@
|
||||
<div class="container-fluid my-1 bg-light" runat="server" id="divAuthError">
|
||||
<h3>Auth Error</h3>
|
||||
</div>
|
||||
<div class="container-fluid my-1 bg-light" runat="server" id="divDash">
|
||||
<div class="container-fluid my-1 bg-light" runat="server" id="divDash">
|
||||
<div class="row p-2">
|
||||
<div class="col-md-6 my-1">
|
||||
<div class="col-12 col-md-6 my-1 px-0">
|
||||
<uc1:mod_ER_richieste runat="server" ID="mod_ER_richieste" />
|
||||
</div>
|
||||
<div class="col-md-6 my-1">
|
||||
</div>
|
||||
<div class="col-12 col-md-6 my-1 px-0">
|
||||
<uc1:mod_ER_inCorso runat="server" ID="mod_ER_inCorso" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -2,7 +2,8 @@
|
||||
|
||||
<%@ Register Src="~/WebUserContols/mod_ER_conclusi.ascx" TagPrefix="uc1" TagName="mod_ER_conclusi" %>
|
||||
|
||||
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server"> <div class="container-fluid my-1 bg-light">
|
||||
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
|
||||
<div class="container-fluid my-1 bg-light">
|
||||
<div class="row p-2">
|
||||
<div class="col my-1 px-0">
|
||||
<uc1:mod_ER_conclusi runat="server" ID="mod_ER_conclusi" />
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
<%@ Page Title="" Language="C#" MasterPageFile="~/SitePAZ.master" AutoEventWireup="true" CodeBehind="Fatture.aspx.cs" Inherits="PUB.PAZ.Fatture" %>
|
||||
|
||||
<%@ Register Src="~/WebUserContols/mod_ER_fatture.ascx" TagPrefix="uc1" TagName="mod_ER_fatture" %>
|
||||
|
||||
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
|
||||
<div class="container-fluid my-1 bg-light">
|
||||
<div class="row p-2">
|
||||
<div class="col my-1 px-0">
|
||||
<uc1:mod_ER_fatture runat="server" id="mod_ER_fatture" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</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 PUB.PAZ
|
||||
{
|
||||
public partial class Fatture : System.Web.UI.Page
|
||||
{
|
||||
protected void Page_Load(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Generated
+24
@@ -0,0 +1,24 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <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 PUB.PAZ {
|
||||
|
||||
|
||||
public partial class Fatture {
|
||||
|
||||
/// <summary>
|
||||
/// Controllo mod_ER_fatture.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::PUB.WebUserContols.mod_ER_fatture mod_ER_fatture;
|
||||
}
|
||||
}
|
||||
@@ -10,12 +10,17 @@
|
||||
</div>
|
||||
<div class="container-fluid my-1 bg-light" runat="server" id="divDash">
|
||||
<div class="row p-2">
|
||||
<div class="col-12 col-md-6 my-1">
|
||||
<uc1:mod_ER_richieste runat="server" ID="mod_ER_richieste" />
|
||||
</div>
|
||||
<div class="col-12 col-md-6 my-1">
|
||||
<uc1:mod_ER_inCorso runat="server" ID="mod_ER_inCorso" />
|
||||
<div class="col-12 my-1 px-0 text-center">
|
||||
<h2>Dashboard <asp:Label runat="server" ID="lblForn"><%: nomeForn %></asp:Label></h2>
|
||||
</div>
|
||||
</div>
|
||||
<%--<div class="row p-2">
|
||||
<div class="col-12 col-md-6 my-1 px-0">
|
||||
<uc1:mod_ER_richieste runat="server" ID="mod_ER_richieste" />
|
||||
</div>
|
||||
<div class="col-12 col-md-6 my-1 px-0">
|
||||
<uc1:mod_ER_inCorso runat="server" ID="mod_ER_inCorso" />
|
||||
</div>
|
||||
</div>--%>
|
||||
</div>
|
||||
</asp:Content>
|
||||
|
||||
@@ -22,9 +22,37 @@ namespace PUB.PAZ
|
||||
{ }
|
||||
memLayer.ML.setSessionVal("idxAmm", "0");
|
||||
memLayer.ML.setSessionVal("idxFornitore", idxFornitore);
|
||||
try
|
||||
{
|
||||
nomeForn = rigaFornitore(idxFornitore).nome;
|
||||
}
|
||||
catch
|
||||
{ }
|
||||
}
|
||||
divDash.Visible = userAuth;
|
||||
divAuthError.Visible = !userAuth;
|
||||
}
|
||||
protected DS_app.AnagFornitoriRow rigaFornitore(int idxFornitore)
|
||||
{
|
||||
DS_app.AnagFornitoriRow answ = null;
|
||||
try
|
||||
{
|
||||
answ = DtProxy.man.taAF.getByKey(idxFornitore)[0];
|
||||
}
|
||||
catch
|
||||
{ }
|
||||
return answ;
|
||||
}
|
||||
public string nomeForn
|
||||
{
|
||||
get
|
||||
{
|
||||
return memLayer.ML.StringSessionObj("nomeForn");
|
||||
}
|
||||
set
|
||||
{
|
||||
memLayer.ML.setSessionVal("nomeForn", value);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Generated
+2
-11
@@ -31,21 +31,12 @@ namespace PUB.PAZ {
|
||||
protected global::System.Web.UI.HtmlControls.HtmlGenericControl divDash;
|
||||
|
||||
/// <summary>
|
||||
/// Controllo mod_ER_richieste.
|
||||
/// Controllo lblForn.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::PUB.WebUserContols.mod_ER_richieste mod_ER_richieste;
|
||||
|
||||
/// <summary>
|
||||
/// Controllo mod_ER_inCorso.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::PUB.WebUserContols.mod_ER_inCorso mod_ER_inCorso;
|
||||
protected global::System.Web.UI.WebControls.Label lblForn;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
<%@ Page Title="" Language="C#" MasterPageFile="~/SitePAZ.master" AutoEventWireup="true" CodeBehind="Sospesi.aspx.cs" Inherits="PUB.PAZ.Sospesi" %>
|
||||
|
||||
<%@ Register Src="~/WebUserContols/mod_ER_sospesi.ascx" TagPrefix="uc1" TagName="mod_ER_sospesi" %>
|
||||
|
||||
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
|
||||
<div class="container-fluid my-1 bg-light">
|
||||
<div class="row p-2">
|
||||
<div class="col my-1 px-0">
|
||||
<uc1:mod_ER_sospesi runat="server" ID="mod_ER_sospesi" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</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 PUB.PAZ
|
||||
{
|
||||
public partial class Sospesi : System.Web.UI.Page
|
||||
{
|
||||
protected void Page_Load(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Generated
+24
@@ -0,0 +1,24 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <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 PUB.PAZ {
|
||||
|
||||
|
||||
public partial class Sospesi {
|
||||
|
||||
/// <summary>
|
||||
/// Controllo mod_ER_sospesi.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::PUB.WebUserContols.mod_ER_sospesi mod_ER_sospesi;
|
||||
}
|
||||
}
|
||||
@@ -188,11 +188,13 @@
|
||||
<Content Include="PAZ\Conclusi.aspx" />
|
||||
<Content Include="PAZ\Default.aspx" />
|
||||
<Content Include="PAZ\DettaglioIntervento.aspx" />
|
||||
<Content Include="PAZ\Fatture.aspx" />
|
||||
<Content Include="PAZ\Interventi.aspx" />
|
||||
<Content Include="PAZ\Login.aspx" />
|
||||
<Content Include="PAZ\MyDashboard.aspx" />
|
||||
<Content Include="PAZ\Preventivi.aspx" />
|
||||
<Content Include="PAZ\Richieste.aspx" />
|
||||
<Content Include="PAZ\Sospesi.aspx" />
|
||||
<Content Include="PBO\AnagAmmin.aspx" />
|
||||
<Content Include="PBO\AnagAree.aspx" />
|
||||
<Content Include="PBO\AnagCond2Forn.aspx" />
|
||||
@@ -237,11 +239,13 @@
|
||||
<Content Include="WebUserContols\mod_ER_conclusi.ascx" />
|
||||
<Content Include="WebUserContols\mod_ER_detail.ascx" />
|
||||
<Content Include="WebUserContols\mod_ER_doAct.ascx" />
|
||||
<Content Include="WebUserContols\mod_ER_fatture.ascx" />
|
||||
<Content Include="WebUserContols\mod_ER_grid.ascx" />
|
||||
<Content Include="WebUserContols\mod_ER_insNew.ascx" />
|
||||
<Content Include="WebUserContols\mod_ER_preventivi.ascx" />
|
||||
<Content Include="WebUserContols\mod_ER_richieste.ascx" />
|
||||
<Content Include="WebUserContols\mod_ER_selCondominio.ascx" />
|
||||
<Content Include="WebUserContols\mod_ER_sospesi.ascx" />
|
||||
<Content Include="WebUserContols\mod_F2C.ascx" />
|
||||
<Content Include="WebUserContols\mod_forn2aree.ascx" />
|
||||
<Content Include="WebUserContols\mod_graficiRow.ascx" />
|
||||
@@ -470,6 +474,13 @@
|
||||
<Compile Include="PAZ\DettaglioIntervento.aspx.designer.cs">
|
||||
<DependentUpon>DettaglioIntervento.aspx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="PAZ\Fatture.aspx.cs">
|
||||
<DependentUpon>Fatture.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="PAZ\Fatture.aspx.designer.cs">
|
||||
<DependentUpon>Fatture.aspx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="PAZ\Interventi.aspx.cs">
|
||||
<DependentUpon>Interventi.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
@@ -505,6 +516,13 @@
|
||||
<Compile Include="PAZ\Richieste.aspx.designer.cs">
|
||||
<DependentUpon>Richieste.aspx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="PAZ\Sospesi.aspx.cs">
|
||||
<DependentUpon>Sospesi.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="PAZ\Sospesi.aspx.designer.cs">
|
||||
<DependentUpon>Sospesi.aspx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="PBO\AnagAmmin.aspx.cs">
|
||||
<DependentUpon>AnagAmmin.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
@@ -734,6 +752,13 @@
|
||||
<Compile Include="WebUserContols\mod_ER_doAct.ascx.designer.cs">
|
||||
<DependentUpon>mod_ER_doAct.ascx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="WebUserContols\mod_ER_fatture.ascx.cs">
|
||||
<DependentUpon>mod_ER_fatture.ascx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="WebUserContols\mod_ER_fatture.ascx.designer.cs">
|
||||
<DependentUpon>mod_ER_fatture.ascx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="WebUserContols\mod_ER_grid.ascx.cs">
|
||||
<DependentUpon>mod_ER_grid.ascx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
@@ -769,6 +794,13 @@
|
||||
<Compile Include="WebUserContols\mod_ER_selCondominio.ascx.designer.cs">
|
||||
<DependentUpon>mod_ER_selCondominio.ascx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="WebUserContols\mod_ER_sospesi.ascx.cs">
|
||||
<DependentUpon>mod_ER_sospesi.ascx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="WebUserContols\mod_ER_sospesi.ascx.designer.cs">
|
||||
<DependentUpon>mod_ER_sospesi.ascx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="WebUserContols\mod_F2C.ascx.cs">
|
||||
<DependentUpon>mod_F2C.ascx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
|
||||
@@ -2,15 +2,13 @@
|
||||
<%@ Register Src="~/WebUserContols/mod_ER_grid.ascx" TagPrefix="uc1" TagName="mod_ER_grid" %>
|
||||
<%@ Register Src="~/WebUserContols/mod_ER_selCondominio.ascx" TagPrefix="uc1" TagName="mod_ER_selCondominio" %>
|
||||
|
||||
|
||||
<div class="card">
|
||||
<div class="card-header alert alert-success text-uppercase align-middle p-2">
|
||||
<h5>Conclusi</h5>
|
||||
<uc1:mod_ER_selCondominio runat="server" ID="mod_ER_selCondominio" />
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<h5 class="card-title">Elenco degli interventi conclusi</h5>
|
||||
<uc1:mod_ER_grid runat="server" ID="mod_ER_grid" StatoMin="41" StatoMax="80" />
|
||||
<uc1:mod_ER_grid runat="server" ID="mod_ER_grid" StatoMin="60" StatoMax="60" />
|
||||
<%--<a href="#" class="btn btn-success">Gestione Interventi</a>--%>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_ER_fatture.ascx.cs" Inherits="PUB.WebUserContols.mod_ER_fatture" %>
|
||||
<%@ Register Src="~/WebUserContols/mod_ER_grid.ascx" TagPrefix="uc1" TagName="mod_ER_grid" %>
|
||||
<%@ Register Src="~/WebUserContols/mod_ER_selCondominio.ascx" TagPrefix="uc1" TagName="mod_ER_selCondominio" %>
|
||||
|
||||
<div class="card">
|
||||
<div class="card-header alert alert-success text-uppercase align-middle p-2">
|
||||
<h5>Fatture/Pagamenti</h5>
|
||||
<uc1:mod_ER_selCondominio runat="server" ID="mod_ER_selCondominio" />
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<uc1:mod_ER_grid runat="server" ID="mod_ER_grid" StatoMin="61" StatoMax="80" />
|
||||
<%--<a href="#" class="btn btn-success">Gestione Interventi</a>--%>
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,47 @@
|
||||
using System;
|
||||
using System.Web.UI;
|
||||
|
||||
namespace PUB.WebUserContols
|
||||
{
|
||||
public partial class mod_ER_fatture : System.Web.UI.UserControl
|
||||
{
|
||||
protected void Page_Load(object sender, EventArgs e)
|
||||
{
|
||||
if (!Page.IsPostBack)
|
||||
{
|
||||
// salvo le selezioni...
|
||||
saveSelections();
|
||||
}
|
||||
mod_ER_grid.eh_selCond += Mod_ER_grid_eh_selCond;
|
||||
mod_ER_selCondominio.eh_selected += Mod_ER_selCondominio_eh_selected;
|
||||
}
|
||||
private void Mod_ER_selCondominio_eh_selected(object sender, EventArgs e)
|
||||
{
|
||||
saveSelections();
|
||||
}
|
||||
private void Mod_ER_grid_eh_selCond(object sender, EventArgs e)
|
||||
{
|
||||
// recupero evento tipizzato
|
||||
SelCondEventArgs ce = (SelCondEventArgs)e;
|
||||
// imposto!
|
||||
try
|
||||
{
|
||||
mod_ER_selCondominio.condSelected = ce.idxCond.ToString();
|
||||
}
|
||||
catch
|
||||
{ }
|
||||
saveSelections();
|
||||
}
|
||||
|
||||
private void saveSelections()
|
||||
{
|
||||
mod_ER_grid.idxCond = mod_ER_selCondominio.condSelected;
|
||||
}
|
||||
|
||||
protected void lbtResetCond_Click(object sender, EventArgs e)
|
||||
{
|
||||
mod_ER_selCondominio.condSelected = "0";
|
||||
saveSelections();
|
||||
}
|
||||
}
|
||||
}
|
||||
+33
@@ -0,0 +1,33 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <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 PUB.WebUserContols {
|
||||
|
||||
|
||||
public partial class mod_ER_fatture {
|
||||
|
||||
/// <summary>
|
||||
/// Controllo mod_ER_selCondominio.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::PUB.WebUserContols.mod_ER_selCondominio mod_ER_selCondominio;
|
||||
|
||||
/// <summary>
|
||||
/// Controllo mod_ER_grid.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::PUB.WebUserContols.mod_ER_grid mod_ER_grid;
|
||||
}
|
||||
}
|
||||
@@ -10,7 +10,6 @@
|
||||
<uc1:mod_ER_selCondominio runat="server" ID="mod_ER_selCondominio" />
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<h5 class="card-title">Elenco degli interventi in corso</h5>
|
||||
<uc1:mod_ER_grid runat="server" ID="mod_ER_grid" StatoMin="30" StatoMax="40" />
|
||||
<%--<a href="#" class="btn btn-success">Gestione Interventi</a>--%>
|
||||
</div>
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
<uc1:mod_ER_selCondominio runat="server" id="mod_ER_selCondominio" />
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<h5 class="card-title">Elenco preventivi aperti/approvati</h5>
|
||||
<uc1:mod_ER_grid runat="server" ID="mod_ER_grid" StatoMin="21" StatoMax="29" />
|
||||
<%--<a href="#" class="btn btn-success">Gestione Interventi</a>--%>
|
||||
</div>
|
||||
|
||||
@@ -16,7 +16,6 @@
|
||||
<uc1:mod_ER_insNew runat="server" ID="mod_ER_insNew" />
|
||||
</div>
|
||||
<div id="divElenco" runat="server">
|
||||
<h5 class="card-title">Elenco Richieste Aperte Amministratore</h5>
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<uc1:mod_ER_grid runat="server" ID="mod_ER_grid" StatoMin="1" StatoMax="29" />
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_ER_sospesi.ascx.cs" Inherits="PUB.WebUserContols.mod_ER_sospesi" %>
|
||||
<%@ Register Src="~/WebUserContols/mod_ER_grid.ascx" TagPrefix="uc1" TagName="mod_ER_grid" %>
|
||||
<%@ Register Src="~/WebUserContols/mod_ER_selCondominio.ascx" TagPrefix="uc1" TagName="mod_ER_selCondominio" %>
|
||||
|
||||
<div class="card">
|
||||
<div class="card-header alert alert-danger text-uppercase align-middle p-2">
|
||||
<h5>Sospesi</h5>
|
||||
<uc1:mod_ER_selCondominio runat="server" ID="mod_ER_selCondominio" />
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<uc1:mod_ER_grid runat="server" ID="mod_ER_grid" StatoMin="50" StatoMax="50" />
|
||||
<%--<a href="#" class="btn btn-success">Gestione Interventi</a>--%>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -0,0 +1,47 @@
|
||||
using System;
|
||||
using System.Web.UI;
|
||||
|
||||
namespace PUB.WebUserContols
|
||||
{
|
||||
public partial class mod_ER_sospesi : System.Web.UI.UserControl
|
||||
{
|
||||
protected void Page_Load(object sender, EventArgs e)
|
||||
{
|
||||
if (!Page.IsPostBack)
|
||||
{
|
||||
// salvo le selezioni...
|
||||
saveSelections();
|
||||
}
|
||||
mod_ER_grid.eh_selCond += Mod_ER_grid_eh_selCond;
|
||||
mod_ER_selCondominio.eh_selected += Mod_ER_selCondominio_eh_selected;
|
||||
}
|
||||
private void Mod_ER_selCondominio_eh_selected(object sender, EventArgs e)
|
||||
{
|
||||
saveSelections();
|
||||
}
|
||||
private void Mod_ER_grid_eh_selCond(object sender, EventArgs e)
|
||||
{
|
||||
// recupero evento tipizzato
|
||||
SelCondEventArgs ce = (SelCondEventArgs)e;
|
||||
// imposto!
|
||||
try
|
||||
{
|
||||
mod_ER_selCondominio.condSelected = ce.idxCond.ToString();
|
||||
}
|
||||
catch
|
||||
{ }
|
||||
saveSelections();
|
||||
}
|
||||
|
||||
private void saveSelections()
|
||||
{
|
||||
mod_ER_grid.idxCond = mod_ER_selCondominio.condSelected;
|
||||
}
|
||||
|
||||
protected void lbtResetCond_Click(object sender, EventArgs e)
|
||||
{
|
||||
mod_ER_selCondominio.condSelected = "0";
|
||||
saveSelections();
|
||||
}
|
||||
}
|
||||
}
|
||||
+33
@@ -0,0 +1,33 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <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 PUB.WebUserContols {
|
||||
|
||||
|
||||
public partial class mod_ER_sospesi {
|
||||
|
||||
/// <summary>
|
||||
/// Controllo mod_ER_selCondominio.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::PUB.WebUserContols.mod_ER_selCondominio mod_ER_selCondominio;
|
||||
|
||||
/// <summary>
|
||||
/// Controllo mod_ER_grid.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::PUB.WebUserContols.mod_ER_grid mod_ER_grid;
|
||||
}
|
||||
}
|
||||
@@ -60,25 +60,54 @@
|
||||
<b>Interventi</b>
|
||||
<div>
|
||||
<b>
|
||||
<asp:Label ID="Label3" runat="server" Text='<%# Eval("nAperte") %>' /></b> / <b>
|
||||
<asp:Label ID="Label4" runat="server" Text='<%# Eval("nConcluse") %>' /></b>
|
||||
<asp:Label ID="Label3" runat="server" Text='<%# Eval("nAperte") %>' /></b> in corso
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</asp:HyperLink>
|
||||
</div>
|
||||
<div class="col p-1" runat="server" id="divSospese" visible='<%# (bool)(titolo=="MyDashboard") %>'>
|
||||
<asp:HyperLink runat="server" ID="HyperLink3" NavigateUrl="~/PAZ/Sospesi" CssClass="btn btn-light text-danger btn-block p-1">
|
||||
<div class="d-flex align-items-center">
|
||||
<div class="icona px-1 small">
|
||||
<i class="far fa-hand-paper"></i>
|
||||
</div>
|
||||
<div class="px-2 text-left">
|
||||
<b>Sospesi</b>
|
||||
<div>
|
||||
<b><asp:Label ID="Label4" runat="server" Text='<%# Eval("nSospese") %>' /></b>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</asp:HyperLink>
|
||||
</div>
|
||||
<div class="col p-1" runat="server" id="divChiusi" visible='<%# (bool)(titolo=="MyDashboard") %>'>
|
||||
<asp:HyperLink runat="server" ID="hlInterventi" NavigateUrl="~/PAZ/Conclusi" CssClass="btn btn-light text-success btn-block p-1">
|
||||
<div class="d-flex align-items-center">
|
||||
<div class="icona px-1 small">
|
||||
<i class="far fa-thumbs-up"></i>
|
||||
</div>
|
||||
<div class="px-2 text-left">
|
||||
<b>Chiusi</b>
|
||||
<div>
|
||||
<b><asp:Label ID="Label8" runat="server" Text='<%# Eval("nConcluse") %>' /></b>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</asp:HyperLink>
|
||||
</div>
|
||||
<div class="col p-1" runat="server" id="divChiusi" visible='<%# (bool)(titolo=="MyDashboard") %>'>
|
||||
<asp:HyperLink runat="server" ID="hlInterventi" NavigateUrl="~/PAZ/Conclusi" CssClass="btn btn-light text-success btn-block p-1">
|
||||
<div class="col p-1" runat="server" id="divFatt" visible='<%# (bool)(titolo=="MyDashboard") %>'>
|
||||
<asp:HyperLink runat="server" ID="HyperLink2" NavigateUrl="~/PAZ/Fatture" CssClass="btn btn-light text-success btn-block p-1">
|
||||
<div class="d-flex align-items-center">
|
||||
<div class="icona px-1 small">
|
||||
<i class="fas fa-euro-sign"></i>
|
||||
</div>
|
||||
<div class="px-2 text-left">
|
||||
<b>Chiusi</b>
|
||||
<b>Fatture</b>
|
||||
<div>
|
||||
<b>
|
||||
<asp:Label ID="Label8" runat="server" Text='<%# Eval("nFatturate") %>' /></b> / <b>
|
||||
<asp:Label ID="Label7" runat="server" Text='<%# Eval("nPagate") %>' /></b>
|
||||
<asp:Label ID="Label6" runat="server" Text='<%# Eval("nFatturate") %>' /></b> / <b>
|
||||
<asp:Label ID="Label9" runat="server" Text='<%# Eval("nPagate") %>' /></b>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user