🎉 Initial commit - Hazard Odoo 16 project

- 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
This commit is contained in:
2026-06-30 06:12:35 -06:00
commit 28d9e56f47
350 changed files with 99832 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
import csv
import sys
input_file = '/var/www/vhosts/tesscorp.com.mx/hazard.tesscorp.com.mx/Etiquetas_EAN13_Hazard_2026-06-02.csv'
output_file = '/var/www/vhosts/tesscorp.com.mx/hazard.tesscorp.com.mx/update_barcodes.sql'
try:
with open(input_file, mode='r', encoding='utf-8') as f, open(output_file, mode='w', encoding='utf-8') as out:
reader = csv.DictReader(f)
out.write('BEGIN;\n')
count = 0
for row in reader:
sku = row.get('SKU', '').strip()
barcode = row.get('EAN-13', '').strip()
if sku and barcode:
sku_escaped = sku.replace("'", "''")
barcode_escaped = barcode.replace("'", "''")
out.write(f"UPDATE product_product SET barcode = '{barcode_escaped}' WHERE default_code = '{sku_escaped}';\n")
count += 1
out.write('COMMIT;\n')
print(f'Generated {count} update statements in {output_file}')
except Exception as e:
print(f"Error: {e}")
sys.exit(1)