Exemplo n.º 1
0
        private void buttonAccept_Click(object sender, EventArgs e)
        {
            Period period = this.getDataFromForm();

            if (period != null)
            {
                Boolean addOk = HabitacionHelper.closePeriod(hotelId, floorId, roomId, period);
                if (addOk)
                {
                    MessageBox.Show("Se agrego correctamente periodo cerrado");
                    this.closeWindow();
                }
                else
                {
                    MessageBox.Show("Existen reserva o estadia para el momento elegido");
                }
            }
        }
Exemplo n.º 2
0
 private void saveOrUpdate(Habitacion roomData)
 {
     if (!edit)
     {
         if (HabitacionHelper.existHotelRoom(roomData.hotel, roomData.floor, roomData.id))
         {
             MessageBox.Show("Ya existe una habitacion para ese hotel con ese piso", "", MessageBoxButtons.OK, MessageBoxIcon.Error);
             return;
         }
     }
     HabitacionHelper.save(roomData);
     if (edit)
     {
         MessageBox.Show("Modificacion de habitacion realizada con exito");
     }
     else
     {
         MessageBox.Show("Creacion de habitacion realizada con exito");
     }
     this.closeWindow();
 }
Exemplo n.º 3
0
        private void FormABMHabitacionModify_Load(object sender, EventArgs e)
        {
            this.ControlBox      = false;
            this.FormBorderStyle = FormBorderStyle.None;
            this.WindowState     = FormWindowState.Maximized;

            Front.fillComboBox(comboBoxFront);
            TypeRoom.fillComboBox(comboBoxType);
            HotelUserHelper.fillComboBox(comboBoxHotel);

            if (edit)
            {
                Habitacion room = HabitacionHelper.getRoomData(hotelId, floorId, roomId);
                this.textBoxRoom.Text            = room.id.ToString();
                this.textBoxRoom.Enabled         = false;
                this.textBoxFloor.Text           = room.floor.ToString();
                this.textBoxFloor.Enabled        = false;
                this.comboBoxHotel.SelectedIndex = this.comboBoxHotel.FindStringExact(room.hotelName.ToString());
                this.comboBoxHotel.Enabled       = false;
                this.comboBoxType.SelectedIndex  = this.comboBoxType.FindStringExact(room.typeDescription);
                this.comboBoxFront.SelectedIndex = this.comboBoxFront.FindStringExact(room.frontDescription);
                this.textBoxComodity.Text        = room.comodity;
            }
        }
Exemplo n.º 4
0
        private void buttonSearch_Click(object sender, EventArgs e)
        {
            Habitacion room = this.getDataToSearch();

            HabitacionHelper.search(room, dgvRoom);
        }