Esempio n. 1
0
        private void Confirmar_Click(object sender, EventArgs e)
        {
            _owner = (ComprarCuponForm)this.Owner;
            this._owner.Model.CouponRow = this.cuponRow;
            if ((int)this.cantidad.Value <= 0)
            {
                MessageBox.Show("Debe elegir una cantidad positiva");
            }
            else if ((int)this.cantidad.Value > Convert.ToDecimal(this.cuponRow.Cells[6].Value))
            {
                MessageBox.Show("No hay stock");
            }
            else if (this.cuponRow.Cells[7].Value!=DBNull.Value)
            {
                if ((int)this.cantidad.Value > Convert.ToDecimal(this.cuponRow.Cells[7].Value))
                {
                    MessageBox.Show("No puede comprar tanta cantidad de un mismo cupon");
                }
                else
                {
                    this._owner.Model.comprar((int)this.cantidad.Value);
                    this.grilla.DataSource = this._owner.Model.cargarCupones();
                    this.Close();

                }
            }
            else
            {
                this._owner.Model.comprar((int)this.cantidad.Value);
                this.grilla.DataSource = this._owner.Model.cargarCupones();
                this.Close();

            }
        }
Esempio n. 2
0
 private void Confirmar_Click(object sender, EventArgs e)
 {
     _owner = (ComprarCuponForm)this.Owner;
     this._owner.Model.CouponRow = this.cuponRow;
     if ((int)this.cantidad.Value <= 0)
     {
         MessageBox.Show("Debe elegir una cantidad positiva");
     }
     else if ((int)this.cantidad.Value > Convert.ToDecimal(this.cuponRow.Cells[6].Value))
     {
         MessageBox.Show("No hay stock");
     }
     else if (this.cuponRow.Cells[7].Value != DBNull.Value)
     {
         if ((int)this.cantidad.Value > Convert.ToDecimal(this.cuponRow.Cells[7].Value))
         {
             MessageBox.Show("No puede comprar tanta cantidad de un mismo cupon");
         }
         else
         {
             this._owner.Model.comprar((int)this.cantidad.Value);
             this.grilla.DataSource = this._owner.Model.cargarCupones();
             this.Close();
         }
     }
     else
     {
         this._owner.Model.comprar((int)this.cantidad.Value);
         this.grilla.DataSource = this._owner.Model.cargarCupones();
         this.Close();
     }
 }
Esempio n. 3
0
 private void comprar_cupon_Click(object sender, EventArgs e)
 {
     ComprarCupon.ComprarCuponForm cc = new ComprarCupon.ComprarCuponForm(this._Owner.Model1.UserRow);
     cc.Owner = this;
     //this.Hide();
     cc.Show();
 }
Esempio n. 4
0
 private void comprar_cupon_Click(object sender, EventArgs e)
 {
     ComprarCupon.ComprarCuponForm cc = new ComprarCupon.ComprarCuponForm(this._Owner.Model1.UserRow);
     cc.Owner = this;
     //this.Hide();
     cc.Show();
 }