fix: instalación en Odoo 19 (claims_view type list + cron sin numbercall) - #130
Open
uriel-falcon wants to merge 1 commit into
Open
fix: instalación en Odoo 19 (claims_view type list + cron sin numbercall)#130uriel-falcon wants to merge 1 commit into
uriel-falcon wants to merge 1 commit into
Conversation
… y cron sin 'numbercall' La rama 19.0 no instala en Odoo 19 Community: ParseError al cargar views/claims_view.xml y data/claims_cron.xml. - claims_view.xml: el tipo de vista 'tree' fue renombrado a 'list' en Odoo 19 (el arch del propio archivo ya usa <list>; solo el campo type quedó sin migrar). - claims_cron.xml: el campo 'numbercall' de ir.cron fue eliminado desde Odoo 17; el valor -1 (sin límite) es el comportamiento por defecto, por lo que basta eliminar la línea. Probado en Odoo 19.0 Community (docker odoo:19): con estos dos cambios el módulo instala correctamente.
uriel-falcon
force-pushed
the
fix/odoo19-install-claims
branch
from
July 8, 2026 08:20
ab16381 to
fdefeba
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Corrige la instalación de la rama 19.0 en Odoo 19 Community (hoy falla con
ParseError; detalle completo en el issue #129):views/claims_view.xml:typede la vista de reclamostree→list(renombrado en Odoo 19).data/claims_cron.xml: se eliminanumbercall(campo inexistente enir.crondesde Odoo 17;-1era "sin límite", que es el default actual).Probado en Odoo 19.0 Community (Docker
odoo:19): el módulo instala y funciona (conexión OAuth, crons y sincronización verificados en una instancia productiva).Closes #129