using AppData; using System; namespace NKC_WF { public partial class MachineUnloadSmart : BasePage { protected void Page_Load(object sender, EventArgs e) { if (!Page.IsPostBack) { ((SiteMaster)this.Master).showSearch = false; doUpdate(); } } /// /// Batch corrente... /// public int BatchId { set { hfBatchID.Value = value.ToString(); } get { int answ = 0; int.TryParse(hfBatchID.Value, out answ); return answ; } } /// /// Aggiorna componente principale e child components /// private void doUpdate() { setCurrData(); // aggiorno child cmp_unloadSmart.BatchId = BatchId; } /// /// Imposta dati correnti (Bunk / Sheet) /// private void setCurrData() { // recupero bunk corrente... DS_App.StackListRow currBunk = ComLib.getCurrBunk(); if (currBunk != null) { BatchId = currBunk.BatchID; } } } }