private void lkupItem_SelectedObjectChanged(object sender, EventArgs e) { UPostGiftBuySelection control = this; if (control.OnChanged != null) { control.OnChanged(control, null); } if (lkupItem != null) { lblUnit.Content = ""; if (lkupItem.Lookup == LookupSearchType2.ServiceLookup) { MService sv = (MService)lkupItem.SelectedObject; if (sv != null) { lblUnit.Content = sv.ServiceUOMName; } } else if (lkupItem.Lookup == LookupSearchType2.InventoryItemLookup) { MInventoryItem sv = (MInventoryItem)lkupItem.SelectedObject; if (sv != null) { lblUnit.Content = sv.ItemUOMName; } } updateObject(); } }
private void txtQuantity_TextChanged(object sender, TextChangedEventArgs e) { UPostGiftBuySelection control = this; if (control.OnChanged != null) { control.OnChanged(control, null); } updateObject(); }
private void cbxEnable_Unchecked(object sender, RoutedEventArgs e) { UPostGiftBuySelection control = this; if (control.OnChanged != null) { control.OnChanged(control, null); } MPackageVoucher v = (MPackageVoucher)ProductSelected; if (v == null) { return; } v.EnabledFlag = "N"; }
private void cboSelectionType_SelectionChanged(object sender, SelectionChangedEventArgs e) { UPostGiftBuySelection control = this; if (control.OnChanged != null) { control.OnChanged(control, null); } ComboBox cbo = sender as ComboBox; if (lkupItem != null) { lkupItem.Lookup = LookupSearchType2.ServiceLookup; lkupItem.SelectedObject = null; } MMasterRef mr = (MMasterRef)cbo.SelectedItem; if (mr == null) { return; } if (mr.MasterID.Equals("1")) { lkupItem.Lookup = LookupSearchType2.ServiceLookup; } else if (mr.MasterID.Equals("2")) { lkupItem.Lookup = LookupSearchType2.InventoryItemLookup; } lkupItem.SelectedObject = null; updateObject(); }