Bilgin Ibryam wrote:
Hi guys,
I see lots of errors in latest ofbiz trunk.
Some of them are lilke: java.lang.UnsupportedOperationException: = (=),
<>... Not sure which changes cause it.
You can see errors while order creation, or checking the profile of a party.
I too have noticed that error in the Accounting-->Billing
Accounts-->Invoices screen.
After a few clicks the error disappeared but that screen is not working
as was working before: you see all the invoices in the system, not just
the ones with Invoice.billingAccountId = selected billing account.
Here is the form's action section that is not working as expected:
<actions>
<entity-condition entity-name="Invoice"
list-name="billingAccountInvoices">
<condition-expr field-name="billingAccountId"
env-name="billingAccountId"/>
</entity-condition>
</actions>
Weird.
Jacopo
PS: I did svn up, ant clean-all, ant run-install
In order creation from POS, there are errors due to changes in shopping cart
in r585854
Changing LinkedMap to LinkedHashMap cause some errors, because in
CheckOutHelper.java there are some code using LinkedMap.get(index) , which
is not supported from LinkedHashMap.
Bilgin Ibryam