completata integrazione reports con selezione fase/lingua...

This commit is contained in:
Samuele E. Locatelli
2015-06-22 09:52:51 +02:00
parent e98abe8e17
commit 91bc9e44f9
31 changed files with 10305 additions and 121 deletions
+136 -30
View File
@@ -4286,6 +4286,14 @@ namespace CMS_SC_Data {
private global::System.Data.DataColumn columnLSVal;
private global::System.Data.DataColumn columnDescFase;
private global::System.Data.DataColumn columnCliente;
private global::System.Data.DataColumn columnMatrMacchina;
private global::System.Data.DataColumn columnDescMacchina;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public ReportDataDataTable() {
@@ -4479,6 +4487,38 @@ namespace CMS_SC_Data {
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public global::System.Data.DataColumn DescFaseColumn {
get {
return this.columnDescFase;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public global::System.Data.DataColumn ClienteColumn {
get {
return this.columnCliente;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public global::System.Data.DataColumn MatrMacchinaColumn {
get {
return this.columnMatrMacchina;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public global::System.Data.DataColumn DescMacchinaColumn {
get {
return this.columnDescMacchina;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
[global::System.ComponentModel.Browsable(false)]
@@ -4536,7 +4576,11 @@ namespace CMS_SC_Data {
double MinPar,
double MaxPar,
double LIVal,
double LSVal) {
double LSVal,
string DescFase,
string Cliente,
string MatrMacchina,
string DescMacchina) {
ReportDataRow rowReportDataRow = ((ReportDataRow)(this.NewRow()));
object[] columnValuesArray = new object[] {
IdxDossier,
@@ -4558,7 +4602,11 @@ namespace CMS_SC_Data {
MinPar,
MaxPar,
LIVal,
LSVal};
LSVal,
DescFase,
Cliente,
MatrMacchina,
DescMacchina};
rowReportDataRow.ItemArray = columnValuesArray;
this.Rows.Add(rowReportDataRow);
return rowReportDataRow;
@@ -4601,6 +4649,10 @@ namespace CMS_SC_Data {
this.columnMaxPar = base.Columns["MaxPar"];
this.columnLIVal = base.Columns["LIVal"];
this.columnLSVal = base.Columns["LSVal"];
this.columnDescFase = base.Columns["DescFase"];
this.columnCliente = base.Columns["Cliente"];
this.columnMatrMacchina = base.Columns["MatrMacchina"];
this.columnDescMacchina = base.Columns["DescMacchina"];
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
@@ -4646,6 +4698,14 @@ namespace CMS_SC_Data {
base.Columns.Add(this.columnLIVal);
this.columnLSVal = new global::System.Data.DataColumn("LSVal", typeof(double), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnLSVal);
this.columnDescFase = new global::System.Data.DataColumn("DescFase", typeof(string), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnDescFase);
this.columnCliente = new global::System.Data.DataColumn("Cliente", typeof(string), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnCliente);
this.columnMatrMacchina = new global::System.Data.DataColumn("MatrMacchina", typeof(string), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnMatrMacchina);
this.columnDescMacchina = new global::System.Data.DataColumn("DescMacchina", typeof(string), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnDescMacchina);
this.columnIdxDossier.AllowDBNull = false;
this.columnCodSchedaVersNum.ReadOnly = true;
this.columnCodSchedaVersNum.MaxLength = 152;
@@ -4672,6 +4732,13 @@ namespace CMS_SC_Data {
this.columnTipoValMisura.MaxLength = 50;
this.columnNomePar.AllowDBNull = false;
this.columnNomePar.MaxLength = 50;
this.columnDescFase.MaxLength = 50;
this.columnCliente.AllowDBNull = false;
this.columnCliente.MaxLength = 50;
this.columnMatrMacchina.AllowDBNull = false;
this.columnMatrMacchina.MaxLength = 50;
this.columnDescMacchina.AllowDBNull = false;
this.columnDescMacchina.MaxLength = 50;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
@@ -6419,6 +6486,55 @@ namespace CMS_SC_Data {
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public string DescFase {
get {
try {
return ((string)(this[this.tableReportData.DescFaseColumn]));
}
catch (global::System.InvalidCastException e) {
throw new global::System.Data.StrongTypingException("The value for column \'DescFase\' in table \'ReportData\' is DBNull.", e);
}
}
set {
this[this.tableReportData.DescFaseColumn] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public string Cliente {
get {
return ((string)(this[this.tableReportData.ClienteColumn]));
}
set {
this[this.tableReportData.ClienteColumn] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public string MatrMacchina {
get {
return ((string)(this[this.tableReportData.MatrMacchinaColumn]));
}
set {
this[this.tableReportData.MatrMacchinaColumn] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public string DescMacchina {
get {
return ((string)(this[this.tableReportData.DescMacchinaColumn]));
}
set {
this[this.tableReportData.DescMacchinaColumn] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public bool IsCodSchedaVersNumNull() {
@@ -6478,6 +6594,18 @@ namespace CMS_SC_Data {
public void SetLSValNull() {
this[this.tableReportData.LSValColumn] = global::System.Convert.DBNull;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public bool IsDescFaseNull() {
return this.IsNull(this.tableReportData.DescFaseColumn);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public void SetDescFaseNull() {
this[this.tableReportData.DescFaseColumn] = global::System.Convert.DBNull;
}
}
/// <summary>
@@ -11957,6 +12085,10 @@ SELECT IdxDossier, CodScheda, Vers, NumScheda, Descrizione FROM SchemaCollMacc W
tableMapping.ColumnMappings.Add("MaxPar", "MaxPar");
tableMapping.ColumnMappings.Add("LIVal", "LIVal");
tableMapping.ColumnMappings.Add("LSVal", "LSVal");
tableMapping.ColumnMappings.Add("DescFase", "DescFase");
tableMapping.ColumnMappings.Add("Cliente", "Cliente");
tableMapping.ColumnMappings.Add("MatrMacchina", "MatrMacchina");
tableMapping.ColumnMappings.Add("DescMacchina", "DescMacchina");
this._adapter.TableMappings.Add(tableMapping);
}
@@ -11978,15 +12110,13 @@ SELECT IdxDossier, CodScheda, Vers, NumScheda, Descrizione FROM SchemaCollMacc W
this._commandCollection[0].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[0].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IdxDossier", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[0].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Fase", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[0].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Lingua", global::System.Data.SqlDbType.NVarChar, 3, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[0].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@TipoRep", global::System.Data.SqlDbType.NVarChar, 10, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
public virtual int Fill(DS_Applicazione.ReportDataDataTable dataTable, global::System.Nullable<int> IdxDossier, string Fase, string Lingua, string TipoRep) {
public virtual int Fill(DS_Applicazione.ReportDataDataTable dataTable, global::System.Nullable<int> IdxDossier, string Fase) {
this.Adapter.SelectCommand = this.CommandCollection[0];
if ((IdxDossier.HasValue == true)) {
this.Adapter.SelectCommand.Parameters[1].Value = ((int)(IdxDossier.Value));
@@ -12000,18 +12130,6 @@ SELECT IdxDossier, CodScheda, Vers, NumScheda, Descrizione FROM SchemaCollMacc W
else {
this.Adapter.SelectCommand.Parameters[2].Value = ((string)(Fase));
}
if ((Lingua == null)) {
this.Adapter.SelectCommand.Parameters[3].Value = global::System.DBNull.Value;
}
else {
this.Adapter.SelectCommand.Parameters[3].Value = ((string)(Lingua));
}
if ((TipoRep == null)) {
this.Adapter.SelectCommand.Parameters[4].Value = global::System.DBNull.Value;
}
else {
this.Adapter.SelectCommand.Parameters[4].Value = ((string)(TipoRep));
}
if ((this.ClearBeforeFill == true)) {
dataTable.Clear();
}
@@ -12023,7 +12141,7 @@ SELECT IdxDossier, CodScheda, Vers, NumScheda, Descrizione FROM SchemaCollMacc W
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
public virtual DS_Applicazione.ReportDataDataTable GetData(global::System.Nullable<int> IdxDossier, string Fase, string Lingua, string TipoRep) {
public virtual DS_Applicazione.ReportDataDataTable GetData(global::System.Nullable<int> IdxDossier, string Fase) {
this.Adapter.SelectCommand = this.CommandCollection[0];
if ((IdxDossier.HasValue == true)) {
this.Adapter.SelectCommand.Parameters[1].Value = ((int)(IdxDossier.Value));
@@ -12037,18 +12155,6 @@ SELECT IdxDossier, CodScheda, Vers, NumScheda, Descrizione FROM SchemaCollMacc W
else {
this.Adapter.SelectCommand.Parameters[2].Value = ((string)(Fase));
}
if ((Lingua == null)) {
this.Adapter.SelectCommand.Parameters[3].Value = global::System.DBNull.Value;
}
else {
this.Adapter.SelectCommand.Parameters[3].Value = ((string)(Lingua));
}
if ((TipoRep == null)) {
this.Adapter.SelectCommand.Parameters[4].Value = global::System.DBNull.Value;
}
else {
this.Adapter.SelectCommand.Parameters[4].Value = ((string)(TipoRep));
}
DS_Applicazione.ReportDataDataTable dataTable = new DS_Applicazione.ReportDataDataTable();
this.Adapter.Fill(dataTable);
return dataTable;
+54 -24
View File
@@ -1021,7 +1021,7 @@ FROM v_Misure</CommandText>
</TableAdapter>
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="ReportDataTableAdapter" GeneratorDataComponentClassName="ReportDataTableAdapter" Name="ReportData" UserDataComponentName="ReportDataTableAdapter">
<MainSource>
<DbSource ConnectionRef="CMS_SCConnectionString (Settings)" DbObjectName="[CMS-SC].dbo.stp_rep_getDossier" DbObjectType="StoredProcedure" FillMethodModifier="Public" FillMethodName="Fill" GenerateMethods="Both" GenerateShortCommands="true" GeneratorGetMethodName="GetData" GeneratorSourceName="Fill" GetMethodModifier="Public" GetMethodName="GetData" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetData" UserSourceName="Fill">
<DbSource ConnectionRef="CMS_SCConnectionString (Settings)" DbObjectName="[CMS-SC].dbo.stp_rep_getDossier" DbObjectType="StoredProcedure" FillMethodModifier="Public" FillMethodName="Fill" GenerateMethods="Both" GenerateShortCommands="false" GeneratorGetMethodName="GetData" GeneratorSourceName="Fill" GetMethodModifier="Public" GetMethodName="GetData" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="false" UserGetMethodName="GetData" UserSourceName="Fill">
<SelectCommand>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
<CommandText>dbo.stp_rep_getDossier</CommandText>
@@ -1029,8 +1029,6 @@ FROM v_Misure</CommandText>
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="ReturnValue" ParameterName="@RETURN_VALUE" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@IdxDossier" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@Fase" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@Lingua" Precision="0" ProviderType="NVarChar" Scale="0" Size="3" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@TipoRep" Precision="0" ProviderType="NVarChar" Scale="0" Size="10" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</SelectCommand>
@@ -1057,6 +1055,10 @@ FROM v_Misure</CommandText>
<Mapping SourceColumn="MaxPar" DataSetColumn="MaxPar" />
<Mapping SourceColumn="LIVal" DataSetColumn="LIVal" />
<Mapping SourceColumn="LSVal" DataSetColumn="LSVal" />
<Mapping SourceColumn="DescFase" DataSetColumn="DescFase" />
<Mapping SourceColumn="Cliente" DataSetColumn="Cliente" />
<Mapping SourceColumn="MatrMacchina" DataSetColumn="MatrMacchina" />
<Mapping SourceColumn="DescMacchina" DataSetColumn="DescMacchina" />
</Mappings>
<Sources />
</TableAdapter>
@@ -1068,7 +1070,7 @@ FROM v_Misure</CommandText>
<xs:element name="DS_Applicazione" msdata:IsDataSet="true" msdata:UseCurrentLocale="true" msprop:EnableTableAdapterManager="true" msprop:Generator_DataSetName="DS_Applicazione" msprop:Generator_UserDSName="DS_Applicazione">
<xs:complexType>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="ElencoFamMacc" msprop:Generator_TableClassName="ElencoFamMaccDataTable" msprop:Generator_TableVarName="tableElencoFamMacc" msprop:Generator_TablePropName="ElencoFamMacc" msprop:Generator_RowDeletingName="ElencoFamMaccRowDeleting" msprop:Generator_RowChangingName="ElencoFamMaccRowChanging" msprop:Generator_RowEvHandlerName="ElencoFamMaccRowChangeEventHandler" msprop:Generator_RowDeletedName="ElencoFamMaccRowDeleted" msprop:Generator_UserTableName="ElencoFamMacc" msprop:Generator_RowChangedName="ElencoFamMaccRowChanged" msprop:Generator_RowEvArgName="ElencoFamMaccRowChangeEvent" msprop:Generator_RowClassName="ElencoFamMaccRow">
<xs:element name="ElencoFamMacc" msprop:Generator_TableClassName="ElencoFamMaccDataTable" msprop:Generator_TableVarName="tableElencoFamMacc" msprop:Generator_RowChangedName="ElencoFamMaccRowChanged" msprop:Generator_TablePropName="ElencoFamMacc" msprop:Generator_RowDeletingName="ElencoFamMaccRowDeleting" msprop:Generator_RowChangingName="ElencoFamMaccRowChanging" msprop:Generator_RowEvHandlerName="ElencoFamMaccRowChangeEventHandler" msprop:Generator_RowDeletedName="ElencoFamMaccRowDeleted" msprop:Generator_RowClassName="ElencoFamMaccRow" msprop:Generator_UserTableName="ElencoFamMacc" msprop:Generator_RowEvArgName="ElencoFamMaccRowChangeEvent">
<xs:complexType>
<xs:sequence>
<xs:element name="CodFam" msprop:Generator_ColumnVarNameInTable="columnCodFam" msprop:Generator_ColumnPropNameInRow="CodFam" msprop:Generator_ColumnPropNameInTable="CodFamColumn" msprop:Generator_UserColumnName="CodFam">
@@ -1088,7 +1090,7 @@ FROM v_Misure</CommandText>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="ElencoMacchineCN" msprop:Generator_TableClassName="ElencoMacchineCNDataTable" msprop:Generator_TableVarName="tableElencoMacchineCN" msprop:Generator_TablePropName="ElencoMacchineCN" msprop:Generator_RowDeletingName="ElencoMacchineCNRowDeleting" msprop:Generator_RowChangingName="ElencoMacchineCNRowChanging" msprop:Generator_RowEvHandlerName="ElencoMacchineCNRowChangeEventHandler" msprop:Generator_RowDeletedName="ElencoMacchineCNRowDeleted" msprop:Generator_UserTableName="ElencoMacchineCN" msprop:Generator_RowChangedName="ElencoMacchineCNRowChanged" msprop:Generator_RowEvArgName="ElencoMacchineCNRowChangeEvent" msprop:Generator_RowClassName="ElencoMacchineCNRow">
<xs:element name="ElencoMacchineCN" msprop:Generator_TableClassName="ElencoMacchineCNDataTable" msprop:Generator_TableVarName="tableElencoMacchineCN" msprop:Generator_RowChangedName="ElencoMacchineCNRowChanged" msprop:Generator_TablePropName="ElencoMacchineCN" msprop:Generator_RowDeletingName="ElencoMacchineCNRowDeleting" msprop:Generator_RowChangingName="ElencoMacchineCNRowChanging" msprop:Generator_RowEvHandlerName="ElencoMacchineCNRowChangeEventHandler" msprop:Generator_RowDeletedName="ElencoMacchineCNRowDeleted" msprop:Generator_RowClassName="ElencoMacchineCNRow" msprop:Generator_UserTableName="ElencoMacchineCN" msprop:Generator_RowEvArgName="ElencoMacchineCNRowChangeEvent">
<xs:complexType>
<xs:sequence>
<xs:element name="Matricola" msprop:Generator_ColumnVarNameInTable="columnMatricola" msprop:Generator_ColumnPropNameInRow="Matricola" msprop:Generator_ColumnPropNameInTable="MatricolaColumn" msprop:Generator_UserColumnName="Matricola">
@@ -1122,7 +1124,7 @@ FROM v_Misure</CommandText>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="AnagFasi" msprop:Generator_TableClassName="AnagFasiDataTable" msprop:Generator_TableVarName="tableAnagFasi" msprop:Generator_TablePropName="AnagFasi" msprop:Generator_RowDeletingName="AnagFasiRowDeleting" msprop:Generator_RowChangingName="AnagFasiRowChanging" msprop:Generator_RowEvHandlerName="AnagFasiRowChangeEventHandler" msprop:Generator_RowDeletedName="AnagFasiRowDeleted" msprop:Generator_UserTableName="AnagFasi" msprop:Generator_RowChangedName="AnagFasiRowChanged" msprop:Generator_RowEvArgName="AnagFasiRowChangeEvent" msprop:Generator_RowClassName="AnagFasiRow">
<xs:element name="AnagFasi" msprop:Generator_TableClassName="AnagFasiDataTable" msprop:Generator_TableVarName="tableAnagFasi" msprop:Generator_RowChangedName="AnagFasiRowChanged" msprop:Generator_TablePropName="AnagFasi" msprop:Generator_RowDeletingName="AnagFasiRowDeleting" msprop:Generator_RowChangingName="AnagFasiRowChanging" msprop:Generator_RowEvHandlerName="AnagFasiRowChangeEventHandler" msprop:Generator_RowDeletedName="AnagFasiRowDeleted" msprop:Generator_RowClassName="AnagFasiRow" msprop:Generator_UserTableName="AnagFasi" msprop:Generator_RowEvArgName="AnagFasiRowChangeEvent">
<xs:complexType>
<xs:sequence>
<xs:element name="Fase" msprop:Generator_ColumnVarNameInTable="columnFase" msprop:Generator_ColumnPropNameInRow="Fase" msprop:Generator_ColumnPropNameInTable="FaseColumn" msprop:Generator_UserColumnName="Fase">
@@ -1142,7 +1144,7 @@ FROM v_Misure</CommandText>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="AnagSchede" msprop:Generator_TableClassName="AnagSchedeDataTable" msprop:Generator_TableVarName="tableAnagSchede" msprop:Generator_RowChangedName="AnagSchedeRowChanged" msprop:Generator_TablePropName="AnagSchede" msprop:Generator_RowDeletingName="AnagSchedeRowDeleting" msprop:Generator_RowChangingName="AnagSchedeRowChanging" msprop:Generator_RowEvHandlerName="AnagSchedeRowChangeEventHandler" msprop:Generator_RowDeletedName="AnagSchedeRowDeleted" msprop:Generator_RowClassName="AnagSchedeRow" msprop:Generator_UserTableName="AnagSchede" msprop:Generator_RowEvArgName="AnagSchedeRowChangeEvent">
<xs:element name="AnagSchede" msprop:Generator_TableClassName="AnagSchedeDataTable" msprop:Generator_TableVarName="tableAnagSchede" msprop:Generator_TablePropName="AnagSchede" msprop:Generator_RowDeletingName="AnagSchedeRowDeleting" msprop:Generator_RowChangingName="AnagSchedeRowChanging" msprop:Generator_RowEvHandlerName="AnagSchedeRowChangeEventHandler" msprop:Generator_RowDeletedName="AnagSchedeRowDeleted" msprop:Generator_UserTableName="AnagSchede" msprop:Generator_RowChangedName="AnagSchedeRowChanged" msprop:Generator_RowEvArgName="AnagSchedeRowChangeEvent" msprop:Generator_RowClassName="AnagSchedeRow">
<xs:complexType>
<xs:sequence>
<xs:element name="CodScheda" msprop:Generator_ColumnVarNameInTable="columnCodScheda" msprop:Generator_ColumnPropNameInRow="CodScheda" msprop:Generator_ColumnPropNameInTable="CodSchedaColumn" msprop:Generator_UserColumnName="CodScheda">
@@ -1170,7 +1172,7 @@ FROM v_Misure</CommandText>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DettScheda" msprop:Generator_TableClassName="DettSchedaDataTable" msprop:Generator_TableVarName="tableDettScheda" msprop:Generator_TablePropName="DettScheda" msprop:Generator_RowDeletingName="DettSchedaRowDeleting" msprop:Generator_RowChangingName="DettSchedaRowChanging" msprop:Generator_RowEvHandlerName="DettSchedaRowChangeEventHandler" msprop:Generator_RowDeletedName="DettSchedaRowDeleted" msprop:Generator_UserTableName="DettScheda" msprop:Generator_RowChangedName="DettSchedaRowChanged" msprop:Generator_RowEvArgName="DettSchedaRowChangeEvent" msprop:Generator_RowClassName="DettSchedaRow">
<xs:element name="DettScheda" msprop:Generator_TableClassName="DettSchedaDataTable" msprop:Generator_TableVarName="tableDettScheda" msprop:Generator_RowChangedName="DettSchedaRowChanged" msprop:Generator_TablePropName="DettScheda" msprop:Generator_RowDeletingName="DettSchedaRowDeleting" msprop:Generator_RowChangingName="DettSchedaRowChanging" msprop:Generator_RowEvHandlerName="DettSchedaRowChangeEventHandler" msprop:Generator_RowDeletedName="DettSchedaRowDeleted" msprop:Generator_RowClassName="DettSchedaRow" msprop:Generator_UserTableName="DettScheda" msprop:Generator_RowEvArgName="DettSchedaRowChangeEvent">
<xs:complexType>
<xs:sequence>
<xs:element name="CodScheda" msprop:Generator_ColumnVarNameInTable="columnCodScheda" msprop:Generator_ColumnPropNameInRow="CodScheda" msprop:Generator_ColumnPropNameInTable="CodSchedaColumn" msprop:Generator_UserColumnName="CodScheda">
@@ -1212,7 +1214,7 @@ FROM v_Misure</CommandText>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="ValidVal" msprop:Generator_TableClassName="ValidValDataTable" msprop:Generator_TableVarName="tableValidVal" msprop:Generator_TablePropName="ValidVal" msprop:Generator_RowDeletingName="ValidValRowDeleting" msprop:Generator_RowChangingName="ValidValRowChanging" msprop:Generator_RowEvHandlerName="ValidValRowChangeEventHandler" msprop:Generator_RowDeletedName="ValidValRowDeleted" msprop:Generator_UserTableName="ValidVal" msprop:Generator_RowChangedName="ValidValRowChanged" msprop:Generator_RowEvArgName="ValidValRowChangeEvent" msprop:Generator_RowClassName="ValidValRow">
<xs:element name="ValidVal" msprop:Generator_TableClassName="ValidValDataTable" msprop:Generator_TableVarName="tableValidVal" msprop:Generator_RowChangedName="ValidValRowChanged" msprop:Generator_TablePropName="ValidVal" msprop:Generator_RowDeletingName="ValidValRowDeleting" msprop:Generator_RowChangingName="ValidValRowChanging" msprop:Generator_RowEvHandlerName="ValidValRowChangeEventHandler" msprop:Generator_RowDeletedName="ValidValRowDeleted" msprop:Generator_RowClassName="ValidValRow" msprop:Generator_UserTableName="ValidVal" msprop:Generator_RowEvArgName="ValidValRowChangeEvent">
<xs:complexType>
<xs:sequence>
<xs:element name="CodScheda" msprop:Generator_ColumnVarNameInTable="columnCodScheda" msprop:Generator_ColumnPropNameInRow="CodScheda" msprop:Generator_ColumnPropNameInTable="CodSchedaColumn" msprop:Generator_UserColumnName="CodScheda">
@@ -1237,7 +1239,7 @@ FROM v_Misure</CommandText>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="SchemaCollFamMacc" msprop:Generator_TableClassName="SchemaCollFamMaccDataTable" msprop:Generator_TableVarName="tableSchemaCollFamMacc" msprop:Generator_TablePropName="SchemaCollFamMacc" msprop:Generator_RowDeletingName="SchemaCollFamMaccRowDeleting" msprop:Generator_RowChangingName="SchemaCollFamMaccRowChanging" msprop:Generator_RowEvHandlerName="SchemaCollFamMaccRowChangeEventHandler" msprop:Generator_RowDeletedName="SchemaCollFamMaccRowDeleted" msprop:Generator_UserTableName="SchemaCollFamMacc" msprop:Generator_RowChangedName="SchemaCollFamMaccRowChanged" msprop:Generator_RowEvArgName="SchemaCollFamMaccRowChangeEvent" msprop:Generator_RowClassName="SchemaCollFamMaccRow">
<xs:element name="SchemaCollFamMacc" msprop:Generator_TableClassName="SchemaCollFamMaccDataTable" msprop:Generator_TableVarName="tableSchemaCollFamMacc" msprop:Generator_RowChangedName="SchemaCollFamMaccRowChanged" msprop:Generator_TablePropName="SchemaCollFamMacc" msprop:Generator_RowDeletingName="SchemaCollFamMaccRowDeleting" msprop:Generator_RowChangingName="SchemaCollFamMaccRowChanging" msprop:Generator_RowEvHandlerName="SchemaCollFamMaccRowChangeEventHandler" msprop:Generator_RowDeletedName="SchemaCollFamMaccRowDeleted" msprop:Generator_RowClassName="SchemaCollFamMaccRow" msprop:Generator_UserTableName="SchemaCollFamMacc" msprop:Generator_RowEvArgName="SchemaCollFamMaccRowChangeEvent">
<xs:complexType>
<xs:sequence>
<xs:element name="CodFam" msprop:Generator_ColumnVarNameInTable="columnCodFam" msprop:Generator_ColumnPropNameInRow="CodFam" msprop:Generator_ColumnPropNameInTable="CodFamColumn" msprop:Generator_UserColumnName="CodFam">
@@ -1287,7 +1289,7 @@ FROM v_Misure</CommandText>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="ElencoDossier" msprop:Generator_TableClassName="ElencoDossierDataTable" msprop:Generator_TableVarName="tableElencoDossier" msprop:Generator_RowChangedName="ElencoDossierRowChanged" msprop:Generator_TablePropName="ElencoDossier" msprop:Generator_RowDeletingName="ElencoDossierRowDeleting" msprop:Generator_RowChangingName="ElencoDossierRowChanging" msprop:Generator_RowEvHandlerName="ElencoDossierRowChangeEventHandler" msprop:Generator_RowDeletedName="ElencoDossierRowDeleted" msprop:Generator_RowClassName="ElencoDossierRow" msprop:Generator_UserTableName="ElencoDossier" msprop:Generator_RowEvArgName="ElencoDossierRowChangeEvent">
<xs:element name="ElencoDossier" msprop:Generator_TableClassName="ElencoDossierDataTable" msprop:Generator_TableVarName="tableElencoDossier" msprop:Generator_TablePropName="ElencoDossier" msprop:Generator_RowDeletingName="ElencoDossierRowDeleting" msprop:Generator_RowChangingName="ElencoDossierRowChanging" msprop:Generator_RowEvHandlerName="ElencoDossierRowChangeEventHandler" msprop:Generator_RowDeletedName="ElencoDossierRowDeleted" msprop:Generator_UserTableName="ElencoDossier" msprop:Generator_RowChangedName="ElencoDossierRowChanged" msprop:Generator_RowEvArgName="ElencoDossierRowChangeEvent" msprop:Generator_RowClassName="ElencoDossierRow">
<xs:complexType>
<xs:sequence>
<xs:element name="IdxDossier" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnIdxDossier" msprop:Generator_ColumnPropNameInRow="IdxDossier" msprop:Generator_ColumnPropNameInTable="IdxDossierColumn" msprop:Generator_UserColumnName="IdxDossier" type="xs:int" />
@@ -1326,7 +1328,7 @@ FROM v_Misure</CommandText>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="SchemaCollMacc" msprop:Generator_TableClassName="SchemaCollMaccDataTable" msprop:Generator_TableVarName="tableSchemaCollMacc" msprop:Generator_RowChangedName="SchemaCollMaccRowChanged" msprop:Generator_TablePropName="SchemaCollMacc" msprop:Generator_RowDeletingName="SchemaCollMaccRowDeleting" msprop:Generator_RowChangingName="SchemaCollMaccRowChanging" msprop:Generator_RowEvHandlerName="SchemaCollMaccRowChangeEventHandler" msprop:Generator_RowDeletedName="SchemaCollMaccRowDeleted" msprop:Generator_RowClassName="SchemaCollMaccRow" msprop:Generator_UserTableName="SchemaCollMacc" msprop:Generator_RowEvArgName="SchemaCollMaccRowChangeEvent">
<xs:element name="SchemaCollMacc" msprop:Generator_TableClassName="SchemaCollMaccDataTable" msprop:Generator_TableVarName="tableSchemaCollMacc" msprop:Generator_TablePropName="SchemaCollMacc" msprop:Generator_RowDeletingName="SchemaCollMaccRowDeleting" msprop:Generator_RowChangingName="SchemaCollMaccRowChanging" msprop:Generator_RowEvHandlerName="SchemaCollMaccRowChangeEventHandler" msprop:Generator_RowDeletedName="SchemaCollMaccRowDeleted" msprop:Generator_UserTableName="SchemaCollMacc" msprop:Generator_RowChangedName="SchemaCollMaccRowChanged" msprop:Generator_RowEvArgName="SchemaCollMaccRowChangeEvent" msprop:Generator_RowClassName="SchemaCollMaccRow">
<xs:complexType>
<xs:sequence>
<xs:element name="IdxDossier" msprop:Generator_ColumnVarNameInTable="columnIdxDossier" msprop:Generator_ColumnPropNameInRow="IdxDossier" msprop:Generator_ColumnPropNameInTable="IdxDossierColumn" msprop:Generator_UserColumnName="IdxDossier" type="xs:int" />
@@ -1349,7 +1351,7 @@ FROM v_Misure</CommandText>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Misure" msprop:Generator_TableClassName="MisureDataTable" msprop:Generator_TableVarName="tableMisure" msprop:Generator_RowChangedName="MisureRowChanged" msprop:Generator_TablePropName="Misure" msprop:Generator_RowDeletingName="MisureRowDeleting" msprop:Generator_RowChangingName="MisureRowChanging" msprop:Generator_RowEvHandlerName="MisureRowChangeEventHandler" msprop:Generator_RowDeletedName="MisureRowDeleted" msprop:Generator_RowClassName="MisureRow" msprop:Generator_UserTableName="Misure" msprop:Generator_RowEvArgName="MisureRowChangeEvent">
<xs:element name="Misure" msprop:Generator_TableClassName="MisureDataTable" msprop:Generator_TableVarName="tableMisure" msprop:Generator_TablePropName="Misure" msprop:Generator_RowDeletingName="MisureRowDeleting" msprop:Generator_RowChangingName="MisureRowChanging" msprop:Generator_RowEvHandlerName="MisureRowChangeEventHandler" msprop:Generator_RowDeletedName="MisureRowDeleted" msprop:Generator_UserTableName="Misure" msprop:Generator_RowChangedName="MisureRowChanged" msprop:Generator_RowEvArgName="MisureRowChangeEvent" msprop:Generator_RowClassName="MisureRow">
<xs:complexType>
<xs:sequence>
<xs:element name="IdxDossier" msprop:Generator_ColumnVarNameInTable="columnIdxDossier" msprop:Generator_ColumnPropNameInRow="IdxDossier" msprop:Generator_ColumnPropNameInTable="IdxDossierColumn" msprop:Generator_UserColumnName="IdxDossier" type="xs:int" />
@@ -1435,7 +1437,7 @@ FROM v_Misure</CommandText>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="ReportData" msprop:Generator_TableClassName="ReportDataDataTable" msprop:Generator_TableVarName="tableReportData" msprop:Generator_TablePropName="ReportData" msprop:Generator_RowDeletingName="ReportDataRowDeleting" msprop:Generator_RowChangingName="ReportDataRowChanging" msprop:Generator_RowEvHandlerName="ReportDataRowChangeEventHandler" msprop:Generator_RowDeletedName="ReportDataRowDeleted" msprop:Generator_UserTableName="ReportData" msprop:Generator_RowChangedName="ReportDataRowChanged" msprop:Generator_RowEvArgName="ReportDataRowChangeEvent" msprop:Generator_RowClassName="ReportDataRow">
<xs:element name="ReportData" msprop:Generator_TableClassName="ReportDataDataTable" msprop:Generator_TableVarName="tableReportData" msprop:Generator_RowChangedName="ReportDataRowChanged" msprop:Generator_TablePropName="ReportData" msprop:Generator_RowDeletingName="ReportDataRowDeleting" msprop:Generator_RowChangingName="ReportDataRowChanging" msprop:Generator_RowEvHandlerName="ReportDataRowChangeEventHandler" msprop:Generator_RowDeletedName="ReportDataRowDeleted" msprop:Generator_RowClassName="ReportDataRow" msprop:Generator_UserTableName="ReportData" msprop:Generator_RowEvArgName="ReportDataRowChangeEvent">
<xs:complexType>
<xs:sequence>
<xs:element name="IdxDossier" msprop:Generator_ColumnVarNameInTable="columnIdxDossier" msprop:Generator_ColumnPropNameInRow="IdxDossier" msprop:Generator_ColumnPropNameInTable="IdxDossierColumn" msprop:Generator_UserColumnName="IdxDossier" type="xs:int" />
@@ -1518,6 +1520,34 @@ FROM v_Misure</CommandText>
<xs:element name="MaxPar" msprop:Generator_ColumnVarNameInTable="columnMaxPar" msprop:Generator_ColumnPropNameInRow="MaxPar" msprop:Generator_ColumnPropNameInTable="MaxParColumn" msprop:Generator_UserColumnName="MaxPar" type="xs:double" minOccurs="0" />
<xs:element name="LIVal" msprop:Generator_ColumnVarNameInTable="columnLIVal" msprop:Generator_ColumnPropNameInRow="LIVal" msprop:Generator_ColumnPropNameInTable="LIValColumn" msprop:Generator_UserColumnName="LIVal" type="xs:double" minOccurs="0" />
<xs:element name="LSVal" msprop:Generator_ColumnVarNameInTable="columnLSVal" msprop:Generator_ColumnPropNameInRow="LSVal" msprop:Generator_ColumnPropNameInTable="LSValColumn" msprop:Generator_UserColumnName="LSVal" type="xs:double" minOccurs="0" />
<xs:element name="DescFase" msprop:Generator_ColumnVarNameInTable="columnDescFase" msprop:Generator_ColumnPropNameInRow="DescFase" msprop:Generator_ColumnPropNameInTable="DescFaseColumn" msprop:Generator_UserColumnName="DescFase" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Cliente" msprop:Generator_ColumnVarNameInTable="columnCliente" msprop:Generator_ColumnPropNameInRow="Cliente" msprop:Generator_ColumnPropNameInTable="ClienteColumn" msprop:Generator_UserColumnName="Cliente">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="MatrMacchina" msprop:Generator_ColumnVarNameInTable="columnMatrMacchina" msprop:Generator_ColumnPropNameInRow="MatrMacchina" msprop:Generator_ColumnPropNameInTable="MatrMacchinaColumn" msprop:Generator_UserColumnName="MatrMacchina">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="DescMacchina" msprop:Generator_ColumnVarNameInTable="columnDescMacchina" msprop:Generator_ColumnPropNameInRow="DescMacchina" msprop:Generator_ColumnPropNameInTable="DescMacchinaColumn" msprop:Generator_UserColumnName="DescMacchina">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
@@ -1582,16 +1612,16 @@ FROM v_Misure</CommandText>
</xs:element>
<xs:annotation>
<xs:appinfo>
<msdata:Relationship name="FK_DettScheda_AnagSchede1" msdata:parent="AnagSchede" msdata:child="DettScheda" msdata:parentkey="CodScheda Vers" msdata:childkey="CodScheda Vers" msprop:Generator_UserChildTable="DettScheda" msprop:Generator_ChildPropName="GetDettSchedaRows" msprop:Generator_UserRelationName="FK_DettScheda_AnagSchede1" msprop:Generator_ParentPropName="AnagSchedeRowParent" msprop:Generator_RelationVarName="relationFK_DettScheda_AnagSchede1" msprop:Generator_UserParentTable="AnagSchede" />
<msdata:Relationship name="FK_ElencoMacchineCN_ElencoFamMacc" msdata:parent="ElencoFamMacc" msdata:child="ElencoMacchineCN" msdata:parentkey="CodFam" msdata:childkey="CodFam" msprop:Generator_UserChildTable="ElencoMacchineCN" msprop:Generator_ChildPropName="GetElencoMacchineCNRows" msprop:Generator_UserRelationName="FK_ElencoMacchineCN_ElencoFamMacc" msprop:Generator_ParentPropName="ElencoFamMaccRow" msprop:Generator_RelationVarName="relationFK_ElencoMacchineCN_ElencoFamMacc" msprop:Generator_UserParentTable="ElencoFamMacc" />
<msdata:Relationship name="FK_ValidVal_DettScheda" msdata:parent="DettScheda" msdata:child="ValidVal" msdata:parentkey="CodScheda Vers CodMisura" msdata:childkey="CodScheda Vers CodMisura" msprop:Generator_UserChildTable="ValidVal" msprop:Generator_ChildPropName="GetValidValRows" msprop:Generator_UserRelationName="FK_ValidVal_DettScheda" msprop:Generator_ParentPropName="DettSchedaRowParent" msprop:Generator_RelationVarName="relationFK_ValidVal_DettScheda" msprop:Generator_UserParentTable="DettScheda" />
<msdata:Relationship name="FK_SchemaCollFamMacc_AnagSchede1" msdata:parent="AnagSchede" msdata:child="SchemaCollFamMacc" msdata:parentkey="CodScheda Vers" msdata:childkey="CodScheda Vers" msprop:Generator_UserChildTable="SchemaCollFamMacc" msprop:Generator_ChildPropName="GetSchemaCollFamMaccRows" msprop:Generator_UserRelationName="FK_SchemaCollFamMacc_AnagSchede1" msprop:Generator_ParentPropName="AnagSchedeRowParent" msprop:Generator_RelationVarName="relationFK_SchemaCollFamMacc_AnagSchede1" msprop:Generator_UserParentTable="AnagSchede" />
<msdata:Relationship name="FK_SchemaCollFamMacc_ElencoFamMacc" msdata:parent="ElencoFamMacc" msdata:child="SchemaCollFamMacc" msdata:parentkey="CodFam" msdata:childkey="CodFam" msprop:Generator_UserChildTable="SchemaCollFamMacc" msprop:Generator_ChildPropName="GetSchemaCollFamMaccRows" msprop:Generator_UserRelationName="FK_SchemaCollFamMacc_ElencoFamMacc" msprop:Generator_ParentPropName="ElencoFamMaccRow" msprop:Generator_RelationVarName="relationFK_SchemaCollFamMacc_ElencoFamMacc" msprop:Generator_UserParentTable="ElencoFamMacc" />
<msdata:Relationship name="FK_ElencoDossier_ElencoMacchineCN" msdata:parent="ElencoMacchineCN" msdata:child="ElencoDossier" msdata:parentkey="Matricola" msdata:childkey="Matricola" msprop:Generator_UserChildTable="ElencoDossier" msprop:Generator_ChildPropName="GetElencoDossierRows" msprop:Generator_UserRelationName="FK_ElencoDossier_ElencoMacchineCN" msprop:Generator_RelationVarName="relationFK_ElencoDossier_ElencoMacchineCN" msprop:Generator_UserParentTable="ElencoMacchineCN" msprop:Generator_ParentPropName="ElencoMacchineCNRow" />
<msdata:Relationship name="FK_SchemaCollMacc_AnagSchede" msdata:parent="AnagSchede" msdata:child="SchemaCollMacc" msdata:parentkey="CodScheda Vers" msdata:childkey="CodScheda Vers" msprop:Generator_UserChildTable="SchemaCollMacc" msprop:Generator_ChildPropName="GetSchemaCollMaccRows" msprop:Generator_UserRelationName="FK_SchemaCollMacc_AnagSchede" msprop:Generator_RelationVarName="relationFK_SchemaCollMacc_AnagSchede" msprop:Generator_UserParentTable="AnagSchede" msprop:Generator_ParentPropName="AnagSchedeRowParent" />
<msdata:Relationship name="FK_SchemaCollMacc_ElencoDossier" msdata:parent="ElencoDossier" msdata:child="SchemaCollMacc" msdata:parentkey="IdxDossier" msdata:childkey="IdxDossier" msprop:Generator_UserChildTable="SchemaCollMacc" msprop:Generator_ChildPropName="GetSchemaCollMaccRows" msprop:Generator_UserRelationName="FK_SchemaCollMacc_ElencoDossier" msprop:Generator_RelationVarName="relationFK_SchemaCollMacc_ElencoDossier" msprop:Generator_UserParentTable="ElencoDossier" msprop:Generator_ParentPropName="ElencoDossierRow" />
<msdata:Relationship name="FK_IstanzeMisura_AnagFasi1" msdata:parent="AnagFasi" msdata:child="Misure" msdata:parentkey="Fase" msdata:childkey="Fase" msprop:Generator_UserChildTable="Misure" msprop:Generator_ChildPropName="GetMisureRows" msprop:Generator_UserRelationName="FK_IstanzeMisura_AnagFasi1" msprop:Generator_RelationVarName="relationFK_IstanzeMisura_AnagFasi1" msprop:Generator_UserParentTable="AnagFasi" msprop:Generator_ParentPropName="AnagFasiRow" />
<msdata:Relationship name="FK_Misure_SchemaCollMacc1" msdata:parent="SchemaCollMacc" msdata:child="Misure" msdata:parentkey="IdxDossier CodScheda Vers NumScheda" msdata:childkey="IdxDossier CodScheda Vers NumScheda" msprop:Generator_UserChildTable="Misure" msprop:Generator_ChildPropName="GetMisureRows" msprop:Generator_UserRelationName="FK_Misure_SchemaCollMacc1" msprop:Generator_RelationVarName="relationFK_Misure_SchemaCollMacc1" msprop:Generator_UserParentTable="SchemaCollMacc" msprop:Generator_ParentPropName="SchemaCollMaccRowParent" />
<msdata:Relationship name="FK_DettScheda_AnagSchede1" msdata:parent="AnagSchede" msdata:child="DettScheda" msdata:parentkey="CodScheda Vers" msdata:childkey="CodScheda Vers" msprop:Generator_UserChildTable="DettScheda" msprop:Generator_ChildPropName="GetDettSchedaRows" msprop:Generator_UserRelationName="FK_DettScheda_AnagSchede1" msprop:Generator_RelationVarName="relationFK_DettScheda_AnagSchede1" msprop:Generator_UserParentTable="AnagSchede" msprop:Generator_ParentPropName="AnagSchedeRowParent" />
<msdata:Relationship name="FK_ElencoMacchineCN_ElencoFamMacc" msdata:parent="ElencoFamMacc" msdata:child="ElencoMacchineCN" msdata:parentkey="CodFam" msdata:childkey="CodFam" msprop:Generator_UserChildTable="ElencoMacchineCN" msprop:Generator_ChildPropName="GetElencoMacchineCNRows" msprop:Generator_UserRelationName="FK_ElencoMacchineCN_ElencoFamMacc" msprop:Generator_RelationVarName="relationFK_ElencoMacchineCN_ElencoFamMacc" msprop:Generator_UserParentTable="ElencoFamMacc" msprop:Generator_ParentPropName="ElencoFamMaccRow" />
<msdata:Relationship name="FK_ValidVal_DettScheda" msdata:parent="DettScheda" msdata:child="ValidVal" msdata:parentkey="CodScheda Vers CodMisura" msdata:childkey="CodScheda Vers CodMisura" msprop:Generator_UserChildTable="ValidVal" msprop:Generator_ChildPropName="GetValidValRows" msprop:Generator_UserRelationName="FK_ValidVal_DettScheda" msprop:Generator_RelationVarName="relationFK_ValidVal_DettScheda" msprop:Generator_UserParentTable="DettScheda" msprop:Generator_ParentPropName="DettSchedaRowParent" />
<msdata:Relationship name="FK_SchemaCollFamMacc_AnagSchede1" msdata:parent="AnagSchede" msdata:child="SchemaCollFamMacc" msdata:parentkey="CodScheda Vers" msdata:childkey="CodScheda Vers" msprop:Generator_UserChildTable="SchemaCollFamMacc" msprop:Generator_ChildPropName="GetSchemaCollFamMaccRows" msprop:Generator_UserRelationName="FK_SchemaCollFamMacc_AnagSchede1" msprop:Generator_RelationVarName="relationFK_SchemaCollFamMacc_AnagSchede1" msprop:Generator_UserParentTable="AnagSchede" msprop:Generator_ParentPropName="AnagSchedeRowParent" />
<msdata:Relationship name="FK_SchemaCollFamMacc_ElencoFamMacc" msdata:parent="ElencoFamMacc" msdata:child="SchemaCollFamMacc" msdata:parentkey="CodFam" msdata:childkey="CodFam" msprop:Generator_UserChildTable="SchemaCollFamMacc" msprop:Generator_ChildPropName="GetSchemaCollFamMaccRows" msprop:Generator_UserRelationName="FK_SchemaCollFamMacc_ElencoFamMacc" msprop:Generator_RelationVarName="relationFK_SchemaCollFamMacc_ElencoFamMacc" msprop:Generator_UserParentTable="ElencoFamMacc" msprop:Generator_ParentPropName="ElencoFamMaccRow" />
<msdata:Relationship name="FK_ElencoDossier_ElencoMacchineCN" msdata:parent="ElencoMacchineCN" msdata:child="ElencoDossier" msdata:parentkey="Matricola" msdata:childkey="Matricola" msprop:Generator_UserChildTable="ElencoDossier" msprop:Generator_ChildPropName="GetElencoDossierRows" msprop:Generator_UserRelationName="FK_ElencoDossier_ElencoMacchineCN" msprop:Generator_ParentPropName="ElencoMacchineCNRow" msprop:Generator_RelationVarName="relationFK_ElencoDossier_ElencoMacchineCN" msprop:Generator_UserParentTable="ElencoMacchineCN" />
<msdata:Relationship name="FK_SchemaCollMacc_AnagSchede" msdata:parent="AnagSchede" msdata:child="SchemaCollMacc" msdata:parentkey="CodScheda Vers" msdata:childkey="CodScheda Vers" msprop:Generator_UserChildTable="SchemaCollMacc" msprop:Generator_ChildPropName="GetSchemaCollMaccRows" msprop:Generator_UserRelationName="FK_SchemaCollMacc_AnagSchede" msprop:Generator_ParentPropName="AnagSchedeRowParent" msprop:Generator_RelationVarName="relationFK_SchemaCollMacc_AnagSchede" msprop:Generator_UserParentTable="AnagSchede" />
<msdata:Relationship name="FK_SchemaCollMacc_ElencoDossier" msdata:parent="ElencoDossier" msdata:child="SchemaCollMacc" msdata:parentkey="IdxDossier" msdata:childkey="IdxDossier" msprop:Generator_UserChildTable="SchemaCollMacc" msprop:Generator_ChildPropName="GetSchemaCollMaccRows" msprop:Generator_UserRelationName="FK_SchemaCollMacc_ElencoDossier" msprop:Generator_ParentPropName="ElencoDossierRow" msprop:Generator_RelationVarName="relationFK_SchemaCollMacc_ElencoDossier" msprop:Generator_UserParentTable="ElencoDossier" />
<msdata:Relationship name="FK_IstanzeMisura_AnagFasi1" msdata:parent="AnagFasi" msdata:child="Misure" msdata:parentkey="Fase" msdata:childkey="Fase" msprop:Generator_UserChildTable="Misure" msprop:Generator_ChildPropName="GetMisureRows" msprop:Generator_UserRelationName="FK_IstanzeMisura_AnagFasi1" msprop:Generator_ParentPropName="AnagFasiRow" msprop:Generator_RelationVarName="relationFK_IstanzeMisura_AnagFasi1" msprop:Generator_UserParentTable="AnagFasi" />
<msdata:Relationship name="FK_Misure_SchemaCollMacc1" msdata:parent="SchemaCollMacc" msdata:child="Misure" msdata:parentkey="IdxDossier CodScheda Vers NumScheda" msdata:childkey="IdxDossier CodScheda Vers NumScheda" msprop:Generator_UserChildTable="Misure" msprop:Generator_ChildPropName="GetMisureRows" msprop:Generator_UserRelationName="FK_Misure_SchemaCollMacc1" msprop:Generator_ParentPropName="SchemaCollMaccRowParent" msprop:Generator_RelationVarName="relationFK_Misure_SchemaCollMacc1" msprop:Generator_UserParentTable="SchemaCollMacc" />
</xs:appinfo>
</xs:annotation>
</xs:schema>
+1 -1
View File
@@ -16,7 +16,7 @@
<Shape ID="DesignTable:ElencoDossier" ZOrder="10" X="1068" Y="251" Height="267" Width="225" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="197" />
<Shape ID="DesignTable:SchemaCollMacc" ZOrder="5" X="744" Y="249" Height="248" Width="233" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="121" />
<Shape ID="DesignTable:Misure" ZOrder="4" X="750" Y="562" Height="381" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:ReportData" ZOrder="1" X="410" Y="783" Height="305" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:ReportData" ZOrder="1" X="410" Y="783" Height="305" Width="211" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
</Shapes>
<Connectors>
<Connector ID="DesignRelation:FK_DettScheda_AnagSchede1" ZOrder="20" LineWidth="11">
+874
View File
File diff suppressed because it is too large Load Diff
+106 -8
View File
@@ -308,6 +308,72 @@ SELECT TableName, FieldName, value, label, ordinal FROM ListValues WHERE (FieldN
</Mappings>
<Sources />
</TableAdapter>
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="VocabolarioTableAdapter" GeneratorDataComponentClassName="VocabolarioTableAdapter" Name="Vocabolario" UserDataComponentName="VocabolarioTableAdapter">
<MainSource>
<DbSource ConnectionRef="CMS_SCConnectionString (Settings)" DbObjectName="[CMS-SC].dbo.Vocabolario" 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].[Vocabolario] WHERE (([Lingua] = @Original_Lingua) AND ([Lemma] = @Original_Lemma) AND ([Traduzione] = @Original_Traduzione))</CommandText>
<Parameters>
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Lingua" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Lingua" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Lemma" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Lemma" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Traduzione" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Traduzione" SourceColumnNullMapping="false" SourceVersion="Original" />
</Parameters>
</DbCommand>
</DeleteCommand>
<InsertCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>INSERT INTO [dbo].[Vocabolario] ([Lingua], [Lemma], [Traduzione]) VALUES (@Lingua, @Lemma, @Traduzione);
SELECT Lingua, Lemma, Traduzione FROM Vocabolario WHERE (Lemma = @Lemma) AND (Lingua = @Lingua)</CommandText>
<Parameters>
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Lingua" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Lingua" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Lemma" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Lemma" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Traduzione" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Traduzione" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</InsertCommand>
<SelectCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>SELECT Lingua, Lemma, Traduzione FROM dbo.Vocabolario</CommandText>
<Parameters />
</DbCommand>
</SelectCommand>
<UpdateCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>UPDATE [dbo].[Vocabolario] SET [Lingua] = @Lingua, [Lemma] = @Lemma, [Traduzione] = @Traduzione WHERE (([Lingua] = @Original_Lingua) AND ([Lemma] = @Original_Lemma) AND ([Traduzione] = @Original_Traduzione));
SELECT Lingua, Lemma, Traduzione FROM Vocabolario WHERE (Lemma = @Lemma) AND (Lingua = @Lingua)</CommandText>
<Parameters>
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Lingua" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Lingua" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Lemma" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Lemma" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Traduzione" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Traduzione" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Lingua" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Lingua" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Lemma" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Lemma" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Traduzione" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Traduzione" SourceColumnNullMapping="false" SourceVersion="Original" />
</Parameters>
</DbCommand>
</UpdateCommand>
</DbSource>
</MainSource>
<Mappings>
<Mapping SourceColumn="Lingua" DataSetColumn="Lingua" />
<Mapping SourceColumn="Lemma" DataSetColumn="Lemma" />
<Mapping SourceColumn="Traduzione" DataSetColumn="Traduzione" />
</Mappings>
<Sources>
<DbSource ConnectionRef="CMS_SCConnectionString (Settings)" DbObjectName="[CMS-SC].voc.stp_getByLinguaLemmaLike" DbObjectType="StoredProcedure" GenerateMethods="Get" GenerateShortCommands="true" GeneratorGetMethodName="getByLinguaLemmaLike" GetMethodModifier="Public" GetMethodName="getByLinguaLemmaLike" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="getByLinguaLemmaLike" UserSourceName="getByLinguaLemmaLike">
<SelectCommand>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
<CommandText>voc.stp_getByLinguaLemmaLike</CommandText>
<Parameters>
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="ReturnValue" ParameterName="@RETURN_VALUE" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@Lingua" Precision="0" ProviderType="NVarChar" Scale="0" Size="3" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@search" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</SelectCommand>
</DbSource>
</Sources>
</TableAdapter>
</Tables>
<Sources />
</DataSource>
@@ -316,7 +382,7 @@ SELECT TableName, FieldName, value, label, ordinal FROM ListValues WHERE (FieldN
<xs:element name="DS_Utility" msdata:IsDataSet="true" msdata:UseCurrentLocale="true" msprop:EnableTableAdapterManager="true" msprop:Generator_DataSetName="DS_Utility" msprop:Generator_UserDSName="DS_Utility">
<xs:complexType>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="v_selScheda" msprop:Generator_TableClassName="v_selSchedaDataTable" msprop:Generator_TableVarName="tablev_selScheda" msprop:Generator_RowChangedName="v_selSchedaRowChanged" msprop:Generator_TablePropName="v_selScheda" msprop:Generator_RowDeletingName="v_selSchedaRowDeleting" msprop:Generator_RowChangingName="v_selSchedaRowChanging" msprop:Generator_RowEvHandlerName="v_selSchedaRowChangeEventHandler" msprop:Generator_RowDeletedName="v_selSchedaRowDeleted" msprop:Generator_RowClassName="v_selSchedaRow" msprop:Generator_UserTableName="v_selScheda" msprop:Generator_RowEvArgName="v_selSchedaRowChangeEvent">
<xs:element name="v_selScheda" msprop:Generator_TableClassName="v_selSchedaDataTable" msprop:Generator_TableVarName="tablev_selScheda" msprop:Generator_TablePropName="v_selScheda" msprop:Generator_RowDeletingName="v_selSchedaRowDeleting" msprop:Generator_RowChangingName="v_selSchedaRowChanging" msprop:Generator_RowEvHandlerName="v_selSchedaRowChangeEventHandler" msprop:Generator_RowDeletedName="v_selSchedaRowDeleted" msprop:Generator_UserTableName="v_selScheda" msprop:Generator_RowChangedName="v_selSchedaRowChanged" msprop:Generator_RowEvArgName="v_selSchedaRowChangeEvent" msprop:Generator_RowClassName="v_selSchedaRow">
<xs:complexType>
<xs:sequence>
<xs:element name="value" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnvalue" msprop:Generator_ColumnPropNameInRow="value" msprop:Generator_ColumnPropNameInTable="valueColumn" msprop:Generator_UserColumnName="value" minOccurs="0">
@@ -336,7 +402,7 @@ SELECT TableName, FieldName, value, label, ordinal FROM ListValues WHERE (FieldN
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="v_selListVal" msprop:Generator_TableClassName="v_selListValDataTable" msprop:Generator_TableVarName="tablev_selListVal" msprop:Generator_TablePropName="v_selListVal" msprop:Generator_RowDeletingName="v_selListValRowDeleting" msprop:Generator_RowChangingName="v_selListValRowChanging" msprop:Generator_RowEvHandlerName="v_selListValRowChangeEventHandler" msprop:Generator_RowDeletedName="v_selListValRowDeleted" msprop:Generator_UserTableName="v_selListVal" msprop:Generator_RowChangedName="v_selListValRowChanged" msprop:Generator_RowEvArgName="v_selListValRowChangeEvent" msprop:Generator_RowClassName="v_selListValRow">
<xs:element name="v_selListVal" msprop:Generator_TableClassName="v_selListValDataTable" msprop:Generator_TableVarName="tablev_selListVal" msprop:Generator_RowChangedName="v_selListValRowChanged" msprop:Generator_TablePropName="v_selListVal" msprop:Generator_RowDeletingName="v_selListValRowDeleting" msprop:Generator_RowChangingName="v_selListValRowChanging" msprop:Generator_RowEvHandlerName="v_selListValRowChangeEventHandler" msprop:Generator_RowDeletedName="v_selListValRowDeleted" msprop:Generator_RowClassName="v_selListValRow" msprop:Generator_UserTableName="v_selListVal" msprop:Generator_RowEvArgName="v_selListValRowChangeEvent">
<xs:complexType>
<xs:sequence>
<xs:element name="value" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnvalue" msprop:Generator_ColumnPropNameInRow="value" msprop:Generator_ColumnPropNameInTable="valueColumn" msprop:Generator_UserColumnName="value" minOccurs="0">
@@ -356,7 +422,7 @@ SELECT TableName, FieldName, value, label, ordinal FROM ListValues WHERE (FieldN
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="v_selFamMacc" msprop:Generator_TableClassName="v_selFamMaccDataTable" msprop:Generator_TableVarName="tablev_selFamMacc" msprop:Generator_RowChangedName="v_selFamMaccRowChanged" msprop:Generator_TablePropName="v_selFamMacc" msprop:Generator_RowDeletingName="v_selFamMaccRowDeleting" msprop:Generator_RowChangingName="v_selFamMaccRowChanging" msprop:Generator_RowEvHandlerName="v_selFamMaccRowChangeEventHandler" msprop:Generator_RowDeletedName="v_selFamMaccRowDeleted" msprop:Generator_RowClassName="v_selFamMaccRow" msprop:Generator_UserTableName="v_selFamMacc" msprop:Generator_RowEvArgName="v_selFamMaccRowChangeEvent">
<xs:element name="v_selFamMacc" msprop:Generator_TableClassName="v_selFamMaccDataTable" msprop:Generator_TableVarName="tablev_selFamMacc" msprop:Generator_TablePropName="v_selFamMacc" msprop:Generator_RowDeletingName="v_selFamMaccRowDeleting" msprop:Generator_RowChangingName="v_selFamMaccRowChanging" msprop:Generator_RowEvHandlerName="v_selFamMaccRowChangeEventHandler" msprop:Generator_RowDeletedName="v_selFamMaccRowDeleted" msprop:Generator_UserTableName="v_selFamMacc" msprop:Generator_RowChangedName="v_selFamMaccRowChanged" msprop:Generator_RowEvArgName="v_selFamMaccRowChangeEvent" msprop:Generator_RowClassName="v_selFamMaccRow">
<xs:complexType>
<xs:sequence>
<xs:element name="value" msprop:Generator_ColumnVarNameInTable="columnvalue" msprop:Generator_ColumnPropNameInRow="value" msprop:Generator_ColumnPropNameInTable="valueColumn" msprop:Generator_UserColumnName="value">
@@ -376,7 +442,7 @@ SELECT TableName, FieldName, value, label, ordinal FROM ListValues WHERE (FieldN
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="v_selMacchine" msprop:Generator_TableClassName="v_selMacchineDataTable" msprop:Generator_TableVarName="tablev_selMacchine" msprop:Generator_TablePropName="v_selMacchine" msprop:Generator_RowDeletingName="v_selMacchineRowDeleting" msprop:Generator_RowChangingName="v_selMacchineRowChanging" msprop:Generator_RowEvHandlerName="v_selMacchineRowChangeEventHandler" msprop:Generator_RowDeletedName="v_selMacchineRowDeleted" msprop:Generator_UserTableName="v_selMacchine" msprop:Generator_RowChangedName="v_selMacchineRowChanged" msprop:Generator_RowEvArgName="v_selMacchineRowChangeEvent" msprop:Generator_RowClassName="v_selMacchineRow">
<xs:element name="v_selMacchine" msprop:Generator_TableClassName="v_selMacchineDataTable" msprop:Generator_TableVarName="tablev_selMacchine" msprop:Generator_RowChangedName="v_selMacchineRowChanged" msprop:Generator_TablePropName="v_selMacchine" msprop:Generator_RowDeletingName="v_selMacchineRowDeleting" msprop:Generator_RowChangingName="v_selMacchineRowChanging" msprop:Generator_RowEvHandlerName="v_selMacchineRowChangeEventHandler" msprop:Generator_RowDeletedName="v_selMacchineRowDeleted" msprop:Generator_RowClassName="v_selMacchineRow" msprop:Generator_UserTableName="v_selMacchine" msprop:Generator_RowEvArgName="v_selMacchineRowChangeEvent">
<xs:complexType>
<xs:sequence>
<xs:element name="value" msprop:Generator_ColumnVarNameInTable="columnvalue" msprop:Generator_ColumnPropNameInRow="value" msprop:Generator_ColumnPropNameInTable="valueColumn" msprop:Generator_UserColumnName="value">
@@ -396,7 +462,7 @@ SELECT TableName, FieldName, value, label, ordinal FROM ListValues WHERE (FieldN
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="v_selElencoDossier" msprop:Generator_TableClassName="v_selElencoDossierDataTable" msprop:Generator_TableVarName="tablev_selElencoDossier" msprop:Generator_TablePropName="v_selElencoDossier" msprop:Generator_RowDeletingName="v_selElencoDossierRowDeleting" msprop:Generator_RowChangingName="v_selElencoDossierRowChanging" msprop:Generator_RowEvHandlerName="v_selElencoDossierRowChangeEventHandler" msprop:Generator_RowDeletedName="v_selElencoDossierRowDeleted" msprop:Generator_UserTableName="v_selElencoDossier" msprop:Generator_RowChangedName="v_selElencoDossierRowChanged" msprop:Generator_RowEvArgName="v_selElencoDossierRowChangeEvent" msprop:Generator_RowClassName="v_selElencoDossierRow">
<xs:element name="v_selElencoDossier" msprop:Generator_TableClassName="v_selElencoDossierDataTable" msprop:Generator_TableVarName="tablev_selElencoDossier" msprop:Generator_RowChangedName="v_selElencoDossierRowChanged" msprop:Generator_TablePropName="v_selElencoDossier" msprop:Generator_RowDeletingName="v_selElencoDossierRowDeleting" msprop:Generator_RowChangingName="v_selElencoDossierRowChanging" msprop:Generator_RowEvHandlerName="v_selElencoDossierRowChangeEventHandler" msprop:Generator_RowDeletedName="v_selElencoDossierRowDeleted" msprop:Generator_RowClassName="v_selElencoDossierRow" msprop:Generator_UserTableName="v_selElencoDossier" msprop:Generator_RowEvArgName="v_selElencoDossierRowChangeEvent">
<xs:complexType>
<xs:sequence>
<xs:element name="value" msprop:Generator_ColumnVarNameInTable="columnvalue" msprop:Generator_ColumnPropNameInRow="value" msprop:Generator_ColumnPropNameInTable="valueColumn" msprop:Generator_UserColumnName="value" type="xs:int" />
@@ -417,7 +483,7 @@ SELECT TableName, FieldName, value, label, ordinal FROM ListValues WHERE (FieldN
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="v_selFasi" msprop:Generator_TableClassName="v_selFasiDataTable" msprop:Generator_TableVarName="tablev_selFasi" msprop:Generator_TablePropName="v_selFasi" msprop:Generator_RowDeletingName="v_selFasiRowDeleting" msprop:Generator_RowChangingName="v_selFasiRowChanging" msprop:Generator_RowEvHandlerName="v_selFasiRowChangeEventHandler" msprop:Generator_RowDeletedName="v_selFasiRowDeleted" msprop:Generator_UserTableName="v_selFasi" msprop:Generator_RowChangedName="v_selFasiRowChanged" msprop:Generator_RowEvArgName="v_selFasiRowChangeEvent" msprop:Generator_RowClassName="v_selFasiRow">
<xs:element name="v_selFasi" msprop:Generator_TableClassName="v_selFasiDataTable" msprop:Generator_TableVarName="tablev_selFasi" msprop:Generator_RowChangedName="v_selFasiRowChanged" msprop:Generator_TablePropName="v_selFasi" msprop:Generator_RowDeletingName="v_selFasiRowDeleting" msprop:Generator_RowChangingName="v_selFasiRowChanging" msprop:Generator_RowEvHandlerName="v_selFasiRowChangeEventHandler" msprop:Generator_RowDeletedName="v_selFasiRowDeleted" msprop:Generator_RowClassName="v_selFasiRow" msprop:Generator_UserTableName="v_selFasi" msprop:Generator_RowEvArgName="v_selFasiRowChangeEvent">
<xs:complexType>
<xs:sequence>
<xs:element name="value" msprop:Generator_ColumnVarNameInTable="columnvalue" msprop:Generator_ColumnPropNameInRow="value" msprop:Generator_ColumnPropNameInTable="valueColumn" msprop:Generator_UserColumnName="value">
@@ -437,7 +503,7 @@ SELECT TableName, FieldName, value, label, ordinal FROM ListValues WHERE (FieldN
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="ListValues" msprop:Generator_TableClassName="ListValuesDataTable" msprop:Generator_TableVarName="tableListValues" msprop:Generator_RowChangedName="ListValuesRowChanged" msprop:Generator_TablePropName="ListValues" msprop:Generator_RowDeletingName="ListValuesRowDeleting" msprop:Generator_RowChangingName="ListValuesRowChanging" msprop:Generator_RowEvHandlerName="ListValuesRowChangeEventHandler" msprop:Generator_RowDeletedName="ListValuesRowDeleted" msprop:Generator_RowClassName="ListValuesRow" msprop:Generator_UserTableName="ListValues" msprop:Generator_RowEvArgName="ListValuesRowChangeEvent">
<xs:element name="ListValues" msprop:Generator_TableClassName="ListValuesDataTable" msprop:Generator_TableVarName="tableListValues" msprop:Generator_TablePropName="ListValues" msprop:Generator_RowDeletingName="ListValuesRowDeleting" msprop:Generator_RowChangingName="ListValuesRowChanging" msprop:Generator_RowEvHandlerName="ListValuesRowChangeEventHandler" msprop:Generator_RowDeletedName="ListValuesRowDeleted" msprop:Generator_UserTableName="ListValues" msprop:Generator_RowChangedName="ListValuesRowChanged" msprop:Generator_RowEvArgName="ListValuesRowChangeEvent" msprop:Generator_RowClassName="ListValuesRow">
<xs:complexType>
<xs:sequence>
<xs:element name="TableName" msprop:Generator_ColumnVarNameInTable="columnTableName" msprop:Generator_ColumnPropNameInRow="TableName" msprop:Generator_ColumnPropNameInTable="TableNameColumn" msprop:Generator_UserColumnName="TableName">
@@ -472,7 +538,7 @@ SELECT TableName, FieldName, value, label, ordinal FROM ListValues WHERE (FieldN
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="v_selLingue" msprop:Generator_TableClassName="v_selLingueDataTable" msprop:Generator_TableVarName="tablev_selLingue" msprop:Generator_TablePropName="v_selLingue" msprop:Generator_RowDeletingName="v_selLingueRowDeleting" msprop:Generator_RowChangingName="v_selLingueRowChanging" msprop:Generator_RowEvHandlerName="v_selLingueRowChangeEventHandler" msprop:Generator_RowDeletedName="v_selLingueRowDeleted" msprop:Generator_UserTableName="v_selLingue" msprop:Generator_RowChangedName="v_selLingueRowChanged" msprop:Generator_RowEvArgName="v_selLingueRowChangeEvent" msprop:Generator_RowClassName="v_selLingueRow">
<xs:element name="v_selLingue" msprop:Generator_TableClassName="v_selLingueDataTable" msprop:Generator_TableVarName="tablev_selLingue" msprop:Generator_RowChangedName="v_selLingueRowChanged" msprop:Generator_TablePropName="v_selLingue" msprop:Generator_RowDeletingName="v_selLingueRowDeleting" msprop:Generator_RowChangingName="v_selLingueRowChanging" msprop:Generator_RowEvHandlerName="v_selLingueRowChangeEventHandler" msprop:Generator_RowDeletedName="v_selLingueRowDeleted" msprop:Generator_RowClassName="v_selLingueRow" msprop:Generator_UserTableName="v_selLingue" msprop:Generator_RowEvArgName="v_selLingueRowChangeEvent">
<xs:complexType>
<xs:sequence>
<xs:element name="value" msprop:Generator_ColumnVarNameInTable="columnvalue" msprop:Generator_ColumnPropNameInRow="value" msprop:Generator_ColumnPropNameInTable="valueColumn" msprop:Generator_UserColumnName="value">
@@ -492,6 +558,33 @@ SELECT TableName, FieldName, value, label, ordinal FROM ListValues WHERE (FieldN
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Vocabolario" msprop:Generator_TableClassName="VocabolarioDataTable" msprop:Generator_TableVarName="tableVocabolario" msprop:Generator_TablePropName="Vocabolario" msprop:Generator_RowDeletingName="VocabolarioRowDeleting" msprop:Generator_RowChangingName="VocabolarioRowChanging" msprop:Generator_RowEvHandlerName="VocabolarioRowChangeEventHandler" msprop:Generator_RowDeletedName="VocabolarioRowDeleted" msprop:Generator_UserTableName="Vocabolario" msprop:Generator_RowChangedName="VocabolarioRowChanged" msprop:Generator_RowEvArgName="VocabolarioRowChangeEvent" msprop:Generator_RowClassName="VocabolarioRow">
<xs:complexType>
<xs:sequence>
<xs:element name="Lingua" msprop:Generator_ColumnVarNameInTable="columnLingua" msprop:Generator_ColumnPropNameInRow="Lingua" msprop:Generator_ColumnPropNameInTable="LinguaColumn" msprop:Generator_UserColumnName="Lingua">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="3" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Lemma" msprop:Generator_ColumnVarNameInTable="columnLemma" msprop:Generator_ColumnPropNameInRow="Lemma" msprop:Generator_ColumnPropNameInTable="LemmaColumn" msprop:Generator_UserColumnName="Lemma">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Traduzione" msprop:Generator_ColumnVarNameInTable="columnTraduzione" msprop:Generator_ColumnPropNameInRow="Traduzione" msprop:Generator_ColumnPropNameInTable="TraduzioneColumn" msprop:Generator_UserColumnName="Traduzione">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="500" />
</xs:restriction>
</xs:simpleType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
<xs:unique name="Constraint1" msdata:PrimaryKey="true">
@@ -520,5 +613,10 @@ SELECT TableName, FieldName, value, label, ordinal FROM ListValues WHERE (FieldN
<xs:selector xpath=".//mstns:v_selLingue" />
<xs:field xpath="mstns:value" />
</xs:unique>
<xs:unique name="Vocabolario_Constraint1" msdata:ConstraintName="Constraint1" msdata:PrimaryKey="true">
<xs:selector xpath=".//mstns:Vocabolario" />
<xs:field xpath="mstns:Lingua" />
<xs:field xpath="mstns:Lemma" />
</xs:unique>
</xs:element>
</xs:schema>
+9 -8
View File
@@ -6,14 +6,15 @@
</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="-10" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout">
<Shapes>
<Shape ID="DesignTable:v_selScheda" ZOrder="4" X="149" Y="312" Height="134" Width="213" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
<Shape ID="DesignTable:v_selListVal" ZOrder="8" X="428" Y="203" Height="134" Width="269" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
<Shape ID="DesignTable:v_selFamMacc" ZOrder="7" X="791" Y="264" Height="115" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
<Shape ID="DesignTable:v_selMacchine" ZOrder="6" X="1023" Y="274" Height="134" Width="227" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
<Shape ID="DesignTable:v_selElencoDossier" ZOrder="5" X="157" Y="502" Height="153" Width="252" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="83" />
<Shape ID="DesignTable:v_selFasi" ZOrder="3" X="554" Y="507" Height="115" Width="194" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
<Shape ID="DesignTable:ListValues" ZOrder="2" X="797" Y="572" Height="248" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="121" />
<Shape ID="DesignTable:v_selLingue" ZOrder="1" X="466" Y="731" Height="115" Width="211" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
<Shape ID="DesignTable:v_selScheda" ZOrder="5" X="149" Y="312" Height="134" Width="213" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
<Shape ID="DesignTable:v_selListVal" ZOrder="9" X="428" Y="203" Height="134" Width="269" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
<Shape ID="DesignTable:v_selFamMacc" ZOrder="8" X="791" Y="264" Height="115" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
<Shape ID="DesignTable:v_selMacchine" ZOrder="7" X="1023" Y="274" Height="134" Width="227" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
<Shape ID="DesignTable:v_selElencoDossier" ZOrder="6" X="157" Y="502" Height="153" Width="252" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="83" />
<Shape ID="DesignTable:v_selFasi" ZOrder="4" X="554" Y="507" Height="115" Width="194" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
<Shape ID="DesignTable:ListValues" ZOrder="3" X="797" Y="572" Height="248" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="121" />
<Shape ID="DesignTable:v_selLingue" ZOrder="2" X="466" Y="731" Height="115" Width="211" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
<Shape ID="DesignTable:Vocabolario" ZOrder="1" X="132" Y="762" Height="153" Width="281" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="83" />
</Shapes>
<Connectors />
</DiagramLayout>
+3
View File
@@ -35,6 +35,7 @@ namespace CMS_SC_Data
taSCM = new DS_ApplicazioneTableAdapters.SchemaCollMaccTableAdapter();
taVV = new DS_ApplicazioneTableAdapters.ValidValTableAdapter();
taListVal = new DS_UtilityTableAdapters.ListValuesTableAdapter();
taVoc = new DS_UtilityTableAdapters.VocabolarioTableAdapter();
taVSMacc = new DS_UtilityTableAdapters.v_selMacchineTableAdapter();
}
/// <summary>
@@ -57,6 +58,7 @@ namespace CMS_SC_Data
taSCM.Connection.ConnectionString = connStr;
taVV.Connection.ConnectionString = connStr;
taListVal.Connection.ConnectionString = connStr;
taVoc.Connection.ConnectionString = connStr;
taVSMacc.Connection.ConnectionString = connStr;
}
@@ -76,6 +78,7 @@ namespace CMS_SC_Data
public DS_ApplicazioneTableAdapters.SchemaCollMaccTableAdapter taSCM;
public DS_ApplicazioneTableAdapters.ValidValTableAdapter taVV;
public DS_UtilityTableAdapters.ListValuesTableAdapter taListVal;
public DS_UtilityTableAdapters.VocabolarioTableAdapter taVoc;
public DS_UtilityTableAdapters.v_selMacchineTableAdapter taVSMacc;
public static DtProxy man = new DtProxy();
Binary file not shown.
Binary file not shown.
Binary file not shown.
+3
View File
@@ -304,6 +304,9 @@
<Content Include="Files\Schede\Cg0063-2.doc" />
<Content Include="Files\Schede\Cg0175-1.pdf" />
<Content Include="imagecache\PlaceHolder.file" />
<Content Include="Reports\ReportCli.rdl" />
<Content Include="Reports\ReportComp.rdl" />
<Content Include="Reports\ReportFull.rdl" />
<None Include="Scripts\jquery-2.1.4.intellisense.js" />
<Content Include="ReportCliente.aspx" />
<Content Include="ReportCompatto.aspx" />
+6 -6
View File
@@ -22,19 +22,19 @@
<div class="col-xs-8">
<div class="row" style="font-size: 0.8em; margin: 4px 0px;">
<div class="col-xs-4">
<asp:LinkButton runat="server" ID="lbtnShowReportFull" CssClass="btn btn-info" Text='' Width="80%" OnClick="lbtnShowReportFull_Click">
<asp:HyperLink runat="server" Target="_blank" ID="hlShowReportFull" CssClass="btn btn-info" Text='' Width="80%">
<i class="fa fa-file-o"></i> <%: traduci("btnShowReportFull") %>
</asp:LinkButton>
</asp:HyperLink>
</div>
<div class="col-xs-4">
<asp:LinkButton runat="server" ID="lbtnShowReportComp" CssClass="btn btn-info" Width="80%" OnClick="lbtnShowReportComp_Click">
<asp:HyperLink runat="server" Target="_blank" ID="hlShowReportComp" CssClass="btn btn-info" Width="80%">
<i class="fa fa-file-o"></i> <%: traduci("btnShowReportComp") %>
</asp:LinkButton>
</asp:HyperLink>
</div>
<div class="col-xs-4">
<asp:LinkButton runat="server" ID="lbtnShowReportCli" CssClass="btn btn-info" Width="80%" OnClick="lbtnShowReportCli_Click">
<asp:HyperLink runat="server" Target="_blank" ID="hlShowReportCli" CssClass="btn btn-info" Width="80%">
<i class="fa fa-file-o"></i> <%: traduci("btnShowReportCli") %>
</asp:LinkButton>
</asp:HyperLink>
</div>
</div>
<div class="row" style="font-size: 0.8em;">
+25 -15
View File
@@ -35,17 +35,27 @@ namespace CMS_SC
ddlSelScheda.Visible = addVisib;
btnAddFromFam.Visible = addVisib;
btnAddFromScheda.Visible = addVisib;
lbtnShowReportCli.Visible = addVisib;
lbtnShowReportComp.Visible = addVisib;
lbtnShowReportFull.Visible = addVisib;
hlShowReportCli.Visible = addVisib;
hlShowReportComp.Visible = addVisib;
hlShowReportFull.Visible = addVisib;
}
void mod_elencoDossiers_eh_selezioneValore(object sender, EventArgs e)
{
mod_elencoSchedeDossier.idxDossier = mod_elencoDossiers.idxDossier.ToString();
fixHiperLinks();
fixBtnVisibility();
}
/// <summary>
/// sistemo i links
/// </summary>
private void fixHiperLinks()
{
hlShowReportFull.NavigateUrl = string.Format("ReportCompleto?IdxDossier={0}", mod_elencoDossiers.idxDossier);
hlShowReportComp.NavigateUrl = string.Format("ReportCompatto?IdxDossier={0}", mod_elencoDossiers.idxDossier);
hlShowReportCli.NavigateUrl = string.Format("ReportCliente?IdxDossier={0}", mod_elencoDossiers.idxDossier);
}
/// <summary>
/// url base area services
/// </summary>
public string serviceUrl(string method)
@@ -87,20 +97,20 @@ namespace CMS_SC
mod_elencoSchedeDossier.doUpdate();
}
protected void lbtnShowReportFull_Click(object sender, EventArgs e)
{
Response.Redirect(string.Format("ReportCompleto?IdxDossier={0}", mod_elencoDossiers.idxDossier));
}
//protected void lbtnShowReportFull_Click(object sender, EventArgs e)
//{
// Response.Redirect(string.Format("ReportCompleto?IdxDossier={0}", mod_elencoDossiers.idxDossier));
//}
protected void lbtnShowReportComp_Click(object sender, EventArgs e)
{
Response.Redirect(string.Format("ReportCompatto?IdxDossier={0}", mod_elencoDossiers.idxDossier));
}
//protected void lbtnShowReportComp_Click(object sender, EventArgs e)
//{
// Response.Redirect(string.Format("ReportCompatto?IdxDossier={0}", mod_elencoDossiers.idxDossier));
//}
protected void lbtnShowReportCli_Click(object sender, EventArgs e)
{
Response.Redirect(string.Format("ReportCliente?IdxDossier={0}", mod_elencoDossiers.idxDossier));
}
//protected void lbtnShowReportCli_Click(object sender, EventArgs e)
//{
// Response.Redirect(string.Format("ReportCliente?IdxDossier={0}", mod_elencoDossiers.idxDossier));
//}
}
}
+6 -6
View File
@@ -22,31 +22,31 @@ namespace CMS_SC {
protected global::CMS_SC.WebUserControls.mod_elencoDossiers mod_elencoDossiers;
/// <summary>
/// lbtnShowReportFull control.
/// hlShowReportFull control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.LinkButton lbtnShowReportFull;
protected global::System.Web.UI.WebControls.HyperLink hlShowReportFull;
/// <summary>
/// lbtnShowReportComp control.
/// hlShowReportComp control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.LinkButton lbtnShowReportComp;
protected global::System.Web.UI.WebControls.HyperLink hlShowReportComp;
/// <summary>
/// lbtnShowReportCli control.
/// hlShowReportCli control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.LinkButton lbtnShowReportCli;
protected global::System.Web.UI.WebControls.HyperLink hlShowReportCli;
/// <summary>
/// ddlSelFamMacc control.
+12 -2
View File
@@ -27,15 +27,25 @@ namespace CMS_SC
{
return user_std.UtSn.Traduci(lemma);
}
/// <summary>
/// cambio fase
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void ddlFase_SelectedIndexChanged(object sender, EventArgs e)
{
mod_reportCompleto.Fase = ddlFase.SelectedValue;
mod_reportCompleto.Lingua = ddlLingue.SelectedValue;
mod_reportCompleto.fixReport();
}
/// <summary>
/// cambio lingua
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void ddlLingue_SelectedIndexChanged(object sender, EventArgs e)
{
mod_reportCompleto.Fase = ddlFase.SelectedValue;
mod_reportCompleto.Lingua = ddlLingue.SelectedValue;
mod_reportCompleto.fixReport();
}
+12 -2
View File
@@ -27,15 +27,25 @@ namespace CMS_SC
{
return user_std.UtSn.Traduci(lemma);
}
/// <summary>
/// cambio fase
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void ddlFase_SelectedIndexChanged(object sender, EventArgs e)
{
mod_reportCompleto.Fase = ddlFase.SelectedValue;
mod_reportCompleto.Lingua = ddlLingue.SelectedValue;
mod_reportCompleto.fixReport();
}
/// <summary>
/// cambio lingua
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void ddlLingue_SelectedIndexChanged(object sender, EventArgs e)
{
mod_reportCompleto.Fase = ddlFase.SelectedValue;
mod_reportCompleto.Lingua = ddlLingue.SelectedValue;
mod_reportCompleto.fixReport();
}
+12 -2
View File
@@ -27,15 +27,25 @@ namespace CMS_SC
{
return user_std.UtSn.Traduci(lemma);
}
/// <summary>
/// cambio fase
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void ddlFase_SelectedIndexChanged(object sender, EventArgs e)
{
mod_reportCompleto.Fase = ddlFase.SelectedValue;
mod_reportCompleto.Lingua = ddlLingue.SelectedValue;
mod_reportCompleto.fixReport();
}
/// <summary>
/// cambio lingua
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void ddlLingue_SelectedIndexChanged(object sender, EventArgs e)
{
mod_reportCompleto.Fase = ddlFase.SelectedValue;
mod_reportCompleto.Lingua = ddlLingue.SelectedValue;
mod_reportCompleto.fixReport();
}
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+2
View File
@@ -68,6 +68,8 @@
<add key="UtenteCdcConnectionString" value="Data Source=10.74.82.217\sql2008r2;Initial Catalog=CMS-SC;Persist Security Info=True;User ID=sa;Password=keyhammer" />
<add key="VocabolarioConnectionString" value="Data Source=10.74.82.217\SQL2008R2;Initial Catalog=CMS-SC;Persist Security Info=True;User ID=sa;Password=keyhammer" />
<add key="DevicesAuthConnectionString" value="Data Source=10.74.82.217\SQL2008R2;Initial Catalog=CMS-SC;Persist Security Info=True;User ID=sa;Password=keyhammer;" />
<!--fix glimpse gestioen sync-->
<add key="Glimpse:DisableAsyncSupport" value="true" />
</appSettings>
<connectionStrings>
<add name="DefaultConnection" providerName="System.Data.SqlClient" connectionString="Data Source=(LocalDb)\v11.0;Initial Catalog=aspnet-CMS_SC-20150515094114;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|\aspnet-CMS_SC-20150515094114.mdf" />
@@ -61,11 +61,14 @@ namespace CMS_SC.WebUserControls
// 2) caricamento tab dati
DataTable tabDati = new DataTable();
tabDati = (DataTable)DtProxy.man.taRep.GetData(IdxDossier, Fase, Lingua, TipoReport);
DataTable tabVoc = new DataTable();
tabDati = (DataTable)DtProxy.man.taRep.GetData(IdxDossier, Fase);
tabVoc = (DataTable)DtProxy.man.taVoc.getByLinguaLemmaLike(Lingua,"SC_PRT");
// 3) inserimento dataset nel report
localReport.DataSources.Clear();
localReport.DataSources.Add(new ReportDataSource("dsValue", tabDati));
localReport.DataSources.Add(new ReportDataSource("dsSchedaCollaudo", tabDati));
localReport.DataSources.Add(new ReportDataSource("dsVocabolario", tabVoc));
#if false
// 4) aggiungo parametro
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.