Exemple #1
0
        private void cboSelectionType_SelectionChanged(object sender, SelectionChangedEventArgs e)
        {
            UProductPriceDiscountTray control = this;

            if (control.OnChanged != null)
            {
                control.OnChanged(control, null);
            }

            ComboBox cbo = sender as ComboBox;

            if (lkupItem != null)
            {
                if (cbo.SelectedIndex == 0)
                {
                    lkupItem.Lookup = LookupSearchType2.ServiceLookup;
                }
                else if (cbo.SelectedIndex == 1)
                {
                    lkupItem.Lookup = LookupSearchType2.InventoryItemLookup;
                }
                else if (cbo.SelectedIndex == 2)
                {
                    lkupItem.Lookup = LookupSearchType2.ItemCategoryLookup;
                }

                lkupItem.SelectedObject = null;
            }

            updateObject();
        }
Exemple #2
0
        private void lkupItem_SelectedObjectChanged(object sender, EventArgs e)
        {
            UProductPriceDiscountTray control = this;

            if (control.OnChanged != null)
            {
                control.OnChanged(control, null);
            }

            if (lkupItem != null)
            {
                updateObject();
            }
        }
Exemple #3
0
        private void cbxStdPrice_Unchecked(object sender, RoutedEventArgs e)
        {
            UProductPriceDiscountTray control = this;

            if (control.OnChanged != null)
            {
                control.OnChanged(control, null);
            }

            MPackageTrayPriceDiscount v = (MPackageTrayPriceDiscount)ProductSelected;

            if (v == null)
            {
                return;
            }

            v.StdPriceFlag = "N";
        }
Exemple #4
0
        private void cmdDiscInterval_Click(object sender, RoutedEventArgs e)
        {
            MPackageTrayPriceDiscount v = (MPackageTrayPriceDiscount)ProductSelected;

            if (v == null)
            {
                return;
            }

            UProductPriceDiscountTray control = this;

            WinAddEditIntervalConfigEx w = new WinAddEditIntervalConfigEx(v.DiscountDefination, v.Name, "DISCOUNT");

            w.ShowDialog();
            if (w.IsOK)
            {
                v.DiscountDefination = w.ConfigString;

                if (control.OnChanged != null)
                {
                    control.OnChanged(control, null);
                }
            }
        }