/// <summary>
 /// Handles the Click event of the btnReturnToApprovalStep control.
 /// </summary>
 /// <param name="sender">The source of the event.</param>
 /// <param name="e">The <see cref="EventArgs" /> instance containing the event data.</param>
 private void btnReturnToApprovalStep_Click(object sender, EventArgs e)
 {
     if (XtraMessageBox.Show("Are you sure you would like to return this order to the picklist?", "Confirmation", MessageBoxButtons.YesNo) == System.Windows.Forms.DialogResult.Yes)
     {
         BLL.Order order = new Order();
         order.LoadByPrimaryKey(_orderID);
         order.ReturnBacktoPicklistConfirmation();
         BindOutstandingPicklists();
         gridOutstandingPicklistDetail.DataSource = null;
     }
 }
 /// <summary>
 /// Handles the Click event of the btnReturnToApprovalStep control.
 /// </summary>
 /// <param name="sender">The source of the event.</param>
 /// <param name="e">The <see cref="EventArgs" /> instance containing the event data.</param>
 private void btnReturnToApprovalStep_Click(object sender, EventArgs e)
 {
     if (XtraMessageBox.Show("Are you sure you would like to return this order to the picklist?", "Confirmation", MessageBoxButtons.YesNo) == System.Windows.Forms.DialogResult.Yes)
     {
         BLL.Order order = new Order();
         order.LoadByPrimaryKey(_orderID);
         order.ReturnBacktoPicklistConfirmation();
         BindOutstandingPicklists();
         gridOutstandingPicklistDetail.DataSource = null;
     }
 }