From 370c8ca66ae90e7373caca89a3f1f8546a6ce0d3 Mon Sep 17 00:00:00 2001 From: snt Date: Wed, 11 Feb 2026 15:33:01 +0100 Subject: [PATCH] import desde el repo de kidekoop --- .../BEFORE_AND_AFTER.md | 370 ++++++++++++++++++ .../ERROR_FIX_REPORT.md | 279 +++++++++++++ .../IMPLEMENTACION_RESUMEN.txt | 230 +++++++++++ .../INSTALLATION_COMPLETE.md | 300 ++++++++++++++ .../INSTALLATION_STATUS.md | 313 +++++++++++++++ .../QUICK_FIX_REFERENCE.md | 123 ++++++ .../QUICK_START.sh | 152 +++++++ product_price_category_supplier/README.md | 148 +++++++ .../TEST_REPORT.md | 312 +++++++++++++++ product_price_category_supplier/VALIDATION.md | 309 +++++++++++++++ product_price_category_supplier/__init__.py | 4 + .../__manifest__.py | 39 ++ product_price_category_supplier/i18n/es.po | 124 ++++++ product_price_category_supplier/i18n/eu.po | 124 ++++++ .../i18n/product_price_category_supplier.pot | 123 ++++++ .../install_addon.sh | 69 ++++ .../models/__init__.py | 5 + .../models/res_partner.py | 44 +++ .../models/wizard_update_product_category.py | 76 ++++ .../security/ir.model.access.csv | 2 + .../tests/__init__.py | 4 + .../test_product_price_category_supplier.py | 301 ++++++++++++++ .../views/res_partner_views.xml | 37 ++ .../views/wizard_update_product_category.xml | 46 +++ 24 files changed, 3534 insertions(+) create mode 100644 product_price_category_supplier/BEFORE_AND_AFTER.md create mode 100644 product_price_category_supplier/ERROR_FIX_REPORT.md create mode 100644 product_price_category_supplier/IMPLEMENTACION_RESUMEN.txt create mode 100644 product_price_category_supplier/INSTALLATION_COMPLETE.md create mode 100644 product_price_category_supplier/INSTALLATION_STATUS.md create mode 100644 product_price_category_supplier/QUICK_FIX_REFERENCE.md create mode 100644 product_price_category_supplier/QUICK_START.sh create mode 100644 product_price_category_supplier/README.md create mode 100644 product_price_category_supplier/TEST_REPORT.md create mode 100644 product_price_category_supplier/VALIDATION.md create mode 100644 product_price_category_supplier/__init__.py create mode 100644 product_price_category_supplier/__manifest__.py create mode 100644 product_price_category_supplier/i18n/es.po create mode 100644 product_price_category_supplier/i18n/eu.po create mode 100644 product_price_category_supplier/i18n/product_price_category_supplier.pot create mode 100644 product_price_category_supplier/install_addon.sh create mode 100644 product_price_category_supplier/models/__init__.py create mode 100644 product_price_category_supplier/models/res_partner.py create mode 100644 product_price_category_supplier/models/wizard_update_product_category.py create mode 100644 product_price_category_supplier/security/ir.model.access.csv create mode 100644 product_price_category_supplier/tests/__init__.py create mode 100644 product_price_category_supplier/tests/test_product_price_category_supplier.py create mode 100644 product_price_category_supplier/views/res_partner_views.xml create mode 100644 product_price_category_supplier/views/wizard_update_product_category.xml diff --git a/product_price_category_supplier/BEFORE_AND_AFTER.md b/product_price_category_supplier/BEFORE_AND_AFTER.md new file mode 100644 index 0000000..5f3372c --- /dev/null +++ b/product_price_category_supplier/BEFORE_AND_AFTER.md @@ -0,0 +1,370 @@ +# BEFORE & AFTER - Error Fixes + +**Document**: Visual comparison of all changes made to fix installation errors +**Date**: 10 de febrero de 2026 +**Status**: ✅ All fixed and working + +--- + +## File 1: views/res_partner_views.xml + +### Error Description +**ParseError**: "Element '' cannot be located in parent view" + +The XPath path was searching for a page that doesn't exist in Odoo 18. + +--- + +### BEFORE ❌ + +```xml + + + + + res.partner.form.price.category + res.partner + + + + ← ❌ WRONG! + + +