For my first contribution, I have make a correction for two minor bugs in
the front of ofBiz, on the Party Component.
ofBiz Revision : 745068
Bug one : In the Party Skills, the update doesn't work, because there's a
service-multi who is calling in the request-map 'updatePartySkillExt',
instead of a simple service, in the controller.xml file.
(replace <event type="service-multi" invoke="updatePartySkill"/>
by
<event type="service" invoke="updatePartySkill"/>)
Bug two : In the Trainings, the update doesn't work because :
- In the file controller.xml : For the request-map
'updatePersonTrainingsExt' there is a service-multi who is calling in the
request-map, instead of a simple service.
(replace <event type="service-multi" invoke="updatePersonTraining"/>
by
<event type="service" invoke="updatePersonTraining"/>)
- In the file PersonTrainingForms.xml : the target attribute of the form
'ListPersonTrainings' is not correct : replace
target="updatePersonTrainingsExt?partyId=${partyId}"
by
target="updatePersonTrainingsExt?"
If you approve it, I make patchs and create a Jira issue for it.
Regards,
Louis Briolet.