fix visualizzazione elenco UDC caricati (sx) in postazioni finiti e finitiSC
This commit is contained in:
@@ -27,6 +27,26 @@ namespace GMW.WebUserControls
|
||||
IdxPosizioneOutTempName = "IdxPosizioneFinTemp";
|
||||
IdxPosizioneOutTemp = memLayer.ML.CRI(IdxPosizioneOutTempName);
|
||||
tipoCartCurr = tipoCartellino.cartFiniti;
|
||||
idxCellaSx = Postazione.currIdxCella;
|
||||
}
|
||||
/// <summary>
|
||||
/// IDX cella associata alla linea corrente
|
||||
/// </summary>
|
||||
protected int idxCellaSx
|
||||
{
|
||||
get
|
||||
{
|
||||
int answ = 0;
|
||||
if (memLayer.ML.isInSessionObject("IdxCellaLineaFiniti"))
|
||||
{
|
||||
answ = memLayer.ML.IntSessionObj("IdxCellaLineaFiniti");
|
||||
}
|
||||
return answ;
|
||||
}
|
||||
set
|
||||
{
|
||||
memLayer.ML.setSessionVal("IdxCellaLineaFiniti", value);
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// Codice AL target
|
||||
|
||||
@@ -59,7 +59,7 @@
|
||||
</asp:GridView>
|
||||
<asp:ObjectDataSource ID="ods" runat="server" OldValuesParameterFormatString="Original_{0}" SelectMethod="getUdcDetailByIdxCella" TypeName="GMW_data.DS_magazzinoTableAdapters.v_UdcDetailTableAdapter" OnDataBinding="ods_DataBinding">
|
||||
<SelectParameters>
|
||||
<asp:SessionParameter Name="IdxCella" Type="Int32" SessionField="IdxCellaLineaFiniti" DefaultValue="0" />
|
||||
<asp:SessionParameter Name="IdxCella" Type="Int32" SessionField="IdxCellaLineaFinitiSC" DefaultValue="0" />
|
||||
</SelectParameters>
|
||||
</asp:ObjectDataSource>
|
||||
<asp:Label ID="lblNumRec" runat="server" CssClass="didascalia" />
|
||||
|
||||
@@ -27,6 +27,26 @@ namespace GMW.WebUserControls
|
||||
IdxPosizioneOutTempName = "IdxPosizioneFinLavTemp";
|
||||
IdxPosizioneOutTemp = memLayer.ML.CRI(IdxPosizioneOutTempName);
|
||||
tipoCartCurr = tipoCartellino.cartFiniti;
|
||||
idxCellaSx = Postazione.currIdxCella;
|
||||
}
|
||||
/// <summary>
|
||||
/// IDX cella associata alla linea corrente
|
||||
/// </summary>
|
||||
protected int idxCellaSx
|
||||
{
|
||||
get
|
||||
{
|
||||
int answ = 0;
|
||||
if (memLayer.ML.isInSessionObject("IdxCellaLineaFinitiSC"))
|
||||
{
|
||||
answ = memLayer.ML.IntSessionObj("IdxCellaLineaFinitiSC");
|
||||
}
|
||||
return answ;
|
||||
}
|
||||
set
|
||||
{
|
||||
memLayer.ML.setSessionVal("IdxCellaLineaFinitiSC", value);
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// Codice AL target
|
||||
|
||||
Binary file not shown.
Binary file not shown.
+2
-2
@@ -5,7 +5,7 @@
|
||||
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: AssemblyVersion("3.5.898.2434")]
|
||||
[assembly: AssemblyFileVersion("3.5.898.2434")]
|
||||
[assembly: AssemblyVersion("3.5.899.2434")]
|
||||
[assembly: AssemblyFileVersion("3.5.899.2434")]
|
||||
[assembly: AssemblyCopyright("Steamware © 2007-2016")]
|
||||
[assembly: AssemblyCompany("Steamware")]
|
||||
|
||||
+2
-2
@@ -6,8 +6,8 @@
|
||||
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: AssemblyVersion("3.5.898.<#= this.RevisionNumber #>")]
|
||||
[assembly: AssemblyFileVersion("3.5.898.<#= this.RevisionNumber #>")]
|
||||
[assembly: AssemblyVersion("3.5.899.<#= this.RevisionNumber #>")]
|
||||
[assembly: AssemblyFileVersion("3.5.899.<#= this.RevisionNumber #>")]
|
||||
[assembly: AssemblyCopyright("Steamware © 2007-<#= DateTime.Now.Year #>")]
|
||||
[assembly: AssemblyCompany("Steamware")]
|
||||
<#+
|
||||
|
||||
Reference in New Issue
Block a user