İlk versiyon: MyMach Fleet Intelligence ve yapılandırmalar

This commit is contained in:
cerenX9
2026-07-20 19:41:40 +03:00
commit f497805d08
85 changed files with 7071 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
# -*- coding: utf-8 -*-
import psycopg2
conn = psycopg2.connect('dbname=dev user=odoo password=odoo host=db')
cr = conn.cursor()
cr.execute("DELETE FROM ir_attachment WHERE name LIKE '%.assets_%';")
conn.commit()
conn.close()
print("SUCCESS: Invalidated JS/CSS asset bundle attachments!")