Ejemplo n.º 1
0
 private void RefundCompleteExchange(int rowIndex)
 {
     _dataGridViewRefund.Rows[rowIndex].Cells[_dataGridViewRefund.Columns.IndexOf(ColumnRfdStatus)].Value = "Completed";
     Refund.GetRefund(_intFnc.CurrentActivity.Refunds, _dataGridViewRefund.Rows[rowIndex].Cells[ColumnRfdId.Index].Value.ToString()).CurrentStatus = Refund.Status.REFUNDED;
 }
Ejemplo n.º 2
0
 private void RefundCancel(int rowIndex)
 {
     _dataGridViewRefund.Rows[rowIndex].Cells[_dataGridViewRefund.Columns.IndexOf(ColumnRfdStatus)].Value = "Canceled";
     Refund.GetRefund(_intFnc.CurrentActivity.Refunds, _dataGridViewRefund.Rows[rowIndex].Cells[ColumnRfdId.Index].Value.ToString()).CurrentStatus = Refund.Status.CANCELED;
 }
Ejemplo n.º 3
0
 private void RefundGift(int rowIndex)
 {
     _dataGridViewRefund.Rows[rowIndex].Cells[_dataGridViewRefund.Columns.IndexOf(ColumnRfdStatus)].Value = "Gift";
     Refund.GetRefund(_intFnc.CurrentActivity.Refunds, _dataGridViewRefund.Rows[rowIndex].Cells[ColumnRfdId.Index].Value.ToString()).CurrentStatus = Refund.Status.GIFT;
 }