Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐛 Fix BusinessService CSV import #766

Merged
merged 1 commit into from
Nov 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions importer/manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -166,22 +166,22 @@ func (m *Manager) createApplication(imp *model.Import) (ok bool) {
}

// Assign Business Service
businessService := &model.BusinessService{}
businessService := model.BusinessService{}
businessServices := []model.BusinessService{}
m.DB.Find(&businessServices)
normBusinessServiceName := normalizedName(imp.BusinessService)
// Find existing BusinessService
for _, bs := range businessServices {
if normalizedName(bs.Name) == normBusinessServiceName {
businessService = &bs
businessService = bs
}
}
// If not found business service in database and import specifies some non-empty business service, proceeed with create it
if businessService.ID == 0 && normBusinessServiceName != "" {
if imp.ImportSummary.CreateEntities {
// Create a new BusinessService if not existed
businessService.Name = imp.BusinessService
result := m.DB.Create(businessService)
result := m.DB.Create(&businessService)
if result.Error != nil {
imp.ErrorMessage = fmt.Sprintf("BusinessService '%s' cannot be created.", imp.BusinessService)
return
Expand All @@ -193,7 +193,7 @@ func (m *Manager) createApplication(imp *model.Import) (ok bool) {
}
// Assign business service to the application if was specified
if businessService.ID != 0 {
app.BusinessService = businessService
app.BusinessService = &businessService
}

// Process import Tags & TagCategories
Expand Down
Loading