prima versione fix statusRow PAM

This commit is contained in:
Samuele E. Locatelli
2018-08-08 21:46:56 +02:00
parent 73c0567cbd
commit 4f06461dd5
4 changed files with 232 additions and 109 deletions
+133 -1
View File
@@ -4857,8 +4857,14 @@ namespace Data {
private global::System.Data.DataColumn columnnRichieste;
private global::System.Data.DataColumn columnnPrevReq;
private global::System.Data.DataColumn columnnPrevAppr;
private global::System.Data.DataColumn columnnAperte;
private global::System.Data.DataColumn columnnSospese;
private global::System.Data.DataColumn columnnConcluse;
private global::System.Data.DataColumn columnnFatturate;
@@ -4922,6 +4928,22 @@ namespace Data {
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
public global::System.Data.DataColumn nPrevReqColumn {
get {
return this.columnnPrevReq;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
public global::System.Data.DataColumn nPrevApprColumn {
get {
return this.columnnPrevAppr;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
public global::System.Data.DataColumn nAperteColumn {
@@ -4930,6 +4952,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 {
@@ -4991,13 +5021,16 @@ namespace Data {
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
public PAM_DashStatsRow AddPAM_DashStatsRow(int numUsers, int reqUsers, int nRichieste, int nAperte, int nConcluse, int nFatturate, int nPagate) {
public PAM_DashStatsRow AddPAM_DashStatsRow(int numUsers, int reqUsers, int nRichieste, int nPrevReq, int nPrevAppr, int nAperte, int nSospese, int nConcluse, int nFatturate, int nPagate) {
PAM_DashStatsRow rowPAM_DashStatsRow = ((PAM_DashStatsRow)(this.NewRow()));
object[] columnValuesArray = new object[] {
numUsers,
reqUsers,
nRichieste,
nPrevReq,
nPrevAppr,
nAperte,
nSospese,
nConcluse,
nFatturate,
nPagate};
@@ -5026,7 +5059,10 @@ namespace Data {
this.columnnumUsers = base.Columns["numUsers"];
this.columnreqUsers = base.Columns["reqUsers"];
this.columnnRichieste = base.Columns["nRichieste"];
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"];
@@ -5041,8 +5077,14 @@ namespace Data {
base.Columns.Add(this.columnreqUsers);
this.columnnRichieste = new global::System.Data.DataColumn("nRichieste", typeof(int), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnnRichieste);
this.columnnPrevReq = new global::System.Data.DataColumn("nPrevReq", typeof(int), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnnPrevReq);
this.columnnPrevAppr = new global::System.Data.DataColumn("nPrevAppr", typeof(int), null, global::System.Data.MappingType.Element);
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);
@@ -5052,7 +5094,10 @@ namespace Data {
this.columnnumUsers.ReadOnly = true;
this.columnreqUsers.ReadOnly = true;
this.columnnRichieste.ReadOnly = true;
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;
@@ -8393,6 +8438,38 @@ namespace Data {
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
public int nPrevReq {
get {
try {
return ((int)(this[this.tablePAM_DashStats.nPrevReqColumn]));
}
catch (global::System.InvalidCastException e) {
throw new global::System.Data.StrongTypingException("Il valore della colonna \'nPrevReq\' nella tabella \'PAM_DashStats\' è DBNull.", e);
}
}
set {
this[this.tablePAM_DashStats.nPrevReqColumn] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
public int nPrevAppr {
get {
try {
return ((int)(this[this.tablePAM_DashStats.nPrevApprColumn]));
}
catch (global::System.InvalidCastException e) {
throw new global::System.Data.StrongTypingException("Il valore della colonna \'nPrevAppr\' nella tabella \'PAM_DashStats\' è DBNull.", e);
}
}
set {
this[this.tablePAM_DashStats.nPrevApprColumn] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
public int nAperte {
@@ -8409,6 +8486,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.tablePAM_DashStats.nSospeseColumn]));
}
catch (global::System.InvalidCastException e) {
throw new global::System.Data.StrongTypingException("Il valore della colonna \'nSospese\' nella tabella \'PAM_DashStats\' è DBNull.", e);
}
}
set {
this[this.tablePAM_DashStats.nSospeseColumn] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
public int nConcluse {
@@ -8493,6 +8586,30 @@ namespace Data {
this[this.tablePAM_DashStats.nRichiesteColumn] = global::System.Convert.DBNull;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
public bool IsnPrevReqNull() {
return this.IsNull(this.tablePAM_DashStats.nPrevReqColumn);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
public void SetnPrevReqNull() {
this[this.tablePAM_DashStats.nPrevReqColumn] = global::System.Convert.DBNull;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
public bool IsnPrevApprNull() {
return this.IsNull(this.tablePAM_DashStats.nPrevApprColumn);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
public void SetnPrevApprNull() {
this[this.tablePAM_DashStats.nPrevApprColumn] = global::System.Convert.DBNull;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
public bool IsnAperteNull() {
@@ -8505,6 +8622,18 @@ namespace Data {
this[this.tablePAM_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.tablePAM_DashStats.nSospeseColumn);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
public void SetnSospeseNull() {
this[this.tablePAM_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() {
@@ -13240,7 +13369,10 @@ SELECT idxStato, stato, descrizione, cssStato FROM AnagStati WHERE (idxStato = @
tableMapping.ColumnMappings.Add("numUsers", "numUsers");
tableMapping.ColumnMappings.Add("reqUsers", "reqUsers");
tableMapping.ColumnMappings.Add("nRichieste", "nRichieste");
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");
+7 -1
View File
@@ -738,7 +738,7 @@ SELECT idxStato, stato, descrizione, cssStato FROM AnagStati WHERE (idxStato = @
</TableAdapter>
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="PAM_DashStatsTableAdapter" GeneratorDataComponentClassName="PAM_DashStatsTableAdapter" Name="PAM_DashStats" UserDataComponentName="PAM_DashStatsTableAdapter">
<MainSource>
<DbSource ConnectionRef="B2BCondConnectionString (Settings)" DbObjectName="B2BCond.dbo.stp_PAM_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_PAM_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_PAM_DashStats</CommandText>
@@ -754,7 +754,10 @@ SELECT idxStato, stato, descrizione, cssStato FROM AnagStati WHERE (idxStato = @
<Mapping SourceColumn="numUsers" DataSetColumn="numUsers" />
<Mapping SourceColumn="reqUsers" DataSetColumn="reqUsers" />
<Mapping SourceColumn="nRichieste" DataSetColumn="nRichieste" />
<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" />
@@ -1355,7 +1358,10 @@ FROM v_ER_Acts</CommandText>
<xs:element name="numUsers" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnnumUsers" msprop:Generator_ColumnPropNameInRow="numUsers" msprop:Generator_ColumnPropNameInTable="numUsersColumn" msprop:Generator_UserColumnName="numUsers" type="xs:int" minOccurs="0" />
<xs:element name="reqUsers" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnreqUsers" msprop:Generator_ColumnPropNameInRow="reqUsers" msprop:Generator_ColumnPropNameInTable="reqUsersColumn" msprop:Generator_UserColumnName="reqUsers" type="xs:int" minOccurs="0" />
<xs:element name="nRichieste" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnnRichieste" msprop:Generator_ColumnPropNameInRow="nRichieste" msprop:Generator_ColumnPropNameInTable="nRichiesteColumn" msprop:Generator_UserColumnName="nRichieste" type="xs:int" minOccurs="0" />
<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" />
+9 -9
View File
@@ -4,22 +4,22 @@
Changes to this file may cause incorrect behavior and will be lost if
the code is regenerated.
</autogenerated>-->
<DiagramLayout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ex:showrelationlabel="False" ViewPortX="-10" ViewPortY="-47" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout">
<DiagramLayout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ex:showrelationlabel="False" ViewPortX="-10" ViewPortY="448" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout">
<Shapes>
<Shape ID="DesignTable:AnagAmministratori" ZOrder="1" X="55" Y="106" Height="319" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="237" />
<Shape ID="DesignTable:AnagAmministratori" ZOrder="2" X="55" Y="106" Height="319" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="237" />
<Shape ID="DesignTable:AnagCondomini" ZOrder="19" X="440" Y="70" Height="342" Width="283" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="237" />
<Shape ID="DesignTable:AnagAree" ZOrder="14" X="802" Y="1133" Height="273" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="145" />
<Shape ID="DesignTable:AnagFornitori" ZOrder="17" X="811" Y="495" Height="388" Width="266" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="260" />
<Shape ID="DesignTable:AssF2A" ZOrder="11" X="807" Y="913" Height="181" Width="285" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="99" />
<Shape ID="DesignTable:AssF2C" ZOrder="10" X="815" Y="36" Height="388" Width="216" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="306" />
<Shape ID="DesignTable:PBO_DashStats" ZOrder="9" X="90" Y="465" Height="273" Width="274" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="214" />
<Shape ID="DesignTable:ElencolRich" ZOrder="2" X="58" Y="1104" Height="457" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="306" />
<Shape ID="DesignTable:AnagStati" ZOrder="3" X="446" Y="1542" Height="204" Width="236" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="122" />
<Shape ID="DesignTable:StatoRich" ZOrder="8" X="431" Y="743" Height="250" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="191" />
<Shape ID="DesignTable:PAM_DashStats" ZOrder="7" X="456" Y="472" Height="250" Width="278" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="191" />
<Shape ID="DesignTable:AnagPrior" ZOrder="6" X="858" Y="1438" Height="181" Width="239" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="99" />
<Shape ID="DesignTable:ER_Acts" ZOrder="5" X="444" Y="1115" Height="411" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="306" />
<Shape ID="DesignTable:PAZ_DashStats" ZOrder="4" X="89" Y="758" Height="273" Width="273" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="214" />
<Shape ID="DesignTable:ElencolRich" ZOrder="3" X="58" Y="1104" Height="457" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="306" />
<Shape ID="DesignTable:AnagStati" ZOrder="4" X="446" Y="1542" Height="204" Width="236" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="122" />
<Shape ID="DesignTable:StatoRich" ZOrder="1" X="436" Y="799" Height="250" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="191" />
<Shape ID="DesignTable:PAM_DashStats" ZOrder="8" X="448" Y="467" Height="319" Width="278" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="260" />
<Shape ID="DesignTable:AnagPrior" ZOrder="7" X="858" Y="1438" Height="181" Width="239" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="99" />
<Shape ID="DesignTable:ER_Acts" ZOrder="6" X="444" Y="1115" Height="411" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="306" />
<Shape ID="DesignTable:PAZ_DashStats" ZOrder="5" 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="18" LineWidth="11">
+83 -98
View File
@@ -20,119 +20,104 @@
</div>
<asp:Repeater ID="repStats" runat="server" DataSourceID="ods">
<ItemTemplate>
<div class="d-flex bg-secondary py-2 m-0">
<div class="px-2 flex-fill bd-highlight">
<div class="item d-flex align-items-center p-1 bg-white">
<asp:HyperLink runat="server" ID="hlAnagrafiche" NavigateUrl="~/PAM/Condomini" CssClass="text-info">
<div class="d-flex align-items-center">
<div class="icona text-info px-2">
<i class="fas fa-user"></i>
</div>
<div class="titolo px-2">
Condomini
</div>
</div>
</asp:HyperLink>
<div class="d-flex ml-auto align-items-center">
<div class="number px-2 text-right">
<div>
<strong>
<asp:Label ID="Label1" runat="server" Text='<%# Eval("numUsers") %>' /></strong> registrati
</div>
<div>
<strong>
<asp:Label ID="Label2" runat="server" Text='<%# Eval("reqUsers") %>' /></strong> da approvare
</div>
<div class="col p-1" runat="server" id="divCond" visible='<%# (bool)(titolo=="MyDashboard") %>'>
<asp:HyperLink runat="server" ID="hlCondomini" NavigateUrl="~/PAM/Condomini" CssClass="btn btn-light text-info btn-block p-1">
<div class="d-flex align-items-left">
<div class="icona px-1 small">
<i class="fas fa-user"></i>
</div>
<div class="px-2 text-left">
<b>Condomini</b>
<div>
<b>
<asp:Label ID="Label4" runat="server" Text='<%# Eval("numUsers") %>' /></b> / <b>
<asp:Label ID="Label6" runat="server" Text='<%# Eval("reqUsers") %>' /></b>&nbsp;(reg/rich)
</div>
</div>
</div>
</div>
<div class="px-2 flex-fill bd-highlight">
<div class="item d-flex align-items-center p-1 bg-white">
<asp:HyperLink runat="server" ID="hlRichieste" NavigateUrl="~/PAM/Richieste" CssClass="text-danger">
<div class="d-flex align-items-center">
<div class="icona px-2">
<i class="fas fa-phone"></i>
</div>
<div class="titolo px-2">
Richieste
</div>
</asp:HyperLink>
</div>
</asp:HyperLink>
<div class="d-flex ml-auto align-items-center">
<div class="number px-2 text-right">
<div>
<strong>
<asp:Label ID="Label5" runat="server" Text='<%# Eval("nRichieste") %>' /></strong> attive
</div>
<div class="col p-1" runat="server" id="divRich" visible='<%# (bool)(titolo=="MyDashboard") %>'>
<asp:HyperLink runat="server" ID="hlRichieste" NavigateUrl="~/PAM/Richieste" CssClass="btn btn-light text-danger btn-block p-1">
<div class="d-flex align-items-left">
<div class="icona px-1 small">
<i class="fas fa-phone"></i>
</div>
<div class="px-2 text-left">
<b>Richieste</b>
<div>
<b>
<asp:Label ID="Label9" runat="server" Text='<%# Eval("nRichieste") %>' /></b> aperte
</div>
</div>
</div>
</div>
<%-- <div class="px-2 flex-fill bd-highlight">
<div class="item d-flex align-items-center p-1 bg-white">
<asp:HyperLink runat="server" ID="HyperLink1" NavigateUrl="~/PAM/MyDashboard" CssClass="text-default">
<div class="d-flex align-items-center">
<div class="icona text-default px-2">
<i class="fas fa-tachometer-alt text-default"></i>
</div>
<div class="titolo px-2 text-upper">
Dashboard
</div>
</div>
</asp:HyperLink>
</div>
</div>--%>
<div class="px-2 flex-fill bd-highlight">
<div class="item d-flex align-items-center p-1 bg-white">
<asp:HyperLink runat="server" ID="hlAziende" NavigateUrl="~/PAM/Interventi" CssClass="text-warning">
<div class="d-flex align-items-center">
<div class="icona px-2">
<i class="fas fa-industry"></i>
</div>
<div class="titolo px-2">
Interventi aperti
</div>
</asp:HyperLink>
</div>
</asp:HyperLink>
<div class="d-flex ml-auto align-items-center">
<div class="number px-2 text-right">
<div>
<strong>
<asp:Label ID="Label3" runat="server" Text='<%# Eval("nAperte") %>' /></strong> in corso
</div>
<div class="col p-1" runat="server" id="divInterv" visible='<%# (bool)(titolo=="MyDashboard") %>'>
<asp:HyperLink runat="server" ID="hlAziende" NavigateUrl="~/PAM/Interventi" CssClass="btn btn-light text-warning btn-block p-1">
<div class="d-flex align-items-center">
<div class="icona px-1 small">
<i class="fas fa-industry"></i>
</div>
<div class="px-2 text-left">
<b>Interventi</b>
<div>
<b>
<asp:Label ID="Label10" runat="server" Text='<%# Eval("nAperte") %>' /></b> in corso
</div>
</div>
</div>
</div>
<div class="px-2 flex-fill bd-highlight">
<div class="item d-flex align-items-center p-1 bg-white">
<asp:HyperLink runat="server" ID="hlInterventi" NavigateUrl="~/PAM/Conclusi" CssClass="text-success">
<div class="d-flex align-items-center">
<div class="icona px-2">
<i class="fas fa-euro-sign"></i>
</div>
<div class="titolo px-2">
Conclusi
</div>
</asp:HyperLink>
</div>
</asp:HyperLink>
<div class="d-flex ml-auto align-items-center">
<div class="number px-2 text-right">
<div>
<strong>
<asp:Label ID="Label7" runat="server" Text='<%# Eval("nConcluse") %>' /></strong> chiusi
</div>
<div>
<strong>
<asp:Label ID="Label8" runat="server" Text='<%# Eval("nFatturate") %>' /></strong>
<asp:Label runat="server" ID="lblMat" ToolTip="Fatture fornitore emesse">maturati</asp:Label>
</div>
<div class="col p-1" runat="server" id="divSospese" visible='<%# (bool)(titolo=="MyDashboard") %>'>
<asp:HyperLink runat="server" ID="HyperLink5" NavigateUrl="~/PAM/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="Label11" runat="server" Text='<%# Eval("nSospese") %>' /></b>
</div>
</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="~/PAM/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="Label12" runat="server" Text='<%# Eval("nConcluse") %>' /></b>
</div>
</div>
</div>
</asp:HyperLink>
</div>
<div class="col p-1" runat="server" id="divFatt" visible='<%# (bool)(titolo=="MyDashboard") %>'>
<asp:HyperLink runat="server" ID="HyperLink7" NavigateUrl="~/PAM/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>Fatture</b>
<div>
<b>
<asp:Label ID="Label13" runat="server" Text='<%# Eval("nFatturate") %>' /></b> / <b>
<asp:Label ID="Label14" runat="server" Text='<%# Eval("nPagate") %>' /></b>
</div>
</div>
</div>
</asp:HyperLink>
</div>
</ItemTemplate>
</asp:Repeater>
<asp:ObjectDataSource ID="ods" runat="server" OldValuesParameterFormatString="original_{0}" SelectMethod="GetData" TypeName="Data.DS_appTableAdapters.PAM_DashStatsTableAdapter">