Abbozzata gestione fascia oraria: inserito campo, inserita prima visualizzazione + controllo editing, manca logica x vero update + check degli orari...
This commit is contained in:
Generated
+28
@@ -2276,6 +2276,8 @@ namespace WebSCR_data {
|
||||
|
||||
private global::System.Data.DataColumn columnIdxImpegno;
|
||||
|
||||
private global::System.Data.DataColumn columnDataOraCom;
|
||||
|
||||
private global::System.Data.DataColumn columnDataOra;
|
||||
|
||||
private global::System.Data.DataColumn columnTipoOrario;
|
||||
@@ -2399,6 +2401,14 @@ namespace WebSCR_data {
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
public global::System.Data.DataColumn DataOraComColumn {
|
||||
get {
|
||||
return this.columnDataOraCom;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
public global::System.Data.DataColumn DataOraColumn {
|
||||
@@ -2766,6 +2776,7 @@ namespace WebSCR_data {
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
public ImpegniRow AddImpegniRow(
|
||||
int IdxImpegno,
|
||||
System.DateTime DataOraCom,
|
||||
System.DateTime DataOra,
|
||||
string TipoOrario,
|
||||
string CodCliente,
|
||||
@@ -2810,6 +2821,7 @@ namespace WebSCR_data {
|
||||
ImpegniRow rowImpegniRow = ((ImpegniRow)(this.NewRow()));
|
||||
object[] columnValuesArray = new object[] {
|
||||
IdxImpegno,
|
||||
DataOraCom,
|
||||
DataOra,
|
||||
TipoOrario,
|
||||
CodCliente,
|
||||
@@ -2881,6 +2893,7 @@ namespace WebSCR_data {
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
internal void InitVars() {
|
||||
this.columnIdxImpegno = base.Columns["IdxImpegno"];
|
||||
this.columnDataOraCom = base.Columns["DataOraCom"];
|
||||
this.columnDataOra = base.Columns["DataOra"];
|
||||
this.columnTipoOrario = base.Columns["TipoOrario"];
|
||||
this.columnCodCliente = base.Columns["CodCliente"];
|
||||
@@ -2929,6 +2942,8 @@ namespace WebSCR_data {
|
||||
private void InitClass() {
|
||||
this.columnIdxImpegno = new global::System.Data.DataColumn("IdxImpegno", typeof(int), null, global::System.Data.MappingType.Element);
|
||||
base.Columns.Add(this.columnIdxImpegno);
|
||||
this.columnDataOraCom = new global::System.Data.DataColumn("DataOraCom", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
|
||||
base.Columns.Add(this.columnDataOraCom);
|
||||
this.columnDataOra = new global::System.Data.DataColumn("DataOra", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
|
||||
base.Columns.Add(this.columnDataOra);
|
||||
this.columnTipoOrario = new global::System.Data.DataColumn("TipoOrario", typeof(string), null, global::System.Data.MappingType.Element);
|
||||
@@ -3015,6 +3030,8 @@ namespace WebSCR_data {
|
||||
this.columnIdxImpegno}, true));
|
||||
this.columnIdxImpegno.AllowDBNull = false;
|
||||
this.columnIdxImpegno.Unique = true;
|
||||
this.columnDataOraCom.AllowDBNull = false;
|
||||
this.columnDataOraCom.Caption = "DataOra";
|
||||
this.columnDataOra.AllowDBNull = false;
|
||||
this.columnTipoOrario.AllowDBNull = false;
|
||||
this.columnTipoOrario.MaxLength = 10;
|
||||
@@ -7298,6 +7315,17 @@ namespace WebSCR_data {
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
public System.DateTime DataOraCom {
|
||||
get {
|
||||
return ((global::System.DateTime)(this[this.tableImpegni.DataOraComColumn]));
|
||||
}
|
||||
set {
|
||||
this[this.tableImpegni.DataOraComColumn] = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
public System.DateTime DataOra {
|
||||
|
||||
@@ -1526,6 +1526,7 @@ SELECT Matr, Cognome, Nome, CognomeNome FROM Dipendenti WHERE (Matr = @Matr)</Co
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="IdxImpegno" msprop:Generator_ColumnVarNameInTable="columnIdxImpegno" msprop:Generator_ColumnPropNameInRow="IdxImpegno" msprop:Generator_ColumnPropNameInTable="IdxImpegnoColumn" msprop:Generator_UserColumnName="IdxImpegno" type="xs:int" />
|
||||
<xs:element name="DataOraCom" msdata:Caption="DataOra" msprop:Generator_ColumnVarNameInTable="columnDataOraCom" msprop:Generator_ColumnPropNameInRow="DataOraCom" msprop:Generator_ColumnPropNameInTable="DataOraComColumn" msprop:Generator_UserColumnName="DataOraCom" type="xs:dateTime" />
|
||||
<xs:element name="DataOra" msprop:Generator_ColumnVarNameInTable="columnDataOra" msprop:Generator_ColumnPropNameInRow="DataOra" msprop:Generator_ColumnPropNameInTable="DataOraColumn" msprop:Generator_UserColumnName="DataOra" type="xs:dateTime" />
|
||||
<xs:element name="TipoOrario" msprop:Generator_ColumnVarNameInTable="columnTipoOrario" msprop:Generator_ColumnPropNameInRow="TipoOrario" msprop:Generator_ColumnPropNameInTable="TipoOrarioColumn" msprop:Generator_UserColumnName="TipoOrario">
|
||||
<xs:simpleType>
|
||||
|
||||
@@ -4,13 +4,13 @@
|
||||
Changes to this file may cause incorrect behavior and will be lost if
|
||||
the code is regenerated.
|
||||
</autogenerated>-->
|
||||
<DiagramLayout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ex:showrelationlabel="False" ViewPortX="-10" ViewPortY="136" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout">
|
||||
<DiagramLayout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ex:showrelationlabel="False" ViewPortX="-10" ViewPortY="129" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout">
|
||||
<Shapes>
|
||||
<Shape ID="DesignTable:AnagSquadre" ZOrder="10" X="579" Y="415" Height="305" Width="261" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="178" />
|
||||
<Shape ID="DesignTable:AnagZone" ZOrder="18" X="556" Y="160" Height="229" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="121" />
|
||||
<Shape ID="DesignTable:AnagTipoConsegne" ZOrder="17" X="919" Y="164" Height="286" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="159" />
|
||||
<Shape ID="DesignTable:AnagClienti" ZOrder="12" X="330" Y="139" Height="362" Width="212" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
|
||||
<Shape ID="DesignTable:Impegni" ZOrder="2" X="13" Y="159" Height="381" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
|
||||
<Shape ID="DesignTable:Impegni" ZOrder="1" X="13" Y="159" Height="381" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="197" />
|
||||
<Shape ID="DesignTable:DispImpTot" ZOrder="15" X="890" Y="469" Height="172" Width="293" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="102" />
|
||||
<Shape ID="DesignTable:DispImpSquadre" ZOrder="16" X="931" Y="666" Height="153" Width="241" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="102" />
|
||||
<Shape ID="DesignTable:v_ImpegniCal" ZOrder="6" X="393" Y="937" Height="210" Width="222" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="140" />
|
||||
@@ -20,7 +20,7 @@
|
||||
<Shape ID="DesignTable:DB2_DOCS" ZOrder="8" X="1244" Y="171" Height="516" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="408" />
|
||||
<Shape ID="DesignTable:AssegnSquadre" ZOrder="5" X="333" Y="730" Height="191" Width="276" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="102" />
|
||||
<Shape ID="DesignTable:Dipendenti" ZOrder="4" X="339" Y="514" Height="153" Width="209" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="102" />
|
||||
<Shape ID="DesignTable:v_resImp" ZOrder="1" X="51" Y="922" Height="134" Width="196" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
|
||||
<Shape ID="DesignTable:v_resImp" ZOrder="2" X="51" Y="922" Height="134" Width="196" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
|
||||
</Shapes>
|
||||
<Connectors>
|
||||
<Connector ID="DesignRelation:FK_Disponibilita_AnagSquadre" ZOrder="14" LineWidth="11">
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user