private void fillSpacesOrder()
        {
            DataTable table = OrdersServices.GetThisOrder(currentItemSelected);

            DatePickerDate.SelectedDate = table.Rows[0]["or_date"] as DateTime?;
            TextBoxName.Text            = table.Rows[0]["or_client_name"].ToString();
            TextBoxPhone.Text           = table.Rows[0]["or_phone"].ToString();
            TextBoxProduct.Text         = table.Rows[0]["or_product_description"].ToString();
            TextBoxPrecio.Text          = table.Rows[0]["or_price"].ToString();
            TextBoxAnticipe.Text        = table.Rows[0]["or_anticipe"].ToString();
            TextBoxObservation.Text     = table.Rows[0]["or_observation"].ToString();
            TextBoxNumeroRecibo.Text    = table.Rows[0]["or_order"].ToString();
            bool state = (bool)table.Rows[0]["or_state"];

            if (state)
            {
                ComboBoxState.SelectedIndex = 1;
            }
            else
            {
                ComboBoxState.SelectedIndex = 0;
            }
            DataTable userData = UsersServices.GetThisUser(table.Rows[0]["or_user_owner"].ToString());

            TextBoxUsuario.Text = userData.Rows[0]["us_name"].ToString() + " " + userData.Rows[0]["us_paterno"].ToString() + " " + userData.Rows[0]["us_materno"].ToString();
        }