- Custom modules: hazard_shopify, hazard_inventory_report, hazard_website - Third-party modules: bi_sql_editor, query_deluxe, sql_request_abstract, l10n_mx_sat_sync_itadmin_ee - Docker setup: Odoo 16 + PostgreSQL 17 - Utility scripts: backup_hazard.sh, update_module.py - Agent configuration: .agents/AGENTS.md - Security: Enterprise modules, credentials, backups and production data excluded via .gitignore
21 lines
737 B
Python
21 lines
737 B
Python
import xmlrpc.client
|
|
|
|
url = 'http://localhost:16001'
|
|
db = 'hazard_new'
|
|
username = 'admin'
|
|
password = '123'
|
|
|
|
try:
|
|
common = xmlrpc.client.ServerProxy('{}/xmlrpc/2/common'.format(url))
|
|
uid = common.authenticate(db, username, 'admin', {})
|
|
if not uid:
|
|
uid = common.authenticate(db, 'admin', '123', {})
|
|
|
|
models = xmlrpc.client.ServerProxy('{}/xmlrpc/2/object'.format(url))
|
|
|
|
logs = models.execute_kw(db, uid, 'admin', 'ir.logging', 'search_read', [[['message', 'ilike', 'Shopify']]], {'fields': ['create_date', 'name', 'level', 'message'], 'order': 'id desc', 'limit': 20})
|
|
for l in logs:
|
|
print(f"[{l['create_date']}] {l['level']} - {l['message']}")
|
|
except Exception as e:
|
|
print("Error:", e)
|