v.115 aggiunta fatture & altri metodi...

This commit is contained in:
Samuele E. Locatelli
2018-08-08 19:23:01 +02:00
parent d6cac4fc07
commit dde16ceeeb
27 changed files with 462 additions and 38 deletions
+45 -1
View File
@@ -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
View File
@@ -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
View File
@@ -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">