public InputInvoiceNoteListResponse Sync(SyncInputInvoiceNoteRequest request) { InputInvoiceNoteListResponse response = new InputInvoiceNoteListResponse(); try { response.InputInvoiceNotes = new List <InputInvoiceNoteViewModel>(); if (request.LastUpdatedAt != null) { response.InputInvoiceNotes.AddRange(unitOfWork.GetInputInvoiceNoteRepository() .GetInputInvoiceNotesNewerThen(request.CompanyId, (DateTime)request.LastUpdatedAt) ?.ConvertToInputInvoiceNoteViewModelList() ?? new List <InputInvoiceNoteViewModel>()); } else { response.InputInvoiceNotes.AddRange(unitOfWork.GetInputInvoiceNoteRepository() .GetInputInvoiceNotes(request.CompanyId) ?.ConvertToInputInvoiceNoteViewModelList() ?? new List <InputInvoiceNoteViewModel>()); } response.Success = true; } catch (Exception ex) { response.InputInvoiceNotes = new List <InputInvoiceNoteViewModel>(); response.Success = false; response.Message = ex.Message; } return(response); }
public InputInvoiceNoteListResponse Sync(SyncInputInvoiceNoteRequest request) { InputInvoiceNoteListResponse response = new InputInvoiceNoteListResponse(); try { response = WpfApiHandler.SendToApi <SyncInputInvoiceNoteRequest, InputInvoiceNoteViewModel, InputInvoiceNoteListResponse>(request, "Sync"); } catch (Exception ex) { response.InputInvoiceNotes = new List <InputInvoiceNoteViewModel>(); response.Success = false; response.Message = ex.Message; } return(response); }
public JsonResult Sync([FromBody] SyncInputInvoiceNoteRequest request) { InputInvoiceNoteListResponse response = new InputInvoiceNoteListResponse(); try { response = this.InputInvoiceNoteService.Sync(request); } catch (Exception ex) { response.Success = false; response.Message = ex.Message; } return(Json(response, new Newtonsoft.Json.JsonSerializerSettings() { Formatting = Newtonsoft.Json.Formatting.Indented })); }
public void Sync(IInputInvoiceNoteService InputInvoiceNoteservice, Action <int, int> callback = null) { try { SyncInputInvoiceNoteRequest request = new SyncInputInvoiceNoteRequest(); request.CompanyId = MainWindow.CurrentCompanyId; request.LastUpdatedAt = GetLastUpdatedAt(MainWindow.CurrentCompanyId); int toSync = 0; int syncedItems = 0; InputInvoiceNoteListResponse response = InputInvoiceNoteservice.Sync(request); if (response.Success) { toSync = response?.InputInvoiceNotes?.Count ?? 0; List <InputInvoiceNoteViewModel> items = response.InputInvoiceNotes; using (SqliteConnection db = new SqliteConnection("Filename=SirmiumERPGFC.db")) { db.Open(); using (var transaction = db.BeginTransaction()) { SqliteCommand deleteCommand = db.CreateCommand(); deleteCommand.CommandText = "DELETE FROM InputInvoiceNotes WHERE Identifier = @Identifier"; SqliteCommand insertCommand = db.CreateCommand(); insertCommand.CommandText = SqlCommandInsertPart; foreach (var item in items) { deleteCommand.Parameters.AddWithValue("@Identifier", item.Identifier); deleteCommand.ExecuteNonQuery(); deleteCommand.Parameters.Clear(); if (item.IsActive) { item.IsSynced = true; insertCommand = AddCreateParameters(insertCommand, item); insertCommand.ExecuteNonQuery(); insertCommand.Parameters.Clear(); syncedItems++; callback?.Invoke(syncedItems, toSync); } } transaction.Commit(); } db.Close(); } } else { throw new Exception(response.Message); } } catch (Exception ex) { MainWindow.ErrorMessage = ex.Message; } }