Exemple #1
0
        //手工打折汇总
        private void btnManulDiscount_Click(object sender, EventArgs e)
        {
            var    db  = new BathDBDataContext(LogIn.connectionString);
            string pro = ((Button)sender).Text;

            if (!BathClass.getAuthority(db, LogIn.m_User, pro))
            {
                GeneralClass.printErrorMsg("权限不够,不能访问!");
                return;
            }

            ManulDiscountForm ManulDiscountForm = new ManulDiscountForm();

            ManulDiscountForm.ShowDialog();
        }
Exemple #2
0
        //手工打折汇总
        private void btnManulDiscount_Click(object sender, EventArgs e)
        {
            var db = new BathDBDataContext(LogIn.connectionString);
            string pro = ((Button)sender).Text;
            if (!BathClass.getAuthority(db, LogIn.m_User, pro))
            {
                GeneralClass.printErrorMsg("权限不够,不能访问!");
                return;
            }

            ManulDiscountForm ManulDiscountForm = new ManulDiscountForm();
            ManulDiscountForm.ShowDialog();
        }