コード例 #1
0
        //Cofirm tạo phiếu mới
        private void btnSaveofCoupon_Click(object sender, EventArgs e)
        {
            errProdive.Clear();
            PhieuNhapXuat editCoupon = _service.getCoupon(txtIDCoupontoEdit.Text);

            try
            {
                target.TrangThai = cboStatustoEdit.SelectedItem.ToString();
                if (_service.CreateCoupon(target))
                {
                    View();
                    dgvCoupon.CurrentCell = dgvCoupon[0, dgvCoupon.Rows.Count - 1];
                    dgvCoupon.Rows[dgvCoupon.Rows.Count - 1].Selected = true;
                }
                EnabledButtonCoupon(false);
            }
            catch
            {
                errProdive.SetError(cboStatustoEdit, "Vui lòng chọn dữ liệu hợp lệ ");
            }
        }