Exemplo n.º 1
0
        public PhysicalPersonListResponse Sync(SyncPhysicalPersonRequest request)
        {
            PhysicalPersonListResponse response = new PhysicalPersonListResponse();

            try
            {
                response.PhysicalPersons = new List <PhysicalPersonViewModel>();

                if (request.LastUpdatedAt != null)
                {
                    response.PhysicalPersons.AddRange(unitOfWork.GetPhysicalPersonRepository()
                                                      .GetPhysicalPersonsNewerThen(request.CompanyId, (DateTime)request.LastUpdatedAt)
                                                      ?.ConvertToPhysicalPersonViewModelList() ?? new List <PhysicalPersonViewModel>());
                }
                else
                {
                    response.PhysicalPersons.AddRange(unitOfWork.GetPhysicalPersonRepository()
                                                      .GetPhysicalPersons(request.CompanyId)
                                                      ?.ConvertToPhysicalPersonViewModelList() ?? new List <PhysicalPersonViewModel>());
                }

                response.Success = true;
            }
            catch (Exception ex)
            {
                response.PhysicalPersons = new List <PhysicalPersonViewModel>();
                response.Success         = false;
                response.Message         = ex.Message;
            }

            return(response);
        }
        public PhysicalPersonListResponse Sync(SyncPhysicalPersonRequest request)
        {
            PhysicalPersonListResponse response = new PhysicalPersonListResponse();

            try
            {
                response = WpfApiHandler.SendToApi <SyncPhysicalPersonRequest, PhysicalPersonViewModel, PhysicalPersonListResponse>(request, "Sync");
            }
            catch (Exception ex)
            {
                response.PhysicalPersons = new List <PhysicalPersonViewModel>();
                response.Success         = false;
                response.Message         = ex.Message;
            }

            return(response);
        }
        public JsonResult Sync([FromBody] SyncPhysicalPersonRequest request)
        {
            PhysicalPersonListResponse response = new PhysicalPersonListResponse();

            try
            {
                response = this.PhysicalPersonService.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 PhysicalPersonListResponse GetUnSyncedItems(int companyId)
        //{
        //	PhysicalPersonListResponse response = new PhysicalPersonListResponse();
        //	List<PhysicalPersonViewModel> viewModels = new List<PhysicalPersonViewModel>();

        //	using (SqliteConnection db = new SqliteConnection("Filename=SirmiumERPGFC.db"))
        //	{
        //		db.Open();
        //		try
        //		{
        //			SqliteCommand selectCommand = new SqliteCommand(
        //				SqlCommandSelectPart +
        //				"FROM PhysicalPersons " +
        //				"WHERE CompanyId = @CompanyId AND IsSynced = 0 " +
        //				"ORDER BY Id DESC;", db);
        //			selectCommand.Parameters.AddWithValue("@CompanyId", companyId);

        //			SqliteDataReader query = selectCommand.ExecuteReader();

        //			while (query.Read())
        //			{
        //				int counter = 0;
        //				PhysicalPersonViewModel dbEntry = new PhysicalPersonViewModel();
        //				dbEntry.Id = SQLiteHelper.GetInt(query, ref counter);
        //				dbEntry.Identifier = SQLiteHelper.GetGuid(query, ref counter);
        //				dbEntry.Code = SQLiteHelper.GetString(query, ref counter);
        //				dbEntry.PhysicalPersonCode = SQLiteHelper.GetString(query, ref counter);
        //				dbEntry.Name = SQLiteHelper.GetString(query, ref counter);
        //				dbEntry.SurName = SQLiteHelper.GetString(query, ref counter);
        //				dbEntry.ConstructionSiteCode = SQLiteHelper.GetString(query, ref counter);
        //				dbEntry.ConstructionSiteName = SQLiteHelper.GetString(query, ref counter);

        //				dbEntry.DateOfBirth = SQLiteHelper.GetDateTime(query, ref counter);
        //				dbEntry.Gender = SQLiteHelper.GetInt(query, ref counter);
        //				dbEntry.Country = SQLiteHelper.GetCountry(query, ref counter);
        //				dbEntry.Region = SQLiteHelper.GetRegion(query, ref counter);
        //				dbEntry.Municipality = SQLiteHelper.GetMunicipality(query, ref counter);
        //				dbEntry.City = SQLiteHelper.GetCity(query, ref counter);
        //				dbEntry.Address = SQLiteHelper.GetString(query, ref counter);

        //				dbEntry.PassportCountry = SQLiteHelper.GetCountry(query, ref counter);
        //				dbEntry.PassportCity = SQLiteHelper.GetCity(query, ref counter);
        //				dbEntry.Passport = SQLiteHelper.GetString(query, ref counter);
        //				dbEntry.VisaFrom = SQLiteHelper.GetDateTime(query, ref counter);
        //				dbEntry.VisaTo = SQLiteHelper.GetDateTime(query, ref counter);
        //				dbEntry.ResidenceCountry = SQLiteHelper.GetCountry(query, ref counter);
        //				dbEntry.ResidenceCity = SQLiteHelper.GetCity(query, ref counter);
        //				dbEntry.ResidenceAddress = SQLiteHelper.GetString(query, ref counter);

        //				dbEntry.EmbassyDate = SQLiteHelper.GetDateTime(query, ref counter);
        //				dbEntry.VisaDate = SQLiteHelper.GetDateTimeNullable(query, ref counter);
        //				dbEntry.VisaValidFrom = SQLiteHelper.GetDateTimeNullable(query, ref counter);
        //				dbEntry.VisaValidTo = SQLiteHelper.GetDateTimeNullable(query, ref counter);
        //				dbEntry.WorkPermitFrom = SQLiteHelper.GetDateTime(query, ref counter);
        //				dbEntry.WorkPermitTo = SQLiteHelper.GetDateTime(query, ref counter);

        //				dbEntry.IsSynced = SQLiteHelper.GetBoolean(query, ref counter);
        //				dbEntry.UpdatedAt = SQLiteHelper.GetDateTime(query, ref counter);
        //				dbEntry.CreatedBy = SQLiteHelper.GetCreatedBy(query, ref counter);
        //				dbEntry.Company = SQLiteHelper.GetCompany(query, ref counter);
        //				viewModels.Add(dbEntry);
        //			}

        //		}
        //		catch (SqliteException error)
        //		{
        //			MainWindow.ErrorMessage = error.Message;
        //			response.Success = false;
        //			response.Message = error.Message;
        //			response.PhysicalPersons = new List<PhysicalPersonViewModel>();
        //			return response;
        //		}
        //		db.Close();
        //	}
        //	response.Success = true;
        //	response.PhysicalPersons = viewModels;
        //	return response;
        //}

        #endregion

        #region Sync

        public void Sync(IPhysicalPersonService physicalPersonService, Action <int, int> callback = null)
        {
            try
            {
                SyncPhysicalPersonRequest request = new SyncPhysicalPersonRequest();
                request.CompanyId     = MainWindow.CurrentCompanyId;
                request.LastUpdatedAt = GetLastUpdatedAt(MainWindow.CurrentCompanyId);

                int toSync      = 0;
                int syncedItems = 0;

                PhysicalPersonListResponse response = physicalPersonService.Sync(request);
                if (response.Success)
                {
                    toSync = response?.PhysicalPersons?.Count ?? 0;
                    var items = new List <PhysicalPersonViewModel>(response.PhysicalPersons);

                    using (SqliteConnection db = new SqliteConnection("Filename=SirmiumERPGFC.db"))
                    {
                        db.Open();
                        using (var transaction = db.BeginTransaction())
                        {
                            SqliteCommand deleteCommand = db.CreateCommand();
                            deleteCommand.CommandText = "DELETE FROM PhysicalPersons 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;
            }
        }