update x correzioni bug segnalati da giancarlo

- cartellini TL e non TT in rimozione Dtx da post liquidi
- possibilità spostare dtx a UDC vuoto (!!!)
- mancata indicazioen coem associato in tab BMW
This commit is contained in:
Samuele Locatelli
2014-06-11 18:52:21 +02:00
parent 3cd210cc54
commit a2d27e6cd3
19 changed files with 84 additions and 58 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
+5 -5
View File
@@ -446,7 +446,7 @@
<Content Include="WebUserControls\mod_LiqDtAnom.ascx" />
<Content Include="WebUserControls\mod_listAL.ascx" />
<Content Include="WebUserControls\mod_listDtx.ascx" />
<Content Include="WebUserControls\mod_postFusioni.ascx" />
<Content Include="WebUserControls\mod_PostFusioni.ascx" />
<Content Include="WebUserControls\mod_PostLiq_DT.ascx" />
<Content Include="WebUserControls\mod_PostLiq_NT.ascx" />
<Content Include="WebUserControls\mod_PostProveMecc.ascx" />
@@ -1453,12 +1453,12 @@
<Compile Include="WebUserControls\mod_periodoAnalisi.ascx.designer.cs">
<DependentUpon>mod_periodoAnalisi.ascx</DependentUpon>
</Compile>
<Compile Include="WebUserControls\mod_postFusioni.ascx.cs">
<DependentUpon>mod_postFusioni.ascx</DependentUpon>
<Compile Include="WebUserControls\mod_PostFusioni.ascx.cs">
<DependentUpon>mod_PostFusioni.ascx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="WebUserControls\mod_postFusioni.ascx.designer.cs">
<DependentUpon>mod_postFusioni.ascx</DependentUpon>
<Compile Include="WebUserControls\mod_PostFusioni.ascx.designer.cs">
<DependentUpon>mod_PostFusioni.ascx</DependentUpon>
</Compile>
<Compile Include="WebUserControls\mod_PostLiq_DT.ascx.cs">
<DependentUpon>mod_PostLiq_DT.ascx</DependentUpon>
+3
View File
@@ -1,5 +1,7 @@
<%@ Page Title="" Language="C#" MasterPageFile="~/FullPage.master" AutoEventWireup="true" CodeBehind="Post_FusioniSP.aspx.cs" Inherits="GMW.Post_FusioniSP" %>
<%@ Register src="~/WebUserControls/mod_PostFusioni.ascx" tagname="mod_PostFusioni" tagprefix="uc1" %>
<asp:Content ID="Content1" ContentPlaceHolderID="HeadContent" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="FeaturedContent" runat="server">
@@ -23,4 +25,5 @@
<li>Creazione report anomalie quotidiano (orientativamente conteggio numero datamatrix di ogni fase, conteggio anomalie e qualificazione delle stesse)</li>
<li>Nuova postazione da inserire in area fusione per la stampa di etichette adesive barcode adeguatamente formattato da gestire come attributo UDC e che permetta di salvare data-ora di fine fusione (come data-ora stampa) per poterle legare poi al cartellino e allassieme RX successivo tramite scansione pistola barcode</li>
</ul>
<uc1:mod_PostFusioni ID="mod_PostFusioni1" runat="server" />
</asp:Content>
+14 -7
View File
@@ -3,15 +3,22 @@
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace GMW
{
public partial class Post_FusioniSP
{
namespace GMW {
public partial class Post_FusioniSP {
/// <summary>
/// mod_PostFusioni1 control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::GMW.WebUserControls.mod_PostFusioni mod_PostFusioni1;
}
}
+4 -4
View File
@@ -645,7 +645,7 @@ namespace GMW.WebUserControls
// assegno datamatrix a Udc Destinazione e associo UDC TT ad UDC FI
bool spostaDtx = false;
// se lo trovo chiamo procedura di spostamento Dtx tra UDC sorgente --> dest
DataMatrix.mgr.taDtx2UDC.UpdateUDC(UDCFin, barcodeIn, statoUdcOut, DateTime.Now, MagClass.magazzino.CodSoggCurrUser, false);
DataMatrix.mgr.taDtx2UDC.UpdateUDC(UDCFin, barcodeIn, statoUdcOut, DateTime.Now, MagClass.magazzino.CodSoggCurrUser, false, true);
return spostaDtx;
}
/// <summary>
@@ -663,11 +663,11 @@ namespace GMW.WebUserControls
// se ho UdcRX lo cambio...
if (UDCRx != "")
{
DataMatrix.mgr.taDtx2UDC.UpdateUDC(UDCRx, barcodeIn, "ContrRx", DateTime.Now, MagClass.magazzino.CodSoggCurrUser, true);
DataMatrix.mgr.taDtx2UDC.UpdateUDC(UDCRx, barcodeIn, "ContrRx", DateTime.Now, MagClass.magazzino.CodSoggCurrUser, true, true);
}
// sostituisco UDC TT e Fin..
DataMatrix.mgr.taDtx2UDC.UpdateUDC(UDCTratt, barcodeIn, statoUdcIn, DateTime.Now, MagClass.magazzino.CodSoggCurrUser, true);
DataMatrix.mgr.taDtx2UDC.UpdateUDC(UDCFin, barcodeIn, statoUdcOut, DateTime.Now, MagClass.magazzino.CodSoggCurrUser, false);
DataMatrix.mgr.taDtx2UDC.UpdateUDC(UDCTratt, barcodeIn, statoUdcIn, DateTime.Now, MagClass.magazzino.CodSoggCurrUser, true, true);
DataMatrix.mgr.taDtx2UDC.UpdateUDC(UDCFin, barcodeIn, statoUdcOut, DateTime.Now, MagClass.magazzino.CodSoggCurrUser, false, true);
return spostaDtx;
}
/// <summary>
+32 -24
View File
@@ -550,33 +550,35 @@ namespace GMW.WebUserControls
}
if (NewUDC == "")
{
// scambio UDC e prendo quello TT
OldUDC = OldUDC.Replace(flussoTemp, flussoAnc);
// controllo se devo usare chiamata a stored unica (UDC + aggancio AL + cella corretta) o due chiamate
if (memLayer.ML.confReadBool("useStoredLiqSP"))
// verifico che NON sia modalità "rimozione" datamatrix
if (!chkDtxMode.Checked)
{
// nuova stored con AL e cella......
NewUDC = MagClass.magazzino.creaUdcWithAlCella(destAL, sourceAL, barcodeIn, statoUdcOut, Postazione.currCodCella, flusso, "", currParticolare, "", "", "", "", OldUDC, 0, memLayer.ML.confReadString("CodImballoFiniti"), "U", MagClass.magazzino.CodSoggCurrUser, pezziUdc, 0, 0, adesso, 0, statoUdcOut, memLayer.ML.confReadInt("IdxPosizioneFinTemp"), "IdxPosizioneFinTemp", codEventoUdcOut, "", "", adesso.Year, Request.UserHostName);
}
else
{
// oppure lo creo...
NewUDC = MagClass.magazzino.creaUdc(flusso, "", currParticolare, "", "", "", "", OldUDC, 0, memLayer.ML.confReadString("CodImballoFiniti"), "U", MagClass.magazzino.CodSoggCurrUser, pezziUdc, 0, 0, adesso, 0, statoUdcOut, memLayer.ML.confReadInt("IdxPosizioneFinTemp"), "IdxPosizioneFinTemp", codEventoUdcOut, "", "", adesso.Year, Request.UserHostName);
// lo associo all'AL!
MagClass.magazzino.taAL2UDC.Insert(destAL, NewUDC, adesso, MagClass.magazzino.CodSoggCurrUser);
// verifico se sia modalità "rimozione" datamatrix x cui tolgo i datamatrix dall'UDC finale..
if (chkDtxMode.Checked)
// scambio UDC e prendo quello TT
OldUDC = OldUDC.Replace(flussoTemp, flussoAnc);
// controllo se devo usare chiamata a stored unica (UDC + aggancio AL + cella corretta) o due chiamate
if (memLayer.ML.confReadBool("useStoredLiqSP"))
{
// tolgo da AL (se caricato), faccio udpate e sposto su UDC sorgente...
DataMatrix.mgr.taDtx2UDC.UpdateUDC(OldUDC, barcodeIn, statoUdcIn, DateTime.Now, MagClass.magazzino.CodSoggCurrUser, false);
// nuova stored con AL e cella......
NewUDC = MagClass.magazzino.creaUdcWithAlCella(destAL, sourceAL, barcodeIn, statoUdcOut, Postazione.currCodCella, flusso, "", currParticolare, "", "", "", "", OldUDC, 0, memLayer.ML.confReadString("CodImballoFiniti"), "U", MagClass.magazzino.CodSoggCurrUser, pezziUdc, 0, 0, adesso, 0, statoUdcOut, memLayer.ML.confReadInt("IdxPosizioneFinTemp"), "IdxPosizioneFinTemp", codEventoUdcOut, "", "", adesso.Year, Request.UserHostName);
}
else
{
// se lo trovo chiamo procedura di spostamento Dtx tra UDC sorgente --> dest (con eventuale creazione dest)
DataMatrix.mgr.taDtx2UDC.UpdateUDC(NewUDC, barcodeIn, statoUdcOut, DateTime.Now, MagClass.magazzino.CodSoggCurrUser, false);
// oppure lo creo...
NewUDC = MagClass.magazzino.creaUdc(flusso, "", currParticolare, "", "", "", "", OldUDC, 0, memLayer.ML.confReadString("CodImballoFiniti"), "U", MagClass.magazzino.CodSoggCurrUser, pezziUdc, 0, 0, adesso, 0, statoUdcOut, memLayer.ML.confReadInt("IdxPosizioneFinTemp"), "IdxPosizioneFinTemp", codEventoUdcOut, "", "", adesso.Year, Request.UserHostName);
// lo associo all'AL!
MagClass.magazzino.taAL2UDC.Insert(destAL, NewUDC, adesso, MagClass.magazzino.CodSoggCurrUser);
DataMatrix.mgr.taDtx2UDC.UpdateUDC(NewUDC, barcodeIn, statoUdcOut, DateTime.Now, MagClass.magazzino.CodSoggCurrUser, false, false);
// disattivo AL (se non era già disattivo...) x evitare si possa togliere senza chiudere...
MagClass.magazzino.taEA.DisattivaAL(sourceAL);
}
// disattivo AL (se non era già disattivo...) x evitare si possa togliere senza chiudere...
MagClass.magazzino.taEA.DisattivaAL(sourceAL);
}
else
{
Postazione.messaggiText = barcodeIn;
Postazione.warningText = traduci("UdcNonTrovato");
Postazione.CssClass = cssErr;
}
}
else
@@ -584,13 +586,19 @@ namespace GMW.WebUserControls
// verifico se sia modalità "rimozione" datamatrix x cui tolgo i datamatrix dall'UDC finale..
if (chkDtxMode.Checked)
{
// tolgo da AL (se caricato), faccio udpate e sposto su UDC sorgente...
DataMatrix.mgr.taDtx2UDC.UpdateUDC(OldUDC, barcodeIn, statoUdcIn, DateTime.Now, MagClass.magazzino.CodSoggCurrUser, false);
// scambio UDC e prendo quello TT
OldUDC = OldUDC.Replace(flussoTemp, flussoAnc);
// VERIFICO se Dtx sia GIA' in udc destinazione...
if (DataMatrix.mgr.taDtx2UDC.getByDtx(barcodeIn).Select(string.Format("UDC = '{0}'", NewUDC)).Length > 0)
{
// tolgo da AL (se caricato), faccio update e sposto su UDC sorgente...
DataMatrix.mgr.taDtx2UDC.UpdateUDC(OldUDC, barcodeIn, statoUdcIn, DateTime.Now, MagClass.magazzino.CodSoggCurrUser, false, true);
}
}
else
{
// se lo trovo chiamo procedura di spostamento Dtx tra UDC sorgente --> dest (con eventuale creazione dest)
DataMatrix.mgr.taDtx2UDC.UpdateUDC(NewUDC, barcodeIn, statoUdcOut, DateTime.Now, MagClass.magazzino.CodSoggCurrUser, false);
DataMatrix.mgr.taDtx2UDC.UpdateUDC(NewUDC, barcodeIn, statoUdcOut, DateTime.Now, MagClass.magazzino.CodSoggCurrUser, false, false);
}
// disattivo AL (se non era già disattivo...) x evitare si possa togliere senza chiudere...
MagClass.magazzino.taEA.DisattivaAL(sourceAL);
+1 -1
View File
@@ -1,4 +1,4 @@
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_postFusioni.ascx.cs" Inherits="GMW.WebUserControls.mod_postFusioni" %>
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_PostFusioni.ascx.cs" Inherits="GMW.WebUserControls.mod_PostFusioni" %>
deve riportare un orologio e possibilità di stampare un barcode su stampante etichette che poi (letto agli RX) permette di caricare l'attributo della fusione (dataora)
<br />
formato barcode: DT + data-ora
+1 -1
View File
@@ -7,7 +7,7 @@ using System.Web.UI.WebControls;
namespace GMW.WebUserControls
{
public partial class mod_postFusioni : System.Web.UI.UserControl
public partial class mod_PostFusioni : System.Web.UI.UserControl
{
protected void Page_Load(object sender, EventArgs e)
{
+1 -1
View File
@@ -11,7 +11,7 @@ namespace GMW.WebUserControls
{
public partial class mod_postFusioni
public partial class mod_PostFusioni
{
}
}
BIN
View File
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+8 -1
View File
@@ -9148,6 +9148,7 @@ SELECT DataMatrix, CodStato, UDC, DataOra, CodSoggetto, Particolare FROM Dtx2UDC
this._commandCollection[7].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DataMod", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 23, 3, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[7].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodSoggetto", global::System.Data.SqlDbType.VarChar, 17, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[7].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@updateQtyUdc", global::System.Data.SqlDbType.Bit, 1, global::System.Data.ParameterDirection.Input, 1, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[7].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@setAnom", global::System.Data.SqlDbType.Bit, 1, global::System.Data.ParameterDirection.Input, 1, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
@@ -9560,7 +9561,7 @@ SELECT DataMatrix, CodStato, UDC, DataOra, CodSoggetto, Particolare FROM Dtx2UDC
[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")]
public virtual int UpdateUDC(string UDC, string DataMatrix, string CodStato, global::System.Nullable<global::System.DateTime> DataMod, string CodSoggetto, global::System.Nullable<bool> updateQtyUdc) {
public virtual int UpdateUDC(string UDC, string DataMatrix, string CodStato, global::System.Nullable<global::System.DateTime> DataMod, string CodSoggetto, global::System.Nullable<bool> updateQtyUdc, global::System.Nullable<bool> setAnom) {
global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[7];
if ((UDC == null)) {
command.Parameters[1].Value = global::System.DBNull.Value;
@@ -9598,6 +9599,12 @@ SELECT DataMatrix, CodStato, UDC, DataOra, CodSoggetto, Particolare FROM Dtx2UDC
else {
command.Parameters[6].Value = global::System.DBNull.Value;
}
if ((setAnom.HasValue == true)) {
command.Parameters[7].Value = ((bool)(setAnom.Value));
}
else {
command.Parameters[7].Value = global::System.DBNull.Value;
}
global::System.Data.ConnectionState previousConnectionState = command.Connection.State;
if (((command.Connection.State & global::System.Data.ConnectionState.Open)
!= global::System.Data.ConnectionState.Open)) {
+11 -10
View File
@@ -545,6 +545,7 @@ SELECT DataMatrix, CodStato, UDC, DataOra, CodSoggetto, Particolare FROM Dtx2UDC
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="datetime" DbType="DateTime" Direction="Input" ParameterName="@DataMod" Precision="23" ProviderType="DateTime" Scale="3" Size="8" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="varchar" DbType="AnsiString" Direction="Input" ParameterName="@CodSoggetto" Precision="0" ProviderType="VarChar" Scale="0" Size="17" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="bit" DbType="Boolean" Direction="Input" ParameterName="@updateQtyUdc" Precision="1" ProviderType="Bit" Scale="0" Size="1" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="bit" DbType="Boolean" Direction="Input" ParameterName="@setAnom" Precision="1" ProviderType="Bit" Scale="0" Size="1" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</SelectCommand>
@@ -821,7 +822,7 @@ FROM v_Attr2Dtx</CommandText>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="stp_verificaDtx" msprop:Generator_TableClassName="stp_verificaDtxDataTable" msprop:Generator_TableVarName="tablestp_verificaDtx" msprop:Generator_TablePropName="stp_verificaDtx" msprop:Generator_RowDeletingName="stp_verificaDtxRowDeleting" msprop:Generator_RowChangingName="stp_verificaDtxRowChanging" msprop:Generator_RowEvHandlerName="stp_verificaDtxRowChangeEventHandler" msprop:Generator_RowDeletedName="stp_verificaDtxRowDeleted" msprop:Generator_UserTableName="stp_verificaDtx" msprop:Generator_RowChangedName="stp_verificaDtxRowChanged" msprop:Generator_RowEvArgName="stp_verificaDtxRowChangeEvent" msprop:Generator_RowClassName="stp_verificaDtxRow">
<xs:element name="stp_verificaDtx" msprop:Generator_TableClassName="stp_verificaDtxDataTable" msprop:Generator_TableVarName="tablestp_verificaDtx" msprop:Generator_RowChangedName="stp_verificaDtxRowChanged" msprop:Generator_TablePropName="stp_verificaDtx" msprop:Generator_RowDeletingName="stp_verificaDtxRowDeleting" msprop:Generator_RowChangingName="stp_verificaDtxRowChanging" msprop:Generator_RowEvHandlerName="stp_verificaDtxRowChangeEventHandler" msprop:Generator_RowDeletedName="stp_verificaDtxRowDeleted" msprop:Generator_RowClassName="stp_verificaDtxRow" msprop:Generator_UserTableName="stp_verificaDtx" msprop:Generator_RowEvArgName="stp_verificaDtxRowChangeEvent">
<xs:complexType>
<xs:sequence>
<xs:element name="StatoDtx" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnStatoDtx" msprop:Generator_ColumnPropNameInRow="StatoDtx" msprop:Generator_ColumnPropNameInTable="StatoDtxColumn" msprop:Generator_UserColumnName="StatoDtx" minOccurs="0">
@@ -834,7 +835,7 @@ FROM v_Attr2Dtx</CommandText>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="stp_conteggioDtx" msprop:Generator_TableClassName="stp_conteggioDtxDataTable" msprop:Generator_TableVarName="tablestp_conteggioDtx" msprop:Generator_TablePropName="stp_conteggioDtx" msprop:Generator_RowDeletingName="stp_conteggioDtxRowDeleting" msprop:Generator_RowChangingName="stp_conteggioDtxRowChanging" msprop:Generator_RowEvHandlerName="stp_conteggioDtxRowChangeEventHandler" msprop:Generator_RowDeletedName="stp_conteggioDtxRowDeleted" msprop:Generator_UserTableName="stp_conteggioDtx" msprop:Generator_RowChangedName="stp_conteggioDtxRowChanged" msprop:Generator_RowEvArgName="stp_conteggioDtxRowChangeEvent" msprop:Generator_RowClassName="stp_conteggioDtxRow">
<xs:element name="stp_conteggioDtx" msprop:Generator_TableClassName="stp_conteggioDtxDataTable" msprop:Generator_TableVarName="tablestp_conteggioDtx" msprop:Generator_RowChangedName="stp_conteggioDtxRowChanged" msprop:Generator_TablePropName="stp_conteggioDtx" msprop:Generator_RowDeletingName="stp_conteggioDtxRowDeleting" msprop:Generator_RowChangingName="stp_conteggioDtxRowChanging" msprop:Generator_RowEvHandlerName="stp_conteggioDtxRowChangeEventHandler" msprop:Generator_RowDeletedName="stp_conteggioDtxRowDeleted" msprop:Generator_RowClassName="stp_conteggioDtxRow" msprop:Generator_UserTableName="stp_conteggioDtx" msprop:Generator_RowEvArgName="stp_conteggioDtxRowChangeEvent">
<xs:complexType>
<xs:sequence>
<xs:element name="Particolare" msprop:Generator_ColumnVarNameInTable="columnParticolare" msprop:Generator_ColumnPropNameInRow="Particolare" msprop:Generator_ColumnPropNameInTable="ParticolareColumn" msprop:Generator_UserColumnName="Particolare" minOccurs="0">
@@ -848,7 +849,7 @@ FROM v_Attr2Dtx</CommandText>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="v_DtxAcquisiti" msprop:Generator_TableClassName="v_DtxAcquisitiDataTable" msprop:Generator_TableVarName="tablev_DtxAcquisiti" msprop:Generator_TablePropName="v_DtxAcquisiti" msprop:Generator_RowDeletingName="v_DtxAcquisitiRowDeleting" msprop:Generator_RowChangingName="v_DtxAcquisitiRowChanging" msprop:Generator_RowEvHandlerName="v_DtxAcquisitiRowChangeEventHandler" msprop:Generator_RowDeletedName="v_DtxAcquisitiRowDeleted" msprop:Generator_UserTableName="v_DtxAcquisiti" msprop:Generator_RowChangedName="v_DtxAcquisitiRowChanged" msprop:Generator_RowEvArgName="v_DtxAcquisitiRowChangeEvent" msprop:Generator_RowClassName="v_DtxAcquisitiRow">
<xs:element name="v_DtxAcquisiti" msprop:Generator_TableClassName="v_DtxAcquisitiDataTable" msprop:Generator_TableVarName="tablev_DtxAcquisiti" msprop:Generator_RowChangedName="v_DtxAcquisitiRowChanged" msprop:Generator_TablePropName="v_DtxAcquisiti" msprop:Generator_RowDeletingName="v_DtxAcquisitiRowDeleting" msprop:Generator_RowChangingName="v_DtxAcquisitiRowChanging" msprop:Generator_RowEvHandlerName="v_DtxAcquisitiRowChangeEventHandler" msprop:Generator_RowDeletedName="v_DtxAcquisitiRowDeleted" msprop:Generator_RowClassName="v_DtxAcquisitiRow" msprop:Generator_UserTableName="v_DtxAcquisiti" msprop:Generator_RowEvArgName="v_DtxAcquisitiRowChangeEvent">
<xs:complexType>
<xs:sequence>
<xs:element name="DataMatrix" msprop:Generator_ColumnVarNameInTable="columnDataMatrix" msprop:Generator_ColumnPropNameInRow="DataMatrix" msprop:Generator_ColumnPropNameInTable="DataMatrixColumn" msprop:Generator_UserColumnName="DataMatrix">
@@ -883,7 +884,7 @@ FROM v_Attr2Dtx</CommandText>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="stp_decodeDtx" msprop:Generator_TableClassName="stp_decodeDtxDataTable" msprop:Generator_TableVarName="tablestp_decodeDtx" msprop:Generator_RowChangedName="stp_decodeDtxRowChanged" msprop:Generator_TablePropName="stp_decodeDtx" msprop:Generator_RowDeletingName="stp_decodeDtxRowDeleting" msprop:Generator_RowChangingName="stp_decodeDtxRowChanging" msprop:Generator_RowEvHandlerName="stp_decodeDtxRowChangeEventHandler" msprop:Generator_RowDeletedName="stp_decodeDtxRowDeleted" msprop:Generator_RowClassName="stp_decodeDtxRow" msprop:Generator_UserTableName="stp_decodeDtx" msprop:Generator_RowEvArgName="stp_decodeDtxRowChangeEvent">
<xs:element name="stp_decodeDtx" msprop:Generator_TableClassName="stp_decodeDtxDataTable" msprop:Generator_TableVarName="tablestp_decodeDtx" msprop:Generator_TablePropName="stp_decodeDtx" msprop:Generator_RowDeletingName="stp_decodeDtxRowDeleting" msprop:Generator_RowChangingName="stp_decodeDtxRowChanging" msprop:Generator_RowEvHandlerName="stp_decodeDtxRowChangeEventHandler" msprop:Generator_RowDeletedName="stp_decodeDtxRowDeleted" msprop:Generator_UserTableName="stp_decodeDtx" msprop:Generator_RowChangedName="stp_decodeDtxRowChanged" msprop:Generator_RowEvArgName="stp_decodeDtxRowChangeEvent" msprop:Generator_RowClassName="stp_decodeDtxRow">
<xs:complexType>
<xs:sequence>
<xs:element name="PartNumber" msprop:Generator_ColumnVarNameInTable="columnPartNumber" msprop:Generator_ColumnPropNameInRow="PartNumber" msprop:Generator_ColumnPropNameInTable="PartNumberColumn" msprop:Generator_UserColumnName="PartNumber">
@@ -903,7 +904,7 @@ FROM v_Attr2Dtx</CommandText>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="stp_getFirstLastDtx" msprop:Generator_TableClassName="stp_getFirstLastDtxDataTable" msprop:Generator_TableVarName="tablestp_getFirstLastDtx" msprop:Generator_RowChangedName="stp_getFirstLastDtxRowChanged" msprop:Generator_TablePropName="stp_getFirstLastDtx" msprop:Generator_RowDeletingName="stp_getFirstLastDtxRowDeleting" msprop:Generator_RowChangingName="stp_getFirstLastDtxRowChanging" msprop:Generator_RowEvHandlerName="stp_getFirstLastDtxRowChangeEventHandler" msprop:Generator_RowDeletedName="stp_getFirstLastDtxRowDeleted" msprop:Generator_RowClassName="stp_getFirstLastDtxRow" msprop:Generator_UserTableName="stp_getFirstLastDtx" msprop:Generator_RowEvArgName="stp_getFirstLastDtxRowChangeEvent">
<xs:element name="stp_getFirstLastDtx" msprop:Generator_TableClassName="stp_getFirstLastDtxDataTable" msprop:Generator_TableVarName="tablestp_getFirstLastDtx" msprop:Generator_TablePropName="stp_getFirstLastDtx" msprop:Generator_RowDeletingName="stp_getFirstLastDtxRowDeleting" msprop:Generator_RowChangingName="stp_getFirstLastDtxRowChanging" msprop:Generator_RowEvHandlerName="stp_getFirstLastDtxRowChangeEventHandler" msprop:Generator_RowDeletedName="stp_getFirstLastDtxRowDeleted" msprop:Generator_UserTableName="stp_getFirstLastDtx" msprop:Generator_RowChangedName="stp_getFirstLastDtxRowChanged" msprop:Generator_RowEvArgName="stp_getFirstLastDtxRowChangeEvent" msprop:Generator_RowClassName="stp_getFirstLastDtxRow">
<xs:complexType>
<xs:sequence>
<xs:element name="DtxStart" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnDtxStart" msprop:Generator_ColumnPropNameInRow="DtxStart" msprop:Generator_ColumnPropNameInTable="DtxStartColumn" msprop:Generator_UserColumnName="DtxStart" minOccurs="0">
@@ -923,7 +924,7 @@ FROM v_Attr2Dtx</CommandText>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Dtx2UDC" msprop:Generator_TableClassName="Dtx2UDCDataTable" msprop:Generator_TableVarName="tableDtx2UDC" msprop:Generator_RowChangedName="Dtx2UDCRowChanged" msprop:Generator_TablePropName="Dtx2UDC" msprop:Generator_RowDeletingName="Dtx2UDCRowDeleting" msprop:Generator_RowChangingName="Dtx2UDCRowChanging" msprop:Generator_RowEvHandlerName="Dtx2UDCRowChangeEventHandler" msprop:Generator_RowDeletedName="Dtx2UDCRowDeleted" msprop:Generator_RowClassName="Dtx2UDCRow" msprop:Generator_UserTableName="Dtx2UDC" msprop:Generator_RowEvArgName="Dtx2UDCRowChangeEvent">
<xs:element name="Dtx2UDC" msprop:Generator_TableClassName="Dtx2UDCDataTable" msprop:Generator_TableVarName="tableDtx2UDC" msprop:Generator_TablePropName="Dtx2UDC" msprop:Generator_RowDeletingName="Dtx2UDCRowDeleting" msprop:Generator_RowChangingName="Dtx2UDCRowChanging" msprop:Generator_RowEvHandlerName="Dtx2UDCRowChangeEventHandler" msprop:Generator_RowDeletedName="Dtx2UDCRowDeleted" msprop:Generator_UserTableName="Dtx2UDC" msprop:Generator_RowChangedName="Dtx2UDCRowChanged" msprop:Generator_RowEvArgName="Dtx2UDCRowChangeEvent" msprop:Generator_RowClassName="Dtx2UDCRow">
<xs:complexType>
<xs:sequence>
<xs:element name="DataMatrix" msprop:Generator_ColumnVarNameInTable="columnDataMatrix" msprop:Generator_ColumnPropNameInRow="DataMatrix" msprop:Generator_ColumnPropNameInTable="DataMatrixColumn" msprop:Generator_UserColumnName="DataMatrix">
@@ -965,7 +966,7 @@ FROM v_Attr2Dtx</CommandText>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="stp_DtxGetAvailFreeAnom" msprop:Generator_TableClassName="stp_DtxGetAvailFreeAnomDataTable" msprop:Generator_TableVarName="tablestp_DtxGetAvailFreeAnom" msprop:Generator_TablePropName="stp_DtxGetAvailFreeAnom" msprop:Generator_RowDeletingName="stp_DtxGetAvailFreeAnomRowDeleting" msprop:Generator_RowChangingName="stp_DtxGetAvailFreeAnomRowChanging" msprop:Generator_RowEvHandlerName="stp_DtxGetAvailFreeAnomRowChangeEventHandler" msprop:Generator_RowDeletedName="stp_DtxGetAvailFreeAnomRowDeleted" msprop:Generator_UserTableName="stp_DtxGetAvailFreeAnom" msprop:Generator_RowChangedName="stp_DtxGetAvailFreeAnomRowChanged" msprop:Generator_RowEvArgName="stp_DtxGetAvailFreeAnomRowChangeEvent" msprop:Generator_RowClassName="stp_DtxGetAvailFreeAnomRow">
<xs:element name="stp_DtxGetAvailFreeAnom" msprop:Generator_TableClassName="stp_DtxGetAvailFreeAnomDataTable" msprop:Generator_TableVarName="tablestp_DtxGetAvailFreeAnom" msprop:Generator_RowChangedName="stp_DtxGetAvailFreeAnomRowChanged" msprop:Generator_TablePropName="stp_DtxGetAvailFreeAnom" msprop:Generator_RowDeletingName="stp_DtxGetAvailFreeAnomRowDeleting" msprop:Generator_RowChangingName="stp_DtxGetAvailFreeAnomRowChanging" msprop:Generator_RowEvHandlerName="stp_DtxGetAvailFreeAnomRowChangeEventHandler" msprop:Generator_RowDeletedName="stp_DtxGetAvailFreeAnomRowDeleted" msprop:Generator_RowClassName="stp_DtxGetAvailFreeAnomRow" msprop:Generator_UserTableName="stp_DtxGetAvailFreeAnom" msprop:Generator_RowEvArgName="stp_DtxGetAvailFreeAnomRowChangeEvent">
<xs:complexType>
<xs:sequence>
<xs:element name="DataMatrix" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnDataMatrix" msprop:Generator_ColumnPropNameInRow="DataMatrix" msprop:Generator_ColumnPropNameInTable="DataMatrixColumn" msprop:Generator_UserColumnName="DataMatrix" minOccurs="0">
@@ -978,7 +979,7 @@ FROM v_Attr2Dtx</CommandText>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Attr2Dtx" msprop:Generator_TableClassName="Attr2DtxDataTable" msprop:Generator_TableVarName="tableAttr2Dtx" msprop:Generator_TablePropName="Attr2Dtx" msprop:Generator_RowDeletingName="Attr2DtxRowDeleting" msprop:Generator_RowChangingName="Attr2DtxRowChanging" msprop:Generator_RowEvHandlerName="Attr2DtxRowChangeEventHandler" msprop:Generator_RowDeletedName="Attr2DtxRowDeleted" msprop:Generator_UserTableName="Attr2Dtx" msprop:Generator_RowChangedName="Attr2DtxRowChanged" msprop:Generator_RowEvArgName="Attr2DtxRowChangeEvent" msprop:Generator_RowClassName="Attr2DtxRow">
<xs:element name="Attr2Dtx" msprop:Generator_TableClassName="Attr2DtxDataTable" msprop:Generator_TableVarName="tableAttr2Dtx" msprop:Generator_RowChangedName="Attr2DtxRowChanged" msprop:Generator_TablePropName="Attr2Dtx" msprop:Generator_RowDeletingName="Attr2DtxRowDeleting" msprop:Generator_RowChangingName="Attr2DtxRowChanging" msprop:Generator_RowEvHandlerName="Attr2DtxRowChangeEventHandler" msprop:Generator_RowDeletedName="Attr2DtxRowDeleted" msprop:Generator_RowClassName="Attr2DtxRow" msprop:Generator_UserTableName="Attr2Dtx" msprop:Generator_RowEvArgName="Attr2DtxRowChangeEvent">
<xs:complexType>
<xs:sequence>
<xs:element name="idxAttr" msprop:Generator_ColumnVarNameInTable="columnidxAttr" msprop:Generator_ColumnPropNameInRow="idxAttr" msprop:Generator_ColumnPropNameInTable="idxAttrColumn" msprop:Generator_UserColumnName="idxAttr" type="xs:int" />
@@ -1014,7 +1015,7 @@ FROM v_Attr2Dtx</CommandText>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="v_Attr2Dtx" msprop:Generator_TableClassName="v_Attr2DtxDataTable" msprop:Generator_TableVarName="tablev_Attr2Dtx" msprop:Generator_RowChangedName="v_Attr2DtxRowChanged" msprop:Generator_TablePropName="v_Attr2Dtx" msprop:Generator_RowDeletingName="v_Attr2DtxRowDeleting" msprop:Generator_RowChangingName="v_Attr2DtxRowChanging" msprop:Generator_RowEvHandlerName="v_Attr2DtxRowChangeEventHandler" msprop:Generator_RowDeletedName="v_Attr2DtxRowDeleted" msprop:Generator_RowClassName="v_Attr2DtxRow" msprop:Generator_UserTableName="v_Attr2Dtx" msprop:Generator_RowEvArgName="v_Attr2DtxRowChangeEvent">
<xs:element name="v_Attr2Dtx" msprop:Generator_TableClassName="v_Attr2DtxDataTable" msprop:Generator_TableVarName="tablev_Attr2Dtx" msprop:Generator_TablePropName="v_Attr2Dtx" msprop:Generator_RowDeletingName="v_Attr2DtxRowDeleting" msprop:Generator_RowChangingName="v_Attr2DtxRowChanging" msprop:Generator_RowEvHandlerName="v_Attr2DtxRowChangeEventHandler" msprop:Generator_RowDeletedName="v_Attr2DtxRowDeleted" msprop:Generator_UserTableName="v_Attr2Dtx" msprop:Generator_RowChangedName="v_Attr2DtxRowChanged" msprop:Generator_RowEvArgName="v_Attr2DtxRowChangeEvent" msprop:Generator_RowClassName="v_Attr2DtxRow">
<xs:complexType>
<xs:sequence>
<xs:element name="Particolare" msprop:Generator_ColumnVarNameInTable="columnParticolare" msprop:Generator_ColumnPropNameInRow="Particolare" msprop:Generator_ColumnPropNameInTable="ParticolareColumn" msprop:Generator_UserColumnName="Particolare" minOccurs="0">
@@ -1050,7 +1051,7 @@ FROM v_Attr2Dtx</CommandText>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="stp_DtxCheckBlocked" msprop:Generator_TableClassName="stp_DtxCheckBlockedDataTable" msprop:Generator_TableVarName="tablestp_DtxCheckBlocked" msprop:Generator_TablePropName="stp_DtxCheckBlocked" msprop:Generator_RowDeletingName="stp_DtxCheckBlockedRowDeleting" msprop:Generator_RowChangingName="stp_DtxCheckBlockedRowChanging" msprop:Generator_RowEvHandlerName="stp_DtxCheckBlockedRowChangeEventHandler" msprop:Generator_RowDeletedName="stp_DtxCheckBlockedRowDeleted" msprop:Generator_UserTableName="stp_DtxCheckBlocked" msprop:Generator_RowChangedName="stp_DtxCheckBlockedRowChanged" msprop:Generator_RowEvArgName="stp_DtxCheckBlockedRowChangeEvent" msprop:Generator_RowClassName="stp_DtxCheckBlockedRow">
<xs:element name="stp_DtxCheckBlocked" msprop:Generator_TableClassName="stp_DtxCheckBlockedDataTable" msprop:Generator_TableVarName="tablestp_DtxCheckBlocked" msprop:Generator_RowChangedName="stp_DtxCheckBlockedRowChanged" msprop:Generator_TablePropName="stp_DtxCheckBlocked" msprop:Generator_RowDeletingName="stp_DtxCheckBlockedRowDeleting" msprop:Generator_RowChangingName="stp_DtxCheckBlockedRowChanging" msprop:Generator_RowEvHandlerName="stp_DtxCheckBlockedRowChangeEventHandler" msprop:Generator_RowDeletedName="stp_DtxCheckBlockedRowDeleted" msprop:Generator_RowClassName="stp_DtxCheckBlockedRow" msprop:Generator_UserTableName="stp_DtxCheckBlocked" msprop:Generator_RowEvArgName="stp_DtxCheckBlockedRowChangeEvent">
<xs:complexType>
<xs:sequence>
<xs:element name="DataMatrix" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnDataMatrix" msprop:Generator_ColumnPropNameInRow="DataMatrix" msprop:Generator_ColumnPropNameInTable="DataMatrixColumn" msprop:Generator_UserColumnName="DataMatrix" minOccurs="0">
+2 -2
View File
@@ -5,7 +5,7 @@
using System.Reflection;
[assembly: AssemblyVersion("2.5.697.1621")]
[assembly: AssemblyFileVersion("2.5.697.1621")]
[assembly: AssemblyVersion("2.5.698.1622")]
[assembly: AssemblyFileVersion("2.5.698.1622")]
[assembly: AssemblyCopyright("Steamware © 2007-2014")]
[assembly: AssemblyCompany("Steamware")]
+2 -2
View File
@@ -6,8 +6,8 @@
using System.Reflection;
[assembly: AssemblyVersion("2.5.697.<#= this.RevisionNumber #>")]
[assembly: AssemblyFileVersion("2.5.697.<#= this.RevisionNumber #>")]
[assembly: AssemblyVersion("2.5.698.<#= this.RevisionNumber #>")]
[assembly: AssemblyFileVersion("2.5.698.<#= this.RevisionNumber #>")]
[assembly: AssemblyCopyright("Steamware © 2007-<#= DateTime.Now.Year #>")]
[assembly: AssemblyCompany("Steamware")]
<#+