addons-cm/docs
snt e59df5a428 [DOC] Update FIX_TEMPLATE_ERROR_SUMMARY.md with final solution details
Updated documentation to reflect the final, working solution:

Key changes:
- Clarified the three-step pattern: Extract → Fallback → Use
- Documented why complex conditionals in t-set fail
- Explained why intermediate variables are the solution
- Added detailed Git commit history (df57233, 0a0cf5a, 8e5a4a3)
- Included QWeb rendering limitations and best practices

The solution uses Python's native 'or' operator with intermediate variables,
avoiding complex conditionals that QWeb can't parse reliably.

Pattern:
1. Extract value: display_price_value = price_info.get('price')
2. Apply fallbacks: display_price = display_price_value or product.list_price or 0.0
3. Use in template: t-attf-data-price="{{ display_price }}"

This approach is simple, reliable, and follows QWeb best practices.
2026-02-16 23:22:13 +01:00
..
CORRECCION_PRECIOS_IVA.md [DOC] all: Reorganize and consolidate project documentation 2026-02-12 16:25:49 +01:00
FIX_TEMPLATE_ERROR_SUMMARY.md [DOC] Update FIX_TEMPLATE_ERROR_SUMMARY.md with final solution details 2026-02-16 23:22:13 +01:00
INSTALACION_COMPLETA.md [DOC] all: Reorganize and consolidate project documentation 2026-02-12 16:25:49 +01:00
LAZY_LOADING.md [DOC] website_sale_aplicoop: Add lazy loading documentation and implement v18.0.1.3.0 feature 2026-02-16 18:39:39 +01:00
LAZY_LOADING_DOCS_INDEX.md [DOC] website_sale_aplicoop: Add lazy loading documentation and implement v18.0.1.3.0 feature 2026-02-16 18:39:39 +01:00
LAZY_LOADING_QUICK_START.md [DOC] website_sale_aplicoop: Add lazy loading documentation and implement v18.0.1.3.0 feature 2026-02-16 18:39:39 +01:00
LINTERS_README.md [DOC] all: Reorganize and consolidate project documentation 2026-02-12 16:25:49 +01:00
QWEB_BEST_PRACTICES.md [DOC] Add QWeb template best practices and error fix documentation 2026-02-16 23:10:39 +01:00
README.md [DOC] website_sale_aplicoop: Add lazy loading documentation and implement v18.0.1.3.0 feature 2026-02-16 18:39:39 +01:00
RESUMEN_INSTALACION.md [DOC] all: Reorganize and consolidate project documentation 2026-02-12 16:25:49 +01:00
TEMPLATE_FIX_INDEX.md [DOC] Add TEMPLATE_FIX_INDEX.md - Navigation guide for template fix documentation 2026-02-16 23:11:27 +01:00
TEST_MANUAL.md [DOC] all: Reorganize and consolidate project documentation 2026-02-12 16:25:49 +01:00
TRANSLATIONS.md [DOC] all: Reorganize and consolidate project documentation 2026-02-12 16:25:49 +01:00
UPGRADE_INSTRUCTIONS_v18.0.1.3.0.md [DOC] website_sale_aplicoop: Add lazy loading documentation and implement v18.0.1.3.0 feature 2026-02-16 18:39:39 +01:00

Documentación Técnica

Esta carpeta contiene documentación técnica y de referencia del proyecto.

Contenido

🚀 Performance & Features (Nuevas)

Configuración y Desarrollo

Resolución de Problemas

Documentación Principal

Para información general del proyecto y cómo empezar, ver:

Documentación por Addon

Cada addon tiene su propio README:

Addons Custom

Addons OCA Modificados