oca-ocb-accounting/odoo-bringout-oca-ocb-account/doc/TROUBLESHOOTING.md
2025-08-29 15:20:47 +02:00

36 lines
790 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Troubleshooting
## Payment Provider FileNotFoundError
Symptom:
```
FileNotFoundError: File not found: payment_*/static/description/icon.png
```
Cause: payment provider records referencing modules not included locally.
Fix: see `packages/odoo-bringout-oca-ocb-payment/doc/PATCH_REMOVE_PAYMENT_PROVIDERS.md` for the applied patch and rationale.
## Ports & Services
- Web: 8069 (default)
- Docker Postgres: 5432, Nix Postgres: 54320
Check DB status:
```bash
pg-status # Nix
docker ps && docker logs <postgres-container> # Docker
```
## Missing Dependencies
Reinstall within the intended environment:
```bash
nix develop # Nix shell
docker-compose build # Docker image refresh
pip/uv install -e packages/odoo-bringout-oca-ocb-account
```