- Add "Mis cortes de caja" report for cashiers/counters with sales detail. - Cash register history scoped to own cuts for non-admin roles; new /register/<id>/sales endpoint. - Remove dashboard from cashier menu; add Reports to cashier/counter. - Service orders: assign mechanic, budget field, invoice flag, counter/cashier can add items/remissions, convert to remission. - Remission notes module (UI, CSS, courier, counter remissions). - Customer hard-delete and vehicle/customer linkage in workshop. - POS: always show search results, compact payment grid, credit validation, tier pricing (5%/10%), ticket with customer/folio. - Inventory: CSV template with sku_secondary, alias import. - Rached migration scripts and DB migrations. - Version-bump cached JS/CSS query strings. Excludes local Rached session tokens/captures (rached_*.json / rached_*.txt).
98 lines
986 B
Plaintext
98 lines
986 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Virtual environments
|
|
venv/
|
|
ENV/
|
|
env/
|
|
.venv/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Local configuration
|
|
.claude/
|
|
*.local.json
|
|
.env
|
|
.env.local
|
|
.env.production
|
|
|
|
# Secrets
|
|
*.pem
|
|
*.key
|
|
|
|
# POS static uploads
|
|
pos/static/images/parts/
|
|
|
|
# SQLite databases
|
|
*.db
|
|
*.db-shm
|
|
*.db-wal
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.backup
|
|
|
|
# Data files (TecDoc downloads, too large for git)
|
|
data/
|
|
vehicle_database/
|
|
CapturasWeb/
|
|
.pytest_cache/
|
|
node_modules/
|
|
|
|
# SQLite WAL files
|
|
*.db-shm
|
|
*.db-wal
|
|
|
|
# Diagram images (served from static, too large for git)
|
|
dashboard/static/diagrams/
|
|
|
|
# Playwright / Node
|
|
package-lock.json
|
|
|
|
# Backups
|
|
backups/
|
|
|
|
|
|
# Local tools (AWS CLI)
|
|
tools/
|
|
|
|
# Rached migration session artifacts (tokens / captures / samples)
|
|
rached_*.json
|
|
rached_*.txt
|
|
|