fix: add DB adminwizard insert, fix test_extended bug
All checks were successful
Docker Build & Push SugarCRM 6.5 CE / build-and-push (push) Successful in 12s

This commit is contained in:
root
2026-05-24 15:06:54 +02:00
parent 707d285e54
commit 4e44aa5b7a
2 changed files with 24 additions and 1 deletions

View File

@@ -249,6 +249,18 @@ def main():
return True
return False
test("Globale Suche nach 'API'", search_accounts)
"search_string": "API",
"modules": ["Accounts"],
"offset": 0,
"max_results": 10,
})
if result and "entry_list" in result:
count = result.get("entry_list", [])
print(f" Suche 'API': {len(count)} Treffer in Accounts")
return True
return False
test("Globale Suche nach 'API'", search_by_module)
# === RELATIONSHIPS ===