Tolto possibilità modifica messaggio + elenco condomini con CODICE

This commit is contained in:
Samuele E. Locatelli
2018-08-13 17:12:58 +02:00
parent fbc0245eea
commit 72af7b48eb
7 changed files with 108 additions and 563 deletions
+48 -440
View File
@@ -1243,6 +1243,8 @@ namespace Data {
private global::System.Data.DataColumn columnnote;
private global::System.Data.DataColumn columnnomeFull;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
public AnagCondominiDataTable() {
@@ -1356,6 +1358,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 nomeFullColumn {
get {
return this.columnnomeFull;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
[global::System.ComponentModel.Browsable(false)]
@@ -1393,7 +1403,7 @@ namespace Data {
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
public AnagCondominiRow AddAnagCondominiRow(string cod_cond, string nome, string indirizzo, string cap, string citta, string cod_fisc, AnagAmministratoriRow parentAnagAmministratoriRowByFK_AnagCondomini_AnagAmministratori, bool Attivo, string note) {
public AnagCondominiRow AddAnagCondominiRow(string cod_cond, string nome, string indirizzo, string cap, string citta, string cod_fisc, AnagAmministratoriRow parentAnagAmministratoriRowByFK_AnagCondomini_AnagAmministratori, bool Attivo, string note, string nomeFull) {
AnagCondominiRow rowAnagCondominiRow = ((AnagCondominiRow)(this.NewRow()));
object[] columnValuesArray = new object[] {
null,
@@ -1405,7 +1415,8 @@ namespace Data {
cod_fisc,
null,
Attivo,
note};
note,
nomeFull};
if ((parentAnagAmministratoriRowByFK_AnagCondomini_AnagAmministratori != null)) {
columnValuesArray[7] = parentAnagAmministratoriRowByFK_AnagCondomini_AnagAmministratori[0];
}
@@ -1448,6 +1459,7 @@ namespace Data {
this.columnidxAmm = base.Columns["idxAmm"];
this.columnAttivo = base.Columns["Attivo"];
this.columnnote = base.Columns["note"];
this.columnnomeFull = base.Columns["nomeFull"];
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
@@ -1473,6 +1485,8 @@ namespace Data {
base.Columns.Add(this.columnAttivo);
this.columnnote = new global::System.Data.DataColumn("note", typeof(string), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnnote);
this.columnnomeFull = new global::System.Data.DataColumn("nomeFull", typeof(string), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnnomeFull);
this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] {
this.columnidxCond}, true));
this.columnidxCond.AutoIncrement = true;
@@ -1497,6 +1511,8 @@ namespace Data {
this.columnAttivo.AllowDBNull = false;
this.columnnote.AllowDBNull = false;
this.columnnote.MaxLength = 250;
this.columnnomeFull.ReadOnly = true;
this.columnnomeFull.MaxLength = 83;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
@@ -7310,6 +7326,22 @@ namespace Data {
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
public string nomeFull {
get {
try {
return ((string)(this[this.tableAnagCondomini.nomeFullColumn]));
}
catch (global::System.InvalidCastException e) {
throw new global::System.Data.StrongTypingException("Il valore della colonna \'nomeFull\' nella tabella \'AnagCondomini\' è DBNull.", e);
}
}
set {
this[this.tableAnagCondomini.nomeFullColumn] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
public AnagAmministratoriRow AnagAmministratoriRow {
@@ -7321,6 +7353,18 @@ namespace Data {
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
public bool IsnomeFullNull() {
return this.IsNull(this.tableAnagCondomini.nomeFullColumn);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
public void SetnomeFullNull() {
this[this.tableAnagCondomini.nomeFullColumn] = global::System.Convert.DBNull;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
public AssF2CRow[] GetAssF2CRows() {
@@ -10697,60 +10741,8 @@ namespace Data.DS_appTableAdapters {
tableMapping.ColumnMappings.Add("idxAmm", "idxAmm");
tableMapping.ColumnMappings.Add("Attivo", "Attivo");
tableMapping.ColumnMappings.Add("note", "note");
tableMapping.ColumnMappings.Add("nomeFull", "nomeFull");
this._adapter.TableMappings.Add(tableMapping);
this._adapter.DeleteCommand = new global::System.Data.SqlClient.SqlCommand();
this._adapter.DeleteCommand.Connection = this.Connection;
this._adapter.DeleteCommand.CommandText = @"DELETE FROM [dbo].[AnagCondomini] WHERE (([idxCond] = @Original_idxCond) AND ([cod_cond] = @Original_cod_cond) AND ([nome] = @Original_nome) AND ([indirizzo] = @Original_indirizzo) AND ([cap] = @Original_cap) AND ([citta] = @Original_citta) AND ([cod_fisc] = @Original_cod_fisc) AND ([idxAmm] = @Original_idxAmm) AND ([Attivo] = @Original_Attivo) AND ([note] = @Original_note))";
this._adapter.DeleteCommand.CommandType = global::System.Data.CommandType.Text;
this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_idxCond", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "idxCond", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_cod_cond", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "cod_cond", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_nome", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "nome", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_indirizzo", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "indirizzo", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_cap", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "cap", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_citta", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "citta", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_cod_fisc", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "cod_fisc", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_idxAmm", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "idxAmm", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Attivo", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Attivo", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_note", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "note", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
this._adapter.InsertCommand = new global::System.Data.SqlClient.SqlCommand();
this._adapter.InsertCommand.Connection = this.Connection;
this._adapter.InsertCommand.CommandText = @"INSERT INTO [dbo].[AnagCondomini] ([cod_cond], [nome], [indirizzo], [cap], [citta], [cod_fisc], [idxAmm], [Attivo], [note]) VALUES (@cod_cond, @nome, @indirizzo, @cap, @citta, @cod_fisc, @idxAmm, @Attivo, @note);
SELECT idxCond, cod_cond, nome, indirizzo, cap, citta, cod_fisc, idxAmm, Attivo, note FROM AnagCondomini WHERE (idxCond = SCOPE_IDENTITY())";
this._adapter.InsertCommand.CommandType = global::System.Data.CommandType.Text;
this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@cod_cond", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "cod_cond", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@nome", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "nome", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@indirizzo", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "indirizzo", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@cap", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "cap", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@citta", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "citta", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@cod_fisc", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "cod_fisc", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@idxAmm", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "idxAmm", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Attivo", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Attivo", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@note", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "note", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._adapter.UpdateCommand = new global::System.Data.SqlClient.SqlCommand();
this._adapter.UpdateCommand.Connection = this.Connection;
this._adapter.UpdateCommand.CommandText = @"UPDATE [dbo].[AnagCondomini] SET [cod_cond] = @cod_cond, [nome] = @nome, [indirizzo] = @indirizzo, [cap] = @cap, [citta] = @citta, [cod_fisc] = @cod_fisc, [idxAmm] = @idxAmm, [Attivo] = @Attivo, [note] = @note WHERE (([idxCond] = @Original_idxCond) AND ([cod_cond] = @Original_cod_cond) AND ([nome] = @Original_nome) AND ([indirizzo] = @Original_indirizzo) AND ([cap] = @Original_cap) AND ([citta] = @Original_citta) AND ([cod_fisc] = @Original_cod_fisc) AND ([idxAmm] = @Original_idxAmm) AND ([Attivo] = @Original_Attivo) AND ([note] = @Original_note));
SELECT idxCond, cod_cond, nome, indirizzo, cap, citta, cod_fisc, idxAmm, Attivo, note FROM AnagCondomini WHERE (idxCond = @idxCond)";
this._adapter.UpdateCommand.CommandType = global::System.Data.CommandType.Text;
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@cod_cond", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "cod_cond", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@nome", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "nome", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@indirizzo", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "indirizzo", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@cap", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "cap", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@citta", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "citta", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@cod_fisc", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "cod_fisc", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@idxAmm", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "idxAmm", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Attivo", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Attivo", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@note", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "note", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_idxCond", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "idxCond", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_cod_cond", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "cod_cond", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_nome", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "nome", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_indirizzo", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "indirizzo", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_cap", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "cap", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_citta", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "citta", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_cod_fisc", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "cod_fisc", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_idxAmm", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "idxAmm", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Attivo", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Attivo", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_note", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "note", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@idxCond", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 0, 0, "idxCond", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
@@ -10766,7 +10758,7 @@ SELECT idxCond, cod_cond, nome, indirizzo, cap, citta, cod_fisc, idxAmm, Attivo,
this._commandCollection = new global::System.Data.SqlClient.SqlCommand[4];
this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
this._commandCollection[0].Connection = this.Connection;
this._commandCollection[0].CommandText = "SELECT *\r\nFROM dbo.AnagCondomini";
this._commandCollection[0].CommandText = "SELECT *\r\nFROM v_AnagCondomini";
this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
this._commandCollection[1] = new global::System.Data.SqlClient.SqlCommand();
this._commandCollection[1].Connection = this.Connection;
@@ -10862,324 +10854,6 @@ SELECT idxCond, cod_cond, nome, indirizzo, cap, citta, cod_fisc, idxAmm, Attivo,
this.Adapter.Fill(dataTable);
return dataTable;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
public virtual int Update(DS_app.AnagCondominiDataTable dataTable) {
return this.Adapter.Update(dataTable);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
public virtual int Update(DS_app dataSet) {
return this.Adapter.Update(dataSet, "AnagCondomini");
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
public virtual int Update(global::System.Data.DataRow dataRow) {
return this.Adapter.Update(new global::System.Data.DataRow[] {
dataRow});
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
public virtual int Update(global::System.Data.DataRow[] dataRows) {
return this.Adapter.Update(dataRows);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Delete, true)]
public virtual int Delete(int Original_idxCond, string Original_cod_cond, string Original_nome, string Original_indirizzo, string Original_cap, string Original_citta, string Original_cod_fisc, int Original_idxAmm, bool Original_Attivo, string Original_note) {
this.Adapter.DeleteCommand.Parameters[0].Value = ((int)(Original_idxCond));
if ((Original_cod_cond == null)) {
throw new global::System.ArgumentNullException("Original_cod_cond");
}
else {
this.Adapter.DeleteCommand.Parameters[1].Value = ((string)(Original_cod_cond));
}
if ((Original_nome == null)) {
throw new global::System.ArgumentNullException("Original_nome");
}
else {
this.Adapter.DeleteCommand.Parameters[2].Value = ((string)(Original_nome));
}
if ((Original_indirizzo == null)) {
throw new global::System.ArgumentNullException("Original_indirizzo");
}
else {
this.Adapter.DeleteCommand.Parameters[3].Value = ((string)(Original_indirizzo));
}
if ((Original_cap == null)) {
throw new global::System.ArgumentNullException("Original_cap");
}
else {
this.Adapter.DeleteCommand.Parameters[4].Value = ((string)(Original_cap));
}
if ((Original_citta == null)) {
throw new global::System.ArgumentNullException("Original_citta");
}
else {
this.Adapter.DeleteCommand.Parameters[5].Value = ((string)(Original_citta));
}
if ((Original_cod_fisc == null)) {
throw new global::System.ArgumentNullException("Original_cod_fisc");
}
else {
this.Adapter.DeleteCommand.Parameters[6].Value = ((string)(Original_cod_fisc));
}
this.Adapter.DeleteCommand.Parameters[7].Value = ((int)(Original_idxAmm));
this.Adapter.DeleteCommand.Parameters[8].Value = ((bool)(Original_Attivo));
if ((Original_note == null)) {
throw new global::System.ArgumentNullException("Original_note");
}
else {
this.Adapter.DeleteCommand.Parameters[9].Value = ((string)(Original_note));
}
global::System.Data.ConnectionState previousConnectionState = this.Adapter.DeleteCommand.Connection.State;
if (((this.Adapter.DeleteCommand.Connection.State & global::System.Data.ConnectionState.Open)
!= global::System.Data.ConnectionState.Open)) {
this.Adapter.DeleteCommand.Connection.Open();
}
try {
int returnValue = this.Adapter.DeleteCommand.ExecuteNonQuery();
return returnValue;
}
finally {
if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
this.Adapter.DeleteCommand.Connection.Close();
}
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Insert, true)]
public virtual int Insert(string cod_cond, string nome, string indirizzo, string cap, string citta, string cod_fisc, int idxAmm, bool Attivo, string note) {
if ((cod_cond == null)) {
throw new global::System.ArgumentNullException("cod_cond");
}
else {
this.Adapter.InsertCommand.Parameters[0].Value = ((string)(cod_cond));
}
if ((nome == null)) {
throw new global::System.ArgumentNullException("nome");
}
else {
this.Adapter.InsertCommand.Parameters[1].Value = ((string)(nome));
}
if ((indirizzo == null)) {
throw new global::System.ArgumentNullException("indirizzo");
}
else {
this.Adapter.InsertCommand.Parameters[2].Value = ((string)(indirizzo));
}
if ((cap == null)) {
throw new global::System.ArgumentNullException("cap");
}
else {
this.Adapter.InsertCommand.Parameters[3].Value = ((string)(cap));
}
if ((citta == null)) {
throw new global::System.ArgumentNullException("citta");
}
else {
this.Adapter.InsertCommand.Parameters[4].Value = ((string)(citta));
}
if ((cod_fisc == null)) {
throw new global::System.ArgumentNullException("cod_fisc");
}
else {
this.Adapter.InsertCommand.Parameters[5].Value = ((string)(cod_fisc));
}
this.Adapter.InsertCommand.Parameters[6].Value = ((int)(idxAmm));
this.Adapter.InsertCommand.Parameters[7].Value = ((bool)(Attivo));
if ((note == null)) {
throw new global::System.ArgumentNullException("note");
}
else {
this.Adapter.InsertCommand.Parameters[8].Value = ((string)(note));
}
global::System.Data.ConnectionState previousConnectionState = this.Adapter.InsertCommand.Connection.State;
if (((this.Adapter.InsertCommand.Connection.State & global::System.Data.ConnectionState.Open)
!= global::System.Data.ConnectionState.Open)) {
this.Adapter.InsertCommand.Connection.Open();
}
try {
int returnValue = this.Adapter.InsertCommand.ExecuteNonQuery();
return returnValue;
}
finally {
if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
this.Adapter.InsertCommand.Connection.Close();
}
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)]
public virtual int Update(
string cod_cond,
string nome,
string indirizzo,
string cap,
string citta,
string cod_fisc,
int idxAmm,
bool Attivo,
string note,
int Original_idxCond,
string Original_cod_cond,
string Original_nome,
string Original_indirizzo,
string Original_cap,
string Original_citta,
string Original_cod_fisc,
int Original_idxAmm,
bool Original_Attivo,
string Original_note,
int idxCond) {
if ((cod_cond == null)) {
throw new global::System.ArgumentNullException("cod_cond");
}
else {
this.Adapter.UpdateCommand.Parameters[0].Value = ((string)(cod_cond));
}
if ((nome == null)) {
throw new global::System.ArgumentNullException("nome");
}
else {
this.Adapter.UpdateCommand.Parameters[1].Value = ((string)(nome));
}
if ((indirizzo == null)) {
throw new global::System.ArgumentNullException("indirizzo");
}
else {
this.Adapter.UpdateCommand.Parameters[2].Value = ((string)(indirizzo));
}
if ((cap == null)) {
throw new global::System.ArgumentNullException("cap");
}
else {
this.Adapter.UpdateCommand.Parameters[3].Value = ((string)(cap));
}
if ((citta == null)) {
throw new global::System.ArgumentNullException("citta");
}
else {
this.Adapter.UpdateCommand.Parameters[4].Value = ((string)(citta));
}
if ((cod_fisc == null)) {
throw new global::System.ArgumentNullException("cod_fisc");
}
else {
this.Adapter.UpdateCommand.Parameters[5].Value = ((string)(cod_fisc));
}
this.Adapter.UpdateCommand.Parameters[6].Value = ((int)(idxAmm));
this.Adapter.UpdateCommand.Parameters[7].Value = ((bool)(Attivo));
if ((note == null)) {
throw new global::System.ArgumentNullException("note");
}
else {
this.Adapter.UpdateCommand.Parameters[8].Value = ((string)(note));
}
this.Adapter.UpdateCommand.Parameters[9].Value = ((int)(Original_idxCond));
if ((Original_cod_cond == null)) {
throw new global::System.ArgumentNullException("Original_cod_cond");
}
else {
this.Adapter.UpdateCommand.Parameters[10].Value = ((string)(Original_cod_cond));
}
if ((Original_nome == null)) {
throw new global::System.ArgumentNullException("Original_nome");
}
else {
this.Adapter.UpdateCommand.Parameters[11].Value = ((string)(Original_nome));
}
if ((Original_indirizzo == null)) {
throw new global::System.ArgumentNullException("Original_indirizzo");
}
else {
this.Adapter.UpdateCommand.Parameters[12].Value = ((string)(Original_indirizzo));
}
if ((Original_cap == null)) {
throw new global::System.ArgumentNullException("Original_cap");
}
else {
this.Adapter.UpdateCommand.Parameters[13].Value = ((string)(Original_cap));
}
if ((Original_citta == null)) {
throw new global::System.ArgumentNullException("Original_citta");
}
else {
this.Adapter.UpdateCommand.Parameters[14].Value = ((string)(Original_citta));
}
if ((Original_cod_fisc == null)) {
throw new global::System.ArgumentNullException("Original_cod_fisc");
}
else {
this.Adapter.UpdateCommand.Parameters[15].Value = ((string)(Original_cod_fisc));
}
this.Adapter.UpdateCommand.Parameters[16].Value = ((int)(Original_idxAmm));
this.Adapter.UpdateCommand.Parameters[17].Value = ((bool)(Original_Attivo));
if ((Original_note == null)) {
throw new global::System.ArgumentNullException("Original_note");
}
else {
this.Adapter.UpdateCommand.Parameters[18].Value = ((string)(Original_note));
}
this.Adapter.UpdateCommand.Parameters[19].Value = ((int)(idxCond));
global::System.Data.ConnectionState previousConnectionState = this.Adapter.UpdateCommand.Connection.State;
if (((this.Adapter.UpdateCommand.Connection.State & global::System.Data.ConnectionState.Open)
!= global::System.Data.ConnectionState.Open)) {
this.Adapter.UpdateCommand.Connection.Open();
}
try {
int returnValue = this.Adapter.UpdateCommand.ExecuteNonQuery();
return returnValue;
}
finally {
if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
this.Adapter.UpdateCommand.Connection.Close();
}
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)]
public virtual int Update(
string cod_cond,
string nome,
string indirizzo,
string cap,
string citta,
string cod_fisc,
int idxAmm,
bool Attivo,
string note,
int Original_idxCond,
string Original_cod_cond,
string Original_nome,
string Original_indirizzo,
string Original_cap,
string Original_citta,
string Original_cod_fisc,
int Original_idxAmm,
bool Original_Attivo,
string Original_note) {
return this.Update(cod_cond, nome, indirizzo, cap, citta, cod_fisc, idxAmm, Attivo, note, Original_idxCond, Original_cod_cond, Original_nome, Original_indirizzo, Original_cap, Original_citta, Original_cod_fisc, Original_idxAmm, Original_Attivo, Original_note, Original_idxCond);
}
}
/// <summary>
@@ -15710,8 +15384,6 @@ SELECT idxDoc, idxRichiesta, idxFornitore, numDoc, dataFatt, intervento, Imponib
private UpdateOrderOption _updateOrder;
private AnagCondominiTableAdapter _anagCondominiTableAdapter;
private AssF2ATableAdapter _assF2ATableAdapter;
private AnagStatiTableAdapter _anagStatiTableAdapter;
@@ -15737,20 +15409,6 @@ SELECT idxDoc, idxRichiesta, idxFornitore, numDoc, dataFatt, intervento, Imponib
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
[global::System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterManagerPropertyEditor, Microso" +
"ft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3" +
"a", "System.Drawing.Design.UITypeEditor")]
public AnagCondominiTableAdapter AnagCondominiTableAdapter {
get {
return this._anagCondominiTableAdapter;
}
set {
this._anagCondominiTableAdapter = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
[global::System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterManagerPropertyEditor, Microso" +
@@ -15840,10 +15498,6 @@ SELECT idxDoc, idxRichiesta, idxFornitore, numDoc, dataFatt, intervento, Imponib
if ((this._connection != null)) {
return this._connection;
}
if (((this._anagCondominiTableAdapter != null)
&& (this._anagCondominiTableAdapter.Connection != null))) {
return this._anagCondominiTableAdapter.Connection;
}
if (((this._assF2ATableAdapter != null)
&& (this._assF2ATableAdapter.Connection != null))) {
return this._assF2ATableAdapter.Connection;
@@ -15877,9 +15531,6 @@ SELECT idxDoc, idxRichiesta, idxFornitore, numDoc, dataFatt, intervento, Imponib
public int TableAdapterInstanceCount {
get {
int count = 0;
if ((this._anagCondominiTableAdapter != null)) {
count = (count + 1);
}
if ((this._assF2ATableAdapter != null)) {
count = (count + 1);
}
@@ -15915,15 +15566,6 @@ SELECT idxDoc, idxRichiesta, idxFornitore, numDoc, dataFatt, intervento, Imponib
allChangedRows.AddRange(updatedRows);
}
}
if ((this._anagCondominiTableAdapter != null)) {
global::System.Data.DataRow[] updatedRows = dataSet.AnagCondomini.Select(null, null, global::System.Data.DataViewRowState.ModifiedCurrent);
updatedRows = this.GetRealUpdatedRows(updatedRows, allAddedRows);
if (((updatedRows != null)
&& (0 < updatedRows.Length))) {
result = (result + this._anagCondominiTableAdapter.Update(updatedRows));
allChangedRows.AddRange(updatedRows);
}
}
if ((this._anagStatiTableAdapter != null)) {
global::System.Data.DataRow[] updatedRows = dataSet.AnagStati.Select(null, null, global::System.Data.DataViewRowState.ModifiedCurrent);
updatedRows = this.GetRealUpdatedRows(updatedRows, allAddedRows);
@@ -15978,14 +15620,6 @@ SELECT idxDoc, idxRichiesta, idxFornitore, numDoc, dataFatt, intervento, Imponib
allAddedRows.AddRange(addedRows);
}
}
if ((this._anagCondominiTableAdapter != null)) {
global::System.Data.DataRow[] addedRows = dataSet.AnagCondomini.Select(null, null, global::System.Data.DataViewRowState.Added);
if (((addedRows != null)
&& (0 < addedRows.Length))) {
result = (result + this._anagCondominiTableAdapter.Update(addedRows));
allAddedRows.AddRange(addedRows);
}
}
if ((this._anagStatiTableAdapter != null)) {
global::System.Data.DataRow[] addedRows = dataSet.AnagStati.Select(null, null, global::System.Data.DataViewRowState.Added);
if (((addedRows != null)
@@ -16060,14 +15694,6 @@ SELECT idxDoc, idxRichiesta, idxFornitore, numDoc, dataFatt, intervento, Imponib
allChangedRows.AddRange(deletedRows);
}
}
if ((this._anagCondominiTableAdapter != null)) {
global::System.Data.DataRow[] deletedRows = dataSet.AnagCondomini.Select(null, null, global::System.Data.DataViewRowState.Deleted);
if (((deletedRows != null)
&& (0 < deletedRows.Length))) {
result = (result + this._anagCondominiTableAdapter.Update(deletedRows));
allChangedRows.AddRange(deletedRows);
}
}
if ((this._assF2ATableAdapter != null)) {
global::System.Data.DataRow[] deletedRows = dataSet.AssF2A.Select(null, null, global::System.Data.DataViewRowState.Deleted);
if (((deletedRows != null)
@@ -16115,11 +15741,6 @@ SELECT idxDoc, idxRichiesta, idxFornitore, numDoc, dataFatt, intervento, Imponib
if ((dataSet.HasChanges() == false)) {
return 0;
}
if (((this._anagCondominiTableAdapter != null)
&& (this.MatchTableAdapterConnection(this._anagCondominiTableAdapter.Connection) == false))) {
throw new global::System.ArgumentException("Tutti gli oggetti TableAdapter gestiti da TableAdapterManager devono utilizzare l" +
"a stessa stringa di connessione.");
}
if (((this._assF2ATableAdapter != null)
&& (this.MatchTableAdapterConnection(this._assF2ATableAdapter.Connection) == false))) {
throw new global::System.ArgumentException("Tutti gli oggetti TableAdapter gestiti da TableAdapterManager devono utilizzare l" +
@@ -16178,15 +15799,6 @@ SELECT idxDoc, idxRichiesta, idxFornitore, numDoc, dataFatt, intervento, Imponib
try {
// ---- Prepare for update -----------
//
if ((this._anagCondominiTableAdapter != null)) {
revertConnections.Add(this._anagCondominiTableAdapter, this._anagCondominiTableAdapter.Connection);
this._anagCondominiTableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(workConnection));
this._anagCondominiTableAdapter.Transaction = ((global::System.Data.SqlClient.SqlTransaction)(workTransaction));
if (this._anagCondominiTableAdapter.Adapter.AcceptChangesDuringUpdate) {
this._anagCondominiTableAdapter.Adapter.AcceptChangesDuringUpdate = false;
adaptersWithAcceptChangesDuringUpdate.Add(this._anagCondominiTableAdapter.Adapter);
}
}
if ((this._assF2ATableAdapter != null)) {
revertConnections.Add(this._assF2ATableAdapter, this._assF2ATableAdapter.Connection);
this._assF2ATableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(workConnection));
@@ -16290,10 +15902,6 @@ SELECT idxDoc, idxRichiesta, idxFornitore, numDoc, dataFatt, intervento, Imponib
if (workConnOpened) {
workConnection.Close();
}
if ((this._anagCondominiTableAdapter != null)) {
this._anagCondominiTableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(revertConnections[this._anagCondominiTableAdapter]));
this._anagCondominiTableAdapter.Transaction = null;
}
if ((this._assF2ATableAdapter != null)) {
this._assF2ATableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(revertConnections[this._assF2ATableAdapter]));
this._assF2ATableAdapter.Transaction = null;
+31 -85
View File
@@ -46,76 +46,14 @@ FROM dbo.v_AnagAmministratori</CommandText>
</TableAdapter>
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="AnagCondominiTableAdapter" GeneratorDataComponentClassName="AnagCondominiTableAdapter" Name="AnagCondomini" UserDataComponentName="AnagCondominiTableAdapter">
<MainSource>
<DbSource ConnectionRef="B2BCondConnectionString (Settings)" DbObjectName="B2BCond.dbo.AnagCondomini" DbObjectType="Table" 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">
<DeleteCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>DELETE FROM [dbo].[AnagCondomini] WHERE (([idxCond] = @Original_idxCond) AND ([cod_cond] = @Original_cod_cond) AND ([nome] = @Original_nome) AND ([indirizzo] = @Original_indirizzo) AND ([cap] = @Original_cap) AND ([citta] = @Original_citta) AND ([cod_fisc] = @Original_cod_fisc) AND ([idxAmm] = @Original_idxAmm) AND ([Attivo] = @Original_Attivo) AND ([note] = @Original_note))</CommandText>
<Parameters>
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_idxCond" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="idxCond" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_cod_cond" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="cod_cond" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_nome" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="nome" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_indirizzo" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="indirizzo" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_cap" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="cap" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_citta" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="citta" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_cod_fisc" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="cod_fisc" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_idxAmm" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="idxAmm" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@Original_Attivo" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="Attivo" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_note" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="note" SourceColumnNullMapping="false" SourceVersion="Original" />
</Parameters>
</DbCommand>
</DeleteCommand>
<InsertCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>INSERT INTO [dbo].[AnagCondomini] ([cod_cond], [nome], [indirizzo], [cap], [citta], [cod_fisc], [idxAmm], [Attivo], [note]) VALUES (@cod_cond, @nome, @indirizzo, @cap, @citta, @cod_fisc, @idxAmm, @Attivo, @note);
SELECT idxCond, cod_cond, nome, indirizzo, cap, citta, cod_fisc, idxAmm, Attivo, note FROM AnagCondomini WHERE (idxCond = SCOPE_IDENTITY())</CommandText>
<Parameters>
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@cod_cond" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="cod_cond" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@nome" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="nome" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@indirizzo" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="indirizzo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@cap" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="cap" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@citta" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="citta" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@cod_fisc" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="cod_fisc" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@idxAmm" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="idxAmm" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@Attivo" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="Attivo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@note" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="note" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</InsertCommand>
<DbSource ConnectionRef="B2BCondConnectionString (Settings)" DbObjectName="B2BCond.dbo.v_anagCondomini" DbObjectType="View" 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="true" UserGetMethodName="GetData" UserSourceName="Fill">
<SelectCommand>
<DbCommand CommandType="Text" ModifiedByUser="true">
<CommandText>SELECT *
FROM dbo.AnagCondomini</CommandText>
FROM v_AnagCondomini</CommandText>
<Parameters />
</DbCommand>
</SelectCommand>
<UpdateCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>UPDATE [dbo].[AnagCondomini] SET [cod_cond] = @cod_cond, [nome] = @nome, [indirizzo] = @indirizzo, [cap] = @cap, [citta] = @citta, [cod_fisc] = @cod_fisc, [idxAmm] = @idxAmm, [Attivo] = @Attivo, [note] = @note WHERE (([idxCond] = @Original_idxCond) AND ([cod_cond] = @Original_cod_cond) AND ([nome] = @Original_nome) AND ([indirizzo] = @Original_indirizzo) AND ([cap] = @Original_cap) AND ([citta] = @Original_citta) AND ([cod_fisc] = @Original_cod_fisc) AND ([idxAmm] = @Original_idxAmm) AND ([Attivo] = @Original_Attivo) AND ([note] = @Original_note));
SELECT idxCond, cod_cond, nome, indirizzo, cap, citta, cod_fisc, idxAmm, Attivo, note FROM AnagCondomini WHERE (idxCond = @idxCond)</CommandText>
<Parameters>
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@cod_cond" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="cod_cond" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@nome" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="nome" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@indirizzo" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="indirizzo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@cap" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="cap" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@citta" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="citta" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@cod_fisc" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="cod_fisc" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@idxAmm" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="idxAmm" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@Attivo" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="Attivo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@note" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="note" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_idxCond" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="idxCond" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_cod_cond" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="cod_cond" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_nome" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="nome" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_indirizzo" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="indirizzo" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_cap" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="cap" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_citta" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="citta" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_cod_fisc" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="cod_fisc" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_idxAmm" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="idxAmm" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@Original_Attivo" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="Attivo" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_note" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="note" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="false" AutogeneratedName="idxCond" ColumnName="idxCond" DataSourceName="B2BCond.dbo.AnagCondomini" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@idxCond" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="idxCond" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</UpdateCommand>
</DbSource>
</MainSource>
<Mappings>
@@ -129,6 +67,7 @@ SELECT idxCond, cod_cond, nome, indirizzo, cap, citta, cod_fisc, idxAmm, Attivo,
<Mapping SourceColumn="idxAmm" DataSetColumn="idxAmm" />
<Mapping SourceColumn="Attivo" DataSetColumn="Attivo" />
<Mapping SourceColumn="note" DataSetColumn="note" />
<Mapping SourceColumn="nomeFull" DataSetColumn="nomeFull" />
</Mappings>
<Sources>
<DbSource ConnectionRef="B2BCondConnectionString (Settings)" DbObjectName="B2BCond.dbo.stp_AC_getByAmmm" DbObjectType="StoredProcedure" GenerateMethods="Get" GenerateShortCommands="true" GeneratorGetMethodName="getByAmm" GetMethodModifier="Public" GetMethodName="getByAmm" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="getByAmm" UserSourceName="getByAmm">
@@ -1069,7 +1008,7 @@ SELECT idxDoc, idxRichiesta, idxFornitore, numDoc, dataFatt, intervento, Imponib
<xs:element name="DS_app" msdata:IsDataSet="true" msdata:UseCurrentLocale="true" msprop:EnableTableAdapterManager="true" msprop:Generator_DataSetName="DS_app" msprop:Generator_UserDSName="DS_app">
<xs:complexType>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="AnagAmministratori" msprop:Generator_TableClassName="AnagAmministratoriDataTable" msprop:Generator_TableVarName="tableAnagAmministratori" msprop:Generator_RowChangedName="AnagAmministratoriRowChanged" msprop:Generator_TablePropName="AnagAmministratori" msprop:Generator_RowDeletingName="AnagAmministratoriRowDeleting" msprop:Generator_RowChangingName="AnagAmministratoriRowChanging" msprop:Generator_RowEvHandlerName="AnagAmministratoriRowChangeEventHandler" msprop:Generator_RowDeletedName="AnagAmministratoriRowDeleted" msprop:Generator_RowClassName="AnagAmministratoriRow" msprop:Generator_UserTableName="AnagAmministratori" msprop:Generator_RowEvArgName="AnagAmministratoriRowChangeEvent">
<xs:element name="AnagAmministratori" msprop:Generator_TableClassName="AnagAmministratoriDataTable" msprop:Generator_TableVarName="tableAnagAmministratori" msprop:Generator_TablePropName="AnagAmministratori" msprop:Generator_RowDeletingName="AnagAmministratoriRowDeleting" msprop:Generator_RowChangingName="AnagAmministratoriRowChanging" msprop:Generator_RowEvHandlerName="AnagAmministratoriRowChangeEventHandler" msprop:Generator_RowDeletedName="AnagAmministratoriRowDeleted" msprop:Generator_UserTableName="AnagAmministratori" msprop:Generator_RowChangedName="AnagAmministratoriRowChanged" msprop:Generator_RowEvArgName="AnagAmministratoriRowChangeEvent" msprop:Generator_RowClassName="AnagAmministratoriRow">
<xs:complexType>
<xs:sequence>
<xs:element name="idxAmm" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnidxAmm" msprop:Generator_ColumnPropNameInRow="idxAmm" msprop:Generator_ColumnPropNameInTable="idxAmmColumn" msprop:Generator_UserColumnName="idxAmm" type="xs:int" />
@@ -1096,7 +1035,7 @@ SELECT idxDoc, idxRichiesta, idxFornitore, numDoc, dataFatt, intervento, Imponib
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="AnagCondomini" msprop:Generator_TableClassName="AnagCondominiDataTable" msprop:Generator_TableVarName="tableAnagCondomini" msprop:Generator_RowChangedName="AnagCondominiRowChanged" msprop:Generator_TablePropName="AnagCondomini" msprop:Generator_RowDeletingName="AnagCondominiRowDeleting" msprop:Generator_RowChangingName="AnagCondominiRowChanging" msprop:Generator_RowEvHandlerName="AnagCondominiRowChangeEventHandler" msprop:Generator_RowDeletedName="AnagCondominiRowDeleted" msprop:Generator_RowClassName="AnagCondominiRow" msprop:Generator_UserTableName="AnagCondomini" msprop:Generator_RowEvArgName="AnagCondominiRowChangeEvent">
<xs:element name="AnagCondomini" msprop:Generator_TableClassName="AnagCondominiDataTable" msprop:Generator_TableVarName="tableAnagCondomini" msprop:Generator_TablePropName="AnagCondomini" msprop:Generator_RowDeletingName="AnagCondominiRowDeleting" msprop:Generator_RowChangingName="AnagCondominiRowChanging" msprop:Generator_RowEvHandlerName="AnagCondominiRowChangeEventHandler" msprop:Generator_RowDeletedName="AnagCondominiRowDeleted" msprop:Generator_UserTableName="AnagCondomini" msprop:Generator_RowChangedName="AnagCondominiRowChanged" msprop:Generator_RowEvArgName="AnagCondominiRowChangeEvent" msprop:Generator_RowClassName="AnagCondominiRow">
<xs:complexType>
<xs:sequence>
<xs:element name="idxCond" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnidxCond" msprop:Generator_ColumnPropNameInRow="idxCond" msprop:Generator_ColumnPropNameInTable="idxCondColumn" msprop:Generator_UserColumnName="idxCond" type="xs:int" />
@@ -1151,10 +1090,17 @@ SELECT idxDoc, idxRichiesta, idxFornitore, numDoc, dataFatt, intervento, Imponib
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="nomeFull" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnnomeFull" msprop:Generator_ColumnPropNameInRow="nomeFull" msprop:Generator_ColumnPropNameInTable="nomeFullColumn" msprop:Generator_UserColumnName="nomeFull" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="83" />
</xs:restriction>
</xs:simpleType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="AnagAree" msprop:Generator_TableClassName="AnagAreeDataTable" msprop:Generator_TableVarName="tableAnagAree" msprop:Generator_TablePropName="AnagAree" msprop:Generator_RowDeletingName="AnagAreeRowDeleting" msprop:Generator_RowChangingName="AnagAreeRowChanging" msprop:Generator_RowEvHandlerName="AnagAreeRowChangeEventHandler" msprop:Generator_RowDeletedName="AnagAreeRowDeleted" msprop:Generator_UserTableName="AnagAree" msprop:Generator_RowChangedName="AnagAreeRowChanged" msprop:Generator_RowEvArgName="AnagAreeRowChangeEvent" msprop:Generator_RowClassName="AnagAreeRow">
<xs:element name="AnagAree" msprop:Generator_TableClassName="AnagAreeDataTable" msprop:Generator_TableVarName="tableAnagAree" msprop:Generator_RowChangedName="AnagAreeRowChanged" msprop:Generator_TablePropName="AnagAree" msprop:Generator_RowDeletingName="AnagAreeRowDeleting" msprop:Generator_RowChangingName="AnagAreeRowChanging" msprop:Generator_RowEvHandlerName="AnagAreeRowChangeEventHandler" msprop:Generator_RowDeletedName="AnagAreeRowDeleted" msprop:Generator_RowClassName="AnagAreeRow" msprop:Generator_UserTableName="AnagAree" msprop:Generator_RowEvArgName="AnagAreeRowChangeEvent">
<xs:complexType>
<xs:sequence>
<xs:element name="idxArea" msprop:Generator_ColumnVarNameInTable="columnidxArea" msprop:Generator_ColumnPropNameInRow="idxArea" msprop:Generator_ColumnPropNameInTable="idxAreaColumn" msprop:Generator_UserColumnName="idxArea" type="xs:int" />
@@ -1183,7 +1129,7 @@ SELECT idxDoc, idxRichiesta, idxFornitore, numDoc, dataFatt, intervento, Imponib
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="AnagFornitori" msprop:Generator_TableClassName="AnagFornitoriDataTable" msprop:Generator_TableVarName="tableAnagFornitori" msprop:Generator_TablePropName="AnagFornitori" msprop:Generator_RowDeletingName="AnagFornitoriRowDeleting" msprop:Generator_RowChangingName="AnagFornitoriRowChanging" msprop:Generator_RowEvHandlerName="AnagFornitoriRowChangeEventHandler" msprop:Generator_RowDeletedName="AnagFornitoriRowDeleted" msprop:Generator_UserTableName="AnagFornitori" msprop:Generator_RowChangedName="AnagFornitoriRowChanged" msprop:Generator_RowEvArgName="AnagFornitoriRowChangeEvent" msprop:Generator_RowClassName="AnagFornitoriRow">
<xs:element name="AnagFornitori" msprop:Generator_TableClassName="AnagFornitoriDataTable" msprop:Generator_TableVarName="tableAnagFornitori" msprop:Generator_RowChangedName="AnagFornitoriRowChanged" msprop:Generator_TablePropName="AnagFornitori" msprop:Generator_RowDeletingName="AnagFornitoriRowDeleting" msprop:Generator_RowChangingName="AnagFornitoriRowChanging" msprop:Generator_RowEvHandlerName="AnagFornitoriRowChangeEventHandler" msprop:Generator_RowDeletedName="AnagFornitoriRowDeleted" msprop:Generator_RowClassName="AnagFornitoriRow" msprop:Generator_UserTableName="AnagFornitori" msprop:Generator_RowEvArgName="AnagFornitoriRowChangeEvent">
<xs:complexType>
<xs:sequence>
<xs:element name="idxFornitore" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnidxFornitore" msprop:Generator_ColumnPropNameInRow="idxFornitore" msprop:Generator_ColumnPropNameInTable="idxFornitoreColumn" msprop:Generator_UserColumnName="idxFornitore" type="xs:int" />
@@ -1248,7 +1194,7 @@ SELECT idxDoc, idxRichiesta, idxFornitore, numDoc, dataFatt, intervento, Imponib
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="AssF2A" msprop:Generator_TableClassName="AssF2ADataTable" msprop:Generator_TableVarName="tableAssF2A" msprop:Generator_TablePropName="AssF2A" msprop:Generator_RowDeletingName="AssF2ARowDeleting" msprop:Generator_RowChangingName="AssF2ARowChanging" msprop:Generator_RowEvHandlerName="AssF2ARowChangeEventHandler" msprop:Generator_RowDeletedName="AssF2ARowDeleted" msprop:Generator_UserTableName="AssF2A" msprop:Generator_RowChangedName="AssF2ARowChanged" msprop:Generator_RowEvArgName="AssF2ARowChangeEvent" msprop:Generator_RowClassName="AssF2ARow">
<xs:element name="AssF2A" msprop:Generator_TableClassName="AssF2ADataTable" msprop:Generator_TableVarName="tableAssF2A" msprop:Generator_RowChangedName="AssF2ARowChanged" msprop:Generator_TablePropName="AssF2A" msprop:Generator_RowDeletingName="AssF2ARowDeleting" msprop:Generator_RowChangingName="AssF2ARowChanging" msprop:Generator_RowEvHandlerName="AssF2ARowChangeEventHandler" msprop:Generator_RowDeletedName="AssF2ARowDeleted" msprop:Generator_RowClassName="AssF2ARow" msprop:Generator_UserTableName="AssF2A" msprop:Generator_RowEvArgName="AssF2ARowChangeEvent">
<xs:complexType>
<xs:sequence>
<xs:element name="idxFornitore" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnidxFornitore" msprop:Generator_ColumnPropNameInRow="idxFornitore" msprop:Generator_ColumnPropNameInTable="idxFornitoreColumn" msprop:Generator_UserColumnName="idxFornitore" type="xs:int" />
@@ -1257,7 +1203,7 @@ SELECT idxDoc, idxRichiesta, idxFornitore, numDoc, dataFatt, intervento, Imponib
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="AssF2C" msprop:Generator_TableClassName="AssF2CDataTable" msprop:Generator_TableVarName="tableAssF2C" msprop:Generator_RowChangedName="AssF2CRowChanged" msprop:Generator_TablePropName="AssF2C" msprop:Generator_RowDeletingName="AssF2CRowDeleting" msprop:Generator_RowChangingName="AssF2CRowChanging" msprop:Generator_RowEvHandlerName="AssF2CRowChangeEventHandler" msprop:Generator_RowDeletedName="AssF2CRowDeleted" msprop:Generator_RowClassName="AssF2CRow" msprop:Generator_UserTableName="AssF2C" msprop:Generator_RowEvArgName="AssF2CRowChangeEvent">
<xs:element name="AssF2C" msprop:Generator_TableClassName="AssF2CDataTable" msprop:Generator_TableVarName="tableAssF2C" msprop:Generator_TablePropName="AssF2C" msprop:Generator_RowDeletingName="AssF2CRowDeleting" msprop:Generator_RowChangingName="AssF2CRowChanging" msprop:Generator_RowEvHandlerName="AssF2CRowChangeEventHandler" msprop:Generator_RowDeletedName="AssF2CRowDeleted" msprop:Generator_UserTableName="AssF2C" msprop:Generator_RowChangedName="AssF2CRowChanged" msprop:Generator_RowEvArgName="AssF2CRowChangeEvent" msprop:Generator_RowClassName="AssF2CRow">
<xs:complexType>
<xs:sequence>
<xs:element name="idxCond" msprop:Generator_ColumnVarNameInTable="columnidxCond" msprop:Generator_ColumnPropNameInRow="idxCond" msprop:Generator_ColumnPropNameInTable="idxCondColumn" msprop:Generator_UserColumnName="idxCond" type="xs:int" />
@@ -1339,7 +1285,7 @@ SELECT idxDoc, idxRichiesta, idxFornitore, numDoc, dataFatt, intervento, Imponib
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="PBO_DashStats" msprop:Generator_TableClassName="PBO_DashStatsDataTable" msprop:Generator_TableVarName="tablePBO_DashStats" msprop:Generator_RowChangedName="PBO_DashStatsRowChanged" msprop:Generator_TablePropName="PBO_DashStats" msprop:Generator_RowDeletingName="PBO_DashStatsRowDeleting" msprop:Generator_RowChangingName="PBO_DashStatsRowChanging" msprop:Generator_RowEvHandlerName="PBO_DashStatsRowChangeEventHandler" msprop:Generator_RowDeletedName="PBO_DashStatsRowDeleted" msprop:Generator_RowClassName="PBO_DashStatsRow" msprop:Generator_UserTableName="PBO_DashStats" msprop:Generator_RowEvArgName="PBO_DashStatsRowChangeEvent">
<xs:element name="PBO_DashStats" msprop:Generator_TableClassName="PBO_DashStatsDataTable" msprop:Generator_TableVarName="tablePBO_DashStats" msprop:Generator_TablePropName="PBO_DashStats" msprop:Generator_RowDeletingName="PBO_DashStatsRowDeleting" msprop:Generator_RowChangingName="PBO_DashStatsRowChanging" msprop:Generator_RowEvHandlerName="PBO_DashStatsRowChangeEventHandler" msprop:Generator_RowDeletedName="PBO_DashStatsRowDeleted" msprop:Generator_UserTableName="PBO_DashStats" msprop:Generator_RowChangedName="PBO_DashStatsRowChanged" msprop:Generator_RowEvArgName="PBO_DashStatsRowChangeEvent" msprop:Generator_RowClassName="PBO_DashStatsRow">
<xs:complexType>
<xs:sequence>
<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" />
@@ -1353,7 +1299,7 @@ SELECT idxDoc, idxRichiesta, idxFornitore, numDoc, dataFatt, intervento, Imponib
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="ElencolRich" msprop:Generator_TableClassName="ElencolRichDataTable" msprop:Generator_TableVarName="tableElencolRich" msprop:Generator_TablePropName="ElencolRich" msprop:Generator_RowDeletingName="ElencolRichRowDeleting" msprop:Generator_RowChangingName="ElencolRichRowChanging" msprop:Generator_RowEvHandlerName="ElencolRichRowChangeEventHandler" msprop:Generator_RowDeletedName="ElencolRichRowDeleted" msprop:Generator_UserTableName="ElencolRich" msprop:Generator_RowChangedName="ElencolRichRowChanged" msprop:Generator_RowEvArgName="ElencolRichRowChangeEvent" msprop:Generator_RowClassName="ElencolRichRow">
<xs:element name="ElencolRich" msprop:Generator_TableClassName="ElencolRichDataTable" msprop:Generator_TableVarName="tableElencolRich" msprop:Generator_RowChangedName="ElencolRichRowChanged" msprop:Generator_TablePropName="ElencolRich" msprop:Generator_RowDeletingName="ElencolRichRowDeleting" msprop:Generator_RowChangingName="ElencolRichRowChanging" msprop:Generator_RowEvHandlerName="ElencolRichRowChangeEventHandler" msprop:Generator_RowDeletedName="ElencolRichRowDeleted" msprop:Generator_RowClassName="ElencolRichRow" msprop:Generator_UserTableName="ElencolRich" msprop:Generator_RowEvArgName="ElencolRichRowChangeEvent">
<xs:complexType>
<xs:sequence>
<xs:element name="idxRichiesta" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnidxRichiesta" msprop:Generator_ColumnPropNameInRow="idxRichiesta" msprop:Generator_ColumnPropNameInTable="idxRichiestaColumn" msprop:Generator_UserColumnName="idxRichiesta" type="xs:int" />
@@ -1454,7 +1400,7 @@ SELECT idxDoc, idxRichiesta, idxFornitore, numDoc, dataFatt, intervento, Imponib
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="AnagStati" msprop:Generator_TableClassName="AnagStatiDataTable" msprop:Generator_TableVarName="tableAnagStati" msprop:Generator_TablePropName="AnagStati" msprop:Generator_RowDeletingName="AnagStatiRowDeleting" msprop:Generator_RowChangingName="AnagStatiRowChanging" msprop:Generator_RowEvHandlerName="AnagStatiRowChangeEventHandler" msprop:Generator_RowDeletedName="AnagStatiRowDeleted" msprop:Generator_UserTableName="AnagStati" msprop:Generator_RowChangedName="AnagStatiRowChanged" msprop:Generator_RowEvArgName="AnagStatiRowChangeEvent" msprop:Generator_RowClassName="AnagStatiRow">
<xs:element name="AnagStati" msprop:Generator_TableClassName="AnagStatiDataTable" msprop:Generator_TableVarName="tableAnagStati" msprop:Generator_RowChangedName="AnagStatiRowChanged" msprop:Generator_TablePropName="AnagStati" msprop:Generator_RowDeletingName="AnagStatiRowDeleting" msprop:Generator_RowChangingName="AnagStatiRowChanging" msprop:Generator_RowEvHandlerName="AnagStatiRowChangeEventHandler" msprop:Generator_RowDeletedName="AnagStatiRowDeleted" msprop:Generator_RowClassName="AnagStatiRow" msprop:Generator_UserTableName="AnagStati" msprop:Generator_RowEvArgName="AnagStatiRowChangeEvent">
<xs:complexType>
<xs:sequence>
<xs:element name="idxStato" msprop:Generator_ColumnVarNameInTable="columnidxStato" msprop:Generator_ColumnPropNameInRow="idxStato" msprop:Generator_ColumnPropNameInTable="idxStatoColumn" msprop:Generator_UserColumnName="idxStato" type="xs:int" />
@@ -1482,7 +1428,7 @@ SELECT idxDoc, idxRichiesta, idxFornitore, numDoc, dataFatt, intervento, Imponib
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="StatoRich" msprop:Generator_TableClassName="StatoRichDataTable" msprop:Generator_TableVarName="tableStatoRich" msprop:Generator_TablePropName="StatoRich" msprop:Generator_RowDeletingName="StatoRichRowDeleting" msprop:Generator_RowChangingName="StatoRichRowChanging" msprop:Generator_RowEvHandlerName="StatoRichRowChangeEventHandler" msprop:Generator_RowDeletedName="StatoRichRowDeleted" msprop:Generator_UserTableName="StatoRich" msprop:Generator_RowChangedName="StatoRichRowChanged" msprop:Generator_RowEvArgName="StatoRichRowChangeEvent" msprop:Generator_RowClassName="StatoRichRow">
<xs:element name="StatoRich" msprop:Generator_TableClassName="StatoRichDataTable" msprop:Generator_TableVarName="tableStatoRich" msprop:Generator_RowChangedName="StatoRichRowChanged" msprop:Generator_TablePropName="StatoRich" msprop:Generator_RowDeletingName="StatoRichRowDeleting" msprop:Generator_RowChangingName="StatoRichRowChanging" msprop:Generator_RowEvHandlerName="StatoRichRowChangeEventHandler" msprop:Generator_RowDeletedName="StatoRichRowDeleted" msprop:Generator_RowClassName="StatoRichRow" msprop:Generator_UserTableName="StatoRich" msprop:Generator_RowEvArgName="StatoRichRowChangeEvent">
<xs:complexType>
<xs:sequence>
<xs:element name="cod_cond" msprop:Generator_ColumnVarNameInTable="columncod_cond" msprop:Generator_ColumnPropNameInRow="cod_cond" msprop:Generator_ColumnPropNameInTable="cod_condColumn" msprop:Generator_UserColumnName="cod_cond">
@@ -1507,7 +1453,7 @@ SELECT idxDoc, idxRichiesta, idxFornitore, numDoc, dataFatt, intervento, Imponib
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="PAM_DashStats" msprop:Generator_TableClassName="PAM_DashStatsDataTable" msprop:Generator_TableVarName="tablePAM_DashStats" msprop:Generator_TablePropName="PAM_DashStats" msprop:Generator_RowDeletingName="PAM_DashStatsRowDeleting" msprop:Generator_RowChangingName="PAM_DashStatsRowChanging" msprop:Generator_RowEvHandlerName="PAM_DashStatsRowChangeEventHandler" msprop:Generator_RowDeletedName="PAM_DashStatsRowDeleted" msprop:Generator_UserTableName="PAM_DashStats" msprop:Generator_RowChangedName="PAM_DashStatsRowChanged" msprop:Generator_RowEvArgName="PAM_DashStatsRowChangeEvent" msprop:Generator_RowClassName="PAM_DashStatsRow">
<xs:element name="PAM_DashStats" msprop:Generator_TableClassName="PAM_DashStatsDataTable" msprop:Generator_TableVarName="tablePAM_DashStats" msprop:Generator_RowChangedName="PAM_DashStatsRowChanged" msprop:Generator_TablePropName="PAM_DashStats" msprop:Generator_RowDeletingName="PAM_DashStatsRowDeleting" msprop:Generator_RowChangingName="PAM_DashStatsRowChanging" msprop:Generator_RowEvHandlerName="PAM_DashStatsRowChangeEventHandler" msprop:Generator_RowDeletedName="PAM_DashStatsRowDeleted" msprop:Generator_RowClassName="PAM_DashStatsRow" msprop:Generator_UserTableName="PAM_DashStats" msprop:Generator_RowEvArgName="PAM_DashStatsRowChangeEvent">
<xs:complexType>
<xs:sequence>
<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" />
@@ -1523,7 +1469,7 @@ SELECT idxDoc, idxRichiesta, idxFornitore, numDoc, dataFatt, intervento, Imponib
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="AnagPrior" msprop:Generator_TableClassName="AnagPriorDataTable" msprop:Generator_TableVarName="tableAnagPrior" msprop:Generator_TablePropName="AnagPrior" msprop:Generator_RowDeletingName="AnagPriorRowDeleting" msprop:Generator_RowChangingName="AnagPriorRowChanging" msprop:Generator_RowEvHandlerName="AnagPriorRowChangeEventHandler" msprop:Generator_RowDeletedName="AnagPriorRowDeleted" msprop:Generator_UserTableName="AnagPrior" msprop:Generator_RowChangedName="AnagPriorRowChanged" msprop:Generator_RowEvArgName="AnagPriorRowChangeEvent" msprop:Generator_RowClassName="AnagPriorRow">
<xs:element name="AnagPrior" msprop:Generator_TableClassName="AnagPriorDataTable" msprop:Generator_TableVarName="tableAnagPrior" msprop:Generator_RowChangedName="AnagPriorRowChanged" msprop:Generator_TablePropName="AnagPrior" msprop:Generator_RowDeletingName="AnagPriorRowDeleting" msprop:Generator_RowChangingName="AnagPriorRowChanging" msprop:Generator_RowEvHandlerName="AnagPriorRowChangeEventHandler" msprop:Generator_RowDeletedName="AnagPriorRowDeleted" msprop:Generator_RowClassName="AnagPriorRow" msprop:Generator_UserTableName="AnagPrior" msprop:Generator_RowEvArgName="AnagPriorRowChangeEvent">
<xs:complexType>
<xs:sequence>
<xs:element name="idxPriorita" msprop:Generator_ColumnVarNameInTable="columnidxPriorita" msprop:Generator_ColumnPropNameInRow="idxPriorita" msprop:Generator_ColumnPropNameInTable="idxPrioritaColumn" msprop:Generator_UserColumnName="idxPriorita" type="xs:int" />
@@ -1538,7 +1484,7 @@ SELECT idxDoc, idxRichiesta, idxFornitore, numDoc, dataFatt, intervento, Imponib
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="ER_Acts" msprop:Generator_TableClassName="ER_ActsDataTable" msprop:Generator_TableVarName="tableER_Acts" msprop:Generator_RowChangedName="ER_ActsRowChanged" msprop:Generator_TablePropName="ER_Acts" msprop:Generator_RowDeletingName="ER_ActsRowDeleting" msprop:Generator_RowChangingName="ER_ActsRowChanging" msprop:Generator_RowEvHandlerName="ER_ActsRowChangeEventHandler" msprop:Generator_RowDeletedName="ER_ActsRowDeleted" msprop:Generator_RowClassName="ER_ActsRow" msprop:Generator_UserTableName="ER_Acts" msprop:Generator_RowEvArgName="ER_ActsRowChangeEvent">
<xs:element name="ER_Acts" msprop:Generator_TableClassName="ER_ActsDataTable" msprop:Generator_TableVarName="tableER_Acts" msprop:Generator_TablePropName="ER_Acts" msprop:Generator_RowDeletingName="ER_ActsRowDeleting" msprop:Generator_RowChangingName="ER_ActsRowChanging" msprop:Generator_RowEvHandlerName="ER_ActsRowChangeEventHandler" msprop:Generator_RowDeletedName="ER_ActsRowDeleted" msprop:Generator_UserTableName="ER_Acts" msprop:Generator_RowChangedName="ER_ActsRowChanged" msprop:Generator_RowEvArgName="ER_ActsRowChangeEvent" msprop:Generator_RowClassName="ER_ActsRow">
<xs:complexType>
<xs:sequence>
<xs:element name="idxAzione" msprop:Generator_ColumnVarNameInTable="columnidxAzione" msprop:Generator_ColumnPropNameInRow="idxAzione" msprop:Generator_ColumnPropNameInTable="idxAzioneColumn" msprop:Generator_UserColumnName="idxAzione" type="xs:int" />
@@ -1610,7 +1556,7 @@ SELECT idxDoc, idxRichiesta, idxFornitore, numDoc, dataFatt, intervento, Imponib
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="PAZ_DashStats" msprop:Generator_TableClassName="PAZ_DashStatsDataTable" msprop:Generator_TableVarName="tablePAZ_DashStats" msprop:Generator_TablePropName="PAZ_DashStats" msprop:Generator_RowDeletingName="PAZ_DashStatsRowDeleting" msprop:Generator_RowChangingName="PAZ_DashStatsRowChanging" msprop:Generator_RowEvHandlerName="PAZ_DashStatsRowChangeEventHandler" msprop:Generator_RowDeletedName="PAZ_DashStatsRowDeleted" msprop:Generator_UserTableName="PAZ_DashStats" msprop:Generator_RowChangedName="PAZ_DashStatsRowChanged" msprop:Generator_RowEvArgName="PAZ_DashStatsRowChangeEvent" msprop:Generator_RowClassName="PAZ_DashStatsRow">
<xs:element name="PAZ_DashStats" msprop:Generator_TableClassName="PAZ_DashStatsDataTable" msprop:Generator_TableVarName="tablePAZ_DashStats" msprop:Generator_RowChangedName="PAZ_DashStatsRowChanged" msprop:Generator_TablePropName="PAZ_DashStats" msprop:Generator_RowDeletingName="PAZ_DashStatsRowDeleting" msprop:Generator_RowChangingName="PAZ_DashStatsRowChanging" msprop:Generator_RowEvHandlerName="PAZ_DashStatsRowChangeEventHandler" msprop:Generator_RowDeletedName="PAZ_DashStatsRowDeleted" msprop:Generator_RowClassName="PAZ_DashStatsRow" msprop:Generator_UserTableName="PAZ_DashStats" msprop:Generator_RowEvArgName="PAZ_DashStatsRowChangeEvent">
<xs:complexType>
<xs:sequence>
<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" />
@@ -1624,7 +1570,7 @@ SELECT idxDoc, idxRichiesta, idxFornitore, numDoc, dataFatt, intervento, Imponib
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="AnagActs" msprop:Generator_TableClassName="AnagActsDataTable" msprop:Generator_TableVarName="tableAnagActs" msprop:Generator_TablePropName="AnagActs" msprop:Generator_RowDeletingName="AnagActsRowDeleting" msprop:Generator_RowChangingName="AnagActsRowChanging" msprop:Generator_RowEvHandlerName="AnagActsRowChangeEventHandler" msprop:Generator_RowDeletedName="AnagActsRowDeleted" msprop:Generator_UserTableName="AnagActs" msprop:Generator_RowChangedName="AnagActsRowChanged" msprop:Generator_RowEvArgName="AnagActsRowChangeEvent" msprop:Generator_RowClassName="AnagActsRow">
<xs:element name="AnagActs" msprop:Generator_TableClassName="AnagActsDataTable" msprop:Generator_TableVarName="tableAnagActs" msprop:Generator_RowChangedName="AnagActsRowChanged" msprop:Generator_TablePropName="AnagActs" msprop:Generator_RowDeletingName="AnagActsRowDeleting" msprop:Generator_RowChangingName="AnagActsRowChanging" msprop:Generator_RowEvHandlerName="AnagActsRowChangeEventHandler" msprop:Generator_RowDeletedName="AnagActsRowDeleted" msprop:Generator_RowClassName="AnagActsRow" msprop:Generator_UserTableName="AnagActs" msprop:Generator_RowEvArgName="AnagActsRowChangeEvent">
<xs:complexType>
<xs:sequence>
<xs:element name="codAzione" msprop:Generator_ColumnVarNameInTable="columncodAzione" msprop:Generator_ColumnPropNameInRow="codAzione" msprop:Generator_ColumnPropNameInTable="codAzioneColumn" msprop:Generator_UserColumnName="codAzione">
@@ -1672,7 +1618,7 @@ SELECT idxDoc, idxRichiesta, idxFornitore, numDoc, dataFatt, intervento, Imponib
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Fatture" msprop:Generator_TableClassName="FattureDataTable" msprop:Generator_TableVarName="tableFatture" msprop:Generator_RowChangedName="FattureRowChanged" msprop:Generator_TablePropName="Fatture" msprop:Generator_RowDeletingName="FattureRowDeleting" msprop:Generator_RowChangingName="FattureRowChanging" msprop:Generator_RowEvHandlerName="FattureRowChangeEventHandler" msprop:Generator_RowDeletedName="FattureRowDeleted" msprop:Generator_RowClassName="FattureRow" msprop:Generator_UserTableName="Fatture" msprop:Generator_RowEvArgName="FattureRowChangeEvent">
<xs:element name="Fatture" msprop:Generator_TableClassName="FattureDataTable" msprop:Generator_TableVarName="tableFatture" msprop:Generator_TablePropName="Fatture" msprop:Generator_RowDeletingName="FattureRowDeleting" msprop:Generator_RowChangingName="FattureRowChanging" msprop:Generator_RowEvHandlerName="FattureRowChangeEventHandler" msprop:Generator_RowDeletedName="FattureRowDeleted" msprop:Generator_UserTableName="Fatture" msprop:Generator_RowChangedName="FattureRowChanged" msprop:Generator_RowEvArgName="FattureRowChangeEvent" msprop:Generator_RowClassName="FattureRow">
<xs:complexType>
<xs:sequence>
<xs:element name="idxDoc" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnidxDoc" msprop:Generator_ColumnPropNameInRow="idxDoc" msprop:Generator_ColumnPropNameInTable="idxDocColumn" msprop:Generator_UserColumnName="idxDoc" type="xs:int" />
@@ -1754,11 +1700,11 @@ SELECT idxDoc, idxRichiesta, idxFornitore, numDoc, dataFatt, intervento, Imponib
</xs:element>
<xs:annotation>
<xs:appinfo>
<msdata:Relationship name="FK_AnagCondomini_AnagAmministratori" msdata:parent="AnagAmministratori" msdata:child="AnagCondomini" msdata:parentkey="idxAmm" msdata:childkey="idxAmm" msprop:Generator_UserChildTable="AnagCondomini" msprop:Generator_ChildPropName="GetAnagCondominiRows" msprop:Generator_UserRelationName="FK_AnagCondomini_AnagAmministratori" msprop:Generator_RelationVarName="relationFK_AnagCondomini_AnagAmministratori" msprop:Generator_UserParentTable="AnagAmministratori" msprop:Generator_ParentPropName="AnagAmministratoriRow" />
<msdata:Relationship name="RelFornitore2Area_AnagFornitori" msdata:parent="AssF2A" msdata:child="AnagFornitori" msdata:parentkey="idxFornitore" msdata:childkey="idxFornitore" msprop:Generator_UserChildTable="AnagFornitori" msprop:Generator_ChildPropName="GetAnagFornitoriRows" msprop:Generator_UserRelationName="RelFornitore2Area_AnagFornitori" msprop:Generator_RelationVarName="relationRelFornitore2Area_AnagFornitori" msprop:Generator_UserParentTable="AssF2A" msprop:Generator_ParentPropName="AssF2ARow" />
<msdata:Relationship name="AnagAree_RelFornitore2Area" msdata:parent="AnagAree" msdata:child="AssF2A" msdata:parentkey="idxArea" msdata:childkey="idxArea" msprop:Generator_UserChildTable="AssF2A" msprop:Generator_ChildPropName="GetAssF2ARows" msprop:Generator_UserRelationName="AnagAree_RelFornitore2Area" msprop:Generator_ParentPropName="AnagAreeRow" msprop:Generator_RelationVarName="relationAnagAree_RelFornitore2Area" msprop:Generator_UserParentTable="AnagAree" />
<msdata:Relationship name="FK_RelFornitore2Condominio_AnagCondomini" msdata:parent="AnagCondomini" msdata:child="AssF2C" msdata:parentkey="idxCond" msdata:childkey="idxCond" msprop:Generator_UserChildTable="AssF2C" msprop:Generator_ChildPropName="GetAssF2CRows" msprop:Generator_UserRelationName="FK_RelFornitore2Condominio_AnagCondomini" msprop:Generator_RelationVarName="relationFK_RelFornitore2Condominio_AnagCondomini" msprop:Generator_UserParentTable="AnagCondomini" msprop:Generator_ParentPropName="AnagCondominiRow" />
<msdata:Relationship name="FK_RelFornitore2Condominio_AnagFornitori" msdata:parent="AnagFornitori" msdata:child="AssF2C" msdata:parentkey="idxFornitore" msdata:childkey="idxFornitore" msprop:Generator_UserChildTable="AssF2C" msprop:Generator_ChildPropName="GetAssF2CRows" msprop:Generator_UserRelationName="FK_RelFornitore2Condominio_AnagFornitori" msprop:Generator_RelationVarName="relationFK_RelFornitore2Condominio_AnagFornitori" msprop:Generator_UserParentTable="AnagFornitori" msprop:Generator_ParentPropName="AnagFornitoriRow" />
<msdata:Relationship name="FK_AnagCondomini_AnagAmministratori" msdata:parent="AnagAmministratori" msdata:child="AnagCondomini" msdata:parentkey="idxAmm" msdata:childkey="idxAmm" msprop:Generator_UserChildTable="AnagCondomini" msprop:Generator_ChildPropName="GetAnagCondominiRows" msprop:Generator_UserRelationName="FK_AnagCondomini_AnagAmministratori" msprop:Generator_ParentPropName="AnagAmministratoriRow" msprop:Generator_RelationVarName="relationFK_AnagCondomini_AnagAmministratori" msprop:Generator_UserParentTable="AnagAmministratori" />
<msdata:Relationship name="RelFornitore2Area_AnagFornitori" msdata:parent="AssF2A" msdata:child="AnagFornitori" msdata:parentkey="idxFornitore" msdata:childkey="idxFornitore" msprop:Generator_UserChildTable="AnagFornitori" msprop:Generator_ChildPropName="GetAnagFornitoriRows" msprop:Generator_UserRelationName="RelFornitore2Area_AnagFornitori" msprop:Generator_ParentPropName="AssF2ARow" msprop:Generator_RelationVarName="relationRelFornitore2Area_AnagFornitori" msprop:Generator_UserParentTable="AssF2A" />
<msdata:Relationship name="AnagAree_RelFornitore2Area" msdata:parent="AnagAree" msdata:child="AssF2A" msdata:parentkey="idxArea" msdata:childkey="idxArea" msprop:Generator_UserChildTable="AssF2A" msprop:Generator_ChildPropName="GetAssF2ARows" msprop:Generator_UserRelationName="AnagAree_RelFornitore2Area" msprop:Generator_RelationVarName="relationAnagAree_RelFornitore2Area" msprop:Generator_UserParentTable="AnagAree" msprop:Generator_ParentPropName="AnagAreeRow" />
<msdata:Relationship name="FK_RelFornitore2Condominio_AnagCondomini" msdata:parent="AnagCondomini" msdata:child="AssF2C" msdata:parentkey="idxCond" msdata:childkey="idxCond" msprop:Generator_UserChildTable="AssF2C" msprop:Generator_ChildPropName="GetAssF2CRows" msprop:Generator_UserRelationName="FK_RelFornitore2Condominio_AnagCondomini" msprop:Generator_ParentPropName="AnagCondominiRow" msprop:Generator_RelationVarName="relationFK_RelFornitore2Condominio_AnagCondomini" msprop:Generator_UserParentTable="AnagCondomini" />
<msdata:Relationship name="FK_RelFornitore2Condominio_AnagFornitori" msdata:parent="AnagFornitori" msdata:child="AssF2C" msdata:parentkey="idxFornitore" msdata:childkey="idxFornitore" msprop:Generator_UserChildTable="AssF2C" msprop:Generator_ChildPropName="GetAssF2CRows" msprop:Generator_UserRelationName="FK_RelFornitore2Condominio_AnagFornitori" msprop:Generator_ParentPropName="AnagFornitoriRow" msprop:Generator_RelationVarName="relationFK_RelFornitore2Condominio_AnagFornitori" msprop:Generator_UserParentTable="AnagFornitori" />
</xs:appinfo>
</xs:annotation>
</xs:schema>
+25 -25
View File
@@ -6,37 +6,37 @@
</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="6" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout">
<Shapes>
<Shape ID="DesignTable:AnagAmministratori" ZOrder="5" X="55" Y="106" Height="319" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="237" />
<Shape ID="DesignTable:AnagCondomini" ZOrder="21" X="440" Y="70" Height="388" Width="283" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="260" />
<Shape ID="DesignTable:AnagAree" ZOrder="16" X="802" Y="1133" Height="273" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="145" />
<Shape ID="DesignTable:AnagFornitori" ZOrder="19" X="802" Y="466" Height="411" Width="281" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="283" />
<Shape ID="DesignTable:AssF2A" ZOrder="13" X="807" Y="913" Height="181" Width="285" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="99" />
<Shape ID="DesignTable:AssF2C" ZOrder="12" X="815" Y="36" Height="388" Width="216" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="306" />
<Shape ID="DesignTable:PBO_DashStats" ZOrder="11" X="90" Y="465" Height="273" Width="274" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="214" />
<Shape ID="DesignTable:ElencolRich" ZOrder="6" X="58" Y="1104" Height="457" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="306" />
<Shape ID="DesignTable:AnagStati" ZOrder="7" X="89" Y="1588" Height="204" Width="236" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="122" />
<Shape ID="DesignTable:StatoRich" ZOrder="4" X="436" Y="799" Height="250" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="191" />
<Shape ID="DesignTable:PAM_DashStats" ZOrder="10" X="448" Y="467" Height="319" Width="278" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="260" />
<Shape ID="DesignTable:AnagPrior" ZOrder="9" X="858" Y="1438" Height="181" Width="239" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="99" />
<Shape ID="DesignTable:ER_Acts" ZOrder="1" X="444" Y="1115" Height="411" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="306" />
<Shape ID="DesignTable:PAZ_DashStats" ZOrder="8" X="89" Y="758" Height="273" Width="273" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="214" />
<Shape ID="DesignTable:AnagActs" ZOrder="3" X="852" Y="1654" Height="250" Width="234" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="168" />
<Shape ID="DesignTable:Fatture" ZOrder="2" X="449" Y="1539" Height="365" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="214" />
<Shape ID="DesignTable:AnagAmministratori" ZOrder="6" X="55" Y="106" Height="319" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="237" />
<Shape ID="DesignTable:AnagCondomini" ZOrder="1" X="440" Y="51" Height="411" Width="283" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="283" />
<Shape ID="DesignTable:AnagAree" ZOrder="17" X="802" Y="1133" Height="273" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="145" />
<Shape ID="DesignTable:AnagFornitori" ZOrder="20" X="802" Y="466" Height="411" Width="266" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="283" />
<Shape ID="DesignTable:AssF2A" ZOrder="14" X="807" Y="913" Height="181" Width="285" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="99" />
<Shape ID="DesignTable:AssF2C" ZOrder="13" X="815" Y="36" Height="388" Width="216" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="306" />
<Shape ID="DesignTable:PBO_DashStats" ZOrder="12" X="90" Y="465" Height="273" Width="274" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="214" />
<Shape ID="DesignTable:ElencolRich" ZOrder="7" X="58" Y="1104" Height="457" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="306" />
<Shape ID="DesignTable:AnagStati" ZOrder="8" X="89" Y="1588" Height="204" Width="236" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="122" />
<Shape ID="DesignTable:StatoRich" ZOrder="5" X="436" Y="799" Height="250" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="191" />
<Shape ID="DesignTable:PAM_DashStats" ZOrder="11" X="448" Y="467" Height="319" Width="278" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="260" />
<Shape ID="DesignTable:AnagPrior" ZOrder="10" X="858" Y="1438" Height="181" Width="239" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="99" />
<Shape ID="DesignTable:ER_Acts" ZOrder="2" X="444" Y="1115" Height="411" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="306" />
<Shape ID="DesignTable:PAZ_DashStats" ZOrder="9" X="89" Y="758" Height="273" Width="273" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="214" />
<Shape ID="DesignTable:AnagActs" ZOrder="4" X="852" Y="1654" Height="250" Width="234" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="168" />
<Shape ID="DesignTable:Fatture" ZOrder="3" X="449" Y="1539" Height="365" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="214" />
</Shapes>
<Connectors>
<Connector ID="DesignRelation:FK_AnagCondomini_AnagAmministratori" ZOrder="20" LineWidth="11">
<Connector ID="DesignRelation:FK_AnagCondomini_AnagAmministratori" ZOrder="21" LineWidth="11">
<RoutePoints>
<Point>
<X>355</X>
<Y>185</Y>
<Y>166</Y>
</Point>
<Point>
<X>440</X>
<Y>185</Y>
<Y>166</Y>
</Point>
</RoutePoints>
</Connector>
<Connector ID="DesignRelation:RelFornitore2Area_AnagFornitori" ZOrder="18" LineWidth="11">
<Connector ID="DesignRelation:RelFornitore2Area_AnagFornitori" ZOrder="19" LineWidth="11">
<RoutePoints>
<Point>
<X>942</X>
@@ -48,7 +48,7 @@
</Point>
</RoutePoints>
</Connector>
<Connector ID="DesignRelation:AnagAree_RelFornitore2Area" ZOrder="17" LineWidth="11">
<Connector ID="DesignRelation:AnagAree_RelFornitore2Area" ZOrder="18" LineWidth="11">
<RoutePoints>
<Point>
<X>933</X>
@@ -60,19 +60,19 @@
</Point>
</RoutePoints>
</Connector>
<Connector ID="DesignRelation:FK_RelFornitore2Condominio_AnagCondomini" ZOrder="15" LineWidth="11">
<Connector ID="DesignRelation:FK_RelFornitore2Condominio_AnagCondomini" ZOrder="16" LineWidth="11">
<RoutePoints>
<Point>
<X>723</X>
<Y>111</Y>
<Y>92</Y>
</Point>
<Point>
<X>815</X>
<Y>111</Y>
<Y>92</Y>
</Point>
</RoutePoints>
</Connector>
<Connector ID="DesignRelation:FK_RelFornitore2Condominio_AnagFornitori" ZOrder="14" LineWidth="11">
<Connector ID="DesignRelation:FK_RelFornitore2Condominio_AnagFornitori" ZOrder="15" LineWidth="11">
<RoutePoints>
<Point>
<X>967</X>
Vendored
+1 -1
View File
@@ -17,7 +17,7 @@ pipeline {
/* calcolo numero versione... diverso x branch MASTER/DEVELOP */
script {
withEnv(['NEXT_BUILD_NUMBER=189']) {
withEnv(['NEXT_BUILD_NUMBER=191']) {
// env.versionNumber = VersionNumber(versionNumberString : '1.0.${BUILD_DATE_FORMATTED, "yyMM"}.${BUILDS_ALL_TIME}', projectStartDate : '2006-01-01', skipFailedBuilds: true)
env.versionNumber = VersionNumber(versionNumberString : '1.0.${BUILD_DATE_FORMATTED, "yyMM"}.${BUILDS_ALL_TIME}', projectStartDate : '2006-01-01', skipFailedBuilds: true, overrideBuildsAllTime: '${NEXT_BUILD_NUMBER}')
env.APP_NAME = 'SOSCONDOMINI'
+2 -2
View File
@@ -18,9 +18,9 @@
<div class="col my-1">
<asp:LinkButton runat="server" ID="lbtCambiaForn" CssClass="btn btn-sm btn-danger btn-block" OnClick="lbtCambiaForn_Click"><i class="fas fa-sync"></i> Cambia Fornitore</asp:LinkButton>
</div>
<div class="col my-1">
<%--<div class="col my-1">
<asp:LinkButton runat="server" ID="lbtMessaggio" CssClass="btn btn-sm btn-success btn-block" OnClick="lbtMessaggio_Click"><i class="fas fa-pencil-alt"></i> Modifica Messaggio</asp:LinkButton>
</div>
</div> --%>
<div class="col my-1">
<asp:LinkButton runat="server" ID="lbtNota01" CssClass="btn btn-sm btn-success btn-block" OnClick="lbtNota_Click"><i class="fas fa-plus"></i> Aggiungi Nota</asp:LinkButton>
</div>
-9
View File
@@ -66,15 +66,6 @@ namespace PUB.WebUserContols {
/// </remarks>
protected global::System.Web.UI.WebControls.LinkButton lbtCambiaForn;
/// <summary>
/// Controllo lbtMessaggio.
/// </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 lbtMessaggio;
/// <summary>
/// Controllo lbtNota01.
/// </summary>
+1 -1
View File
@@ -3,7 +3,7 @@
<div class="input-group-prepend">
<asp:LinkButton runat="server" ID="lbtResetCond" class="btn btn-outline-secondary" type="button" OnClick="lbtResetCond_Click"><i class="fas fa-ban"></i></asp:LinkButton>
</div>
<asp:DropDownList runat="server" ID="ddlCondominio" DataSourceID="odsCondomini" DataTextField="nome" DataValueField="idxCond" AppendDataBoundItems="true" AutoPostBack="true" OnSelectedIndexChanged="ddlCondominio_SelectedIndexChanged" CssClass="form-control">
<asp:DropDownList runat="server" ID="ddlCondominio" DataSourceID="odsCondomini" DataTextField="nomeFull" DataValueField="idxCond" AppendDataBoundItems="true" AutoPostBack="true" OnSelectedIndexChanged="ddlCondominio_SelectedIndexChanged" CssClass="form-control">
<asp:ListItem Text="-- Selezionare Condominio --" Value="0"></asp:ListItem>
</asp:DropDownList>
<asp:ObjectDataSource runat="server" ID="odsCondomini" SelectMethod="getByForn" TypeName="Data.DS_appTableAdapters.AnagCondominiTableAdapter">