Esempio n. 1
0
 private void approveBatch()
 {
     transaction.CompleteBatchTransactions(SelectedBatch);
     SelectedBatch.IsCompleted();
     BatchTransactions = null;
     Comments          = null;
     sendBatchMessage($"Batch Number {SelectedBatch.BatchNumber} has been completed.");
     BuildLists();
 }
Esempio n. 2
0
        public async void AddBatchNumber()
        {
            SelectedBatch.SendForConfirmation();
            BatchMessage = new SnackbarMessageQueue();
            BatchMessage.Enqueue($"Batch {SelectedBatch.BatchNumber} has been sent to the Approver.");
            BatchDialogOpen   = false;
            SelectedBatch     = null;
            BatchTransactions = null;
            Batches           = await batch.GetWorkingBatches();

            Transactions = await EsrTransaction.GetNotBatched();

            SearchTransactions();
        }