private async Task ImportDesbaste(string fullPath, int idImport_result, Api api) { #region [ Salva tempo teórico ] var tempoTeorico = new T_tempo_teorico { id_t_importacao = idImport_result }; readExcelService.ReadFile(typeof(T_tempo_teorico), tempoTeorico, fullPath, idImport_result); tempoTeorico.id_t_tempo_teorico = await api.SetInt(Constants.HostAddress, Constants.DataBase, "s_set_t_tempo_teorico", tempoTeorico); #endregion #region [ Salva esboços desbastadores ] SetBDEsboco(1, T_importacao_modelo_bd_esbocos.column_bd1, idImport_result, fullPath, api); SetBDEsboco(2, T_importacao_modelo_bd_esbocos.column_bd2, idImport_result, fullPath, api); #endregion #region [ Salva matéria prima ] var materiaPrima = new T_importacao_modelo_bd_materia_prima { id_t_importacao = idImport_result }; readExcelService.ReadFile(typeof(T_importacao_modelo_bd_materia_prima), materiaPrima, fullPath, idImport_result); materiaPrima.id_t_importacao_modelo_bd_materia_prima = await api.SetInt(Constants.HostAddress, Constants.DataBase, "s_set_t_importacao_modelo_bd_materia_prima", materiaPrima); #endregion #region [ Salva produto ] var produto = new T_importacao_modelo_bd_produto { id_t_importacao = idImport_result }; readExcelService.ReadFile(typeof(T_importacao_modelo_bd_produto), produto, fullPath, idImport_result); produto.id_t_importacao_modelo_bd_produto = await api.SetInt(Constants.HostAddress, Constants.DataBase, "s_set_t_importacao_modelo_bd_produto", produto); #endregion #region [ Salva lista de BD ] var bds = readExcelService.ReadFile_BD(fullPath, idImport_result); foreach (var bd in bds) { bd.registro_ativo = true; bd.id_t_cadastro_acao = 1; bd.id_t_importacao_modelo_bd = await api.SetInt(Constants.HostAddress, Constants.DataBase, "s_set_t_importacao_modelo_bd", bd); } #endregion #region [ Salva identificação ] var identificacao = new T_importacao_modelo_bd_identificacao { id_t_importacao = idImport_result }; readExcelService.ReadFile(typeof(T_importacao_modelo_bd_identificacao), identificacao, fullPath, idImport_result); identificacao.id_t_importacao_modelo_bd_identificacao = await api.SetInt(Constants.HostAddress, Constants.DataBase, "s_set_t_importacao_modelo_bd_identificacao", identificacao); #endregion }
public void ObterTemposTeoricos_planilha_com_dois_bds_exemplo2_Test() { //Arrange IReadExcelService svc = new ReadExcelService(); var fileName = "Planilha_com_dois_bds_exemplo2.xlsx"; var fullPath = $"../../../Mock/ModeloBd/{fileName}"; Type type = typeof(T_tempo_teorico); var obj = new T_tempo_teorico(); //Act var temposTeoricos = svc.ReadFile(type, obj, fullPath) as T_tempo_teorico; //Assert Assert.NotNull(temposTeoricos); Assert.True(temposTeoricos.laminacao >= 32); }
public void ObterTemposTeoricos_W150x13_Test() { //Arrange IReadExcelService svc = new ReadExcelService(); var fileName = "W150x13.xlsx"; var fullPath = $"../../../Mock/ModeloBd/{fileName}"; Type type = typeof(T_tempo_teorico); var obj = new T_tempo_teorico(); //Act var temposTeoricos = svc.ReadFile(type, obj, fullPath) as T_tempo_teorico; //Assert Assert.NotNull(temposTeoricos); Assert.True(temposTeoricos.laminacao == 35.4); Assert.True(temposTeoricos.morto == 93); Assert.True(temposTeoricos.total == 128.4); Assert.True(temposTeoricos.produtividade == 62.1); }