Files
NKC/NKC_WF/MachineLoad.aspx.cs
T
2019-09-23 18:53:59 +02:00

22 lines
661 B
C#

using System;
namespace NKC_WF
{
public partial class MachineLoad : BasePage
{
protected void Page_Load(object sender, EventArgs e)
{
cmp_stackLoading.eh_doRefresh += Cmp_stackLoading_eh_doRefresh;
// da impostare gestione lettura Barcode: quando VALIDO e IN SEQUENZA --> position passa a 5...
}
private void Cmp_stackLoading_eh_doRefresh(object sender, EventArgs e)
{
cmp_ML_ShDet.BatchId = cmp_stackLoading.BatchIdCurr;
cmp_ML_ShDet1.BatchId = cmp_stackLoading.BatchIdCurr;
cmp_ML_ShDet2.BatchId = cmp_stackLoading.BatchIdCurr;
cmp_ML_ShDet3.BatchId = cmp_stackLoading.BatchIdCurr;
}
}
}