public void List_Option(ListOption pAction)
        {
            fAction = pAction;

            switch (fAction)
            {
            case ListOption.active:

                if (chk_notactive.Checked == true)
                {
                    LoadData(CVouchertype_exten.NotActive(new DAL()));
                }
                else
                {
                    LoadData(CVouchertype_exten.Active(new DAL()));
                }

                break;

            case ListOption.notactive:

                if (chk_notactive.Checked == true)
                {
                    LoadData(CVouchertype_exten.NotActive(new DAL()));
                }
                else
                {
                    LoadData(CVouchertype_exten.Active(new DAL()));
                }

                break;

            case ListOption.Search:
                if (txt_vouchertype_name.Text != "")
                {
                    List <Vouchertype> list = new List <Vouchertype>
                    {
                        CVouchertype_exten.SearchName(txt_vouchertype_name.Text, new DAL())
                    };
                    LoadData(list);
                }
                else
                {
                    LoadData(CVouchertype_exten.Active(new DAL()));
                }
                break;

            default:
                LoadData(CVouchertype_exten.Active(new DAL()));
                break;
            }
        }
Exemple #2
0
        public void SetAction(BtnEvent pAction, string pPkValue)
        {
            fAction = pAction;

            switch (fAction)
            {
            case BtnEvent.Open:
                btn_save.Text = "&CLOSE";
                obj           = CVouchertype_exten.PKId(pPkValue, new DAL());
                this.EnableControls(false);
                break;

            case BtnEvent.New:
                btn_save.Text = "&SAVE";
                obj           = CVouchertype.GetNew;
                this.EnableControls(true);
                break;

            case BtnEvent.Edit:
                btn_save.Text = "&UPDATE";
                obj           = CVouchertype_exten.PKId(pPkValue, new DAL());
                this.EnableControls(true);
                break;

            case BtnEvent.Delete:
                btn_save.Text = "CONFIRM\r\n&DELETE";
                obj           = CVouchertype_exten.PKId(pPkValue, new DAL());
                this.EnableControls(false);
                break;

            case BtnEvent.Print:
                btn_save.Text = "&PRINT";
                obj           = CVouchertype_exten.PKId(pPkValue, new DAL());
                this.EnableControls(false);
                break;
            }

            this.LoadData();
        }
Exemple #3
0
 void txt_vouchertype_LookupUpdate(object sender, EventArgs e)
 {
     txt_vouchertype_name.LookupList = CVouchertype_exten.GetforLookup(new DAL());
 }