[IMP] account_ux: show credit_limit field directly on partner form#924
Open
matiasperalta1 wants to merge 1 commit into
Open
[IMP] account_ux: show credit_limit field directly on partner form#924matiasperalta1 wants to merge 1 commit into
matiasperalta1 wants to merge 1 commit into
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Este PR ajusta la vista de propiedades de Contactos (res.partner) para mostrar el campo credit_limit directamente en el formulario, simplificando la edición del límite de crédito desde la UI.
Changes:
- Añade una herencia de
account.view_partner_property_formpara renombrar la etiqueta relacionada al límite de crédito. - Oculta el campo
use_partner_credit_limity fuerza visible el campocredit_limiten esa vista.
Comment on lines
+8
to
+13
| <label for="use_partner_credit_limit" position="attributes"> | ||
| <attribute name="string">Credit Limit</attribute> | ||
| </label> | ||
| <field name="use_partner_credit_limit" position="attributes"> | ||
| <attribute name="invisible">1</attribute> | ||
| </field> |
There was a problem hiding this comment.
Al ocultar use_partner_credit_limit (invisible=1) el <label for="use_partner_credit_limit"> queda apuntando a un campo invisible, lo que empeora accesibilidad/UX (label sin control asociado). Sugerencia: retargetear el for del label a credit_limit (o bien ocultar también el label y dejar que credit_limit muestre su propio label).
ccaab84 to
62c65d7
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.

No description provided.