[
https://issues.apache.org/jira/browse/OFBIZ-13330?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=18047222#comment-18047222
]
Nicolas Malin commented on OFBIZ-13330:
---------------------------------------
At the beginning, I detected a lot of regression on findInvoice screen where I
lost my search parameters on Lookup field (partyIdFrom and partyId)
After a deep code scan, I found multiple issue , this, OFBIZ-13331 and
OFBIZ-13332 :)
I prepare a last that concern a http method use on form. A way to have some fun
for this end years !
> Compound's single form are loaded as ModelGrid in memory
> --------------------------------------------------------
>
> Key: OFBIZ-13330
> URL: https://issues.apache.org/jira/browse/OFBIZ-13330
> Project: OFBiz
> Issue Type: Bug
> Components: framework/widget
> Affects Versions: 24.09.04
> Reporter: Nicolas Malin
> Assignee: Nicolas Malin
> Priority: Minor
> Attachments: OFBiz-13330.patch
>
>
> If you create a simple single form in a compound, when OFBiz load it in
> memory, the element create isn't a ModelForm but a ModelGrid.
> This came from the object builder that analyze the xml tag name with the name
> space. In FormFactory::createModelForm
> *******
> if ("form".equals(formElement.getTagName()) && ...) {
> return new ModelSingleForm( ...)
> }
> return new ModelGrid( ...)
> *******
> Or : "wf:form" != "form"
> Simple fix to remove the namespace from the analyze.
--
This message was sent by Atlassian Jira
(v8.20.10#820010)