22 lines
661 B
C#
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;
|
|
}
|
|
}
|
|
} |