-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathrelease-notes-16.11.01.html
2129 lines (2125 loc) · 290 KB
/
release-notes-16.11.01.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!-->
<head>
<meta charset="utf-8">
<title>The Apache OFBiz® Project - Release Notes 16.11.01</title>
<meta name="Description" content="OFBiz is an open source enterprise automation software project licensed under the Apache License. It means you are not alone and can work with many others." />
<meta name="Robots" content="index,follow" />
<!-- Mobile Specific Metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- CSS
================================================== -->
<!-- local fonts -->
<link type="text/css" id="fonts" rel="stylesheet" href="/css/fonts.css">
<!-- Bootstrap -->
<link type="text/css" rel="stylesheet" href="/bootstrap/css/bootstrap.min.css">
<!-- plugin css -->
<link rel="stylesheet" type="text/css" href="/js/plugins/pretty-photo/css/prettyPhoto.css" />
<link rel="stylesheet" type="text/css" href="/js/plugins/rs-plugin/css/settings.css" media="screen" />
<link type="text/css" rel="stylesheet" href="/js/plugins/hoverdir/css/style.css">
<!-- icon fonts -->
<link type="text/css" rel="stylesheet" href="/font-icons/custom-icons/css/custom-icons.css">
<link type="text/css" rel="stylesheet" href="/font-icons/custom-icons/css/custom-icons-ie7.css">
<!-- Custom css -->
<link type="text/css" rel="stylesheet" href="/css/layout.css">
<link type="text/css" id="colors" rel="stylesheet" href="/css/colors.css">
<!--[if lt IE 9]><script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
<!--[if gte IE 9]><style type="text/css">.iconBig, .active, .hover a , .Shover a { filter: none !important; } </style> <![endif]-->
<script src="js/modernizr-2.6.1.min.js"></script>
<!-- Favicons
================================================== -->
<link rel="shortcut icon" href="/images/favicon.ico">
<link rel="apple-touch-icon" href="/images/apple-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="/images/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="/images/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="144x144" href="/images/apple-icon-144x144.png">
</head>
<body>
<!-- header -->
<header id="mainHeader" class="clearfix">
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container"> <a href="index.html" class="brand"><img src="images/ofbiz_logo.png" alt="Apache OFBiz Logo"/></a>
<nav id="mainMenu" class="clearfix">
<ul>
<li><a href="index.html" class="firstLevel">Home</a></li>
<li><a href="#" class="firstLevel">Getting Started</a>
<ul>
<li><a href="developers.html" class="">Developers</a></li>
<li><a href="business-users.html" class="last">Business Users</a></li>
</ul>
</li>
<li><a href="#" class="firstLevel">News</a>
<ul>
<li><a href="//blogs.apache.org/ofbiz/" target="external" class="last">Blog</a></li>
</ul>
</li>
<li><a href="#" class="firstLevel">Documentation</a>
<ul>
<li><a href="//cwiki.apache.org/confluence/display/OFBIZ/Documentation" target="external" class="">User Documentation</a></li>
<li><a href="//cwiki.apache.org/confluence/display/OFBIZ/Technical+Documentation" target="external" class="">Technical Documentation</a></li>
<li><a href="//cwiki.apache.org/confluence/display/OFBIZ/Home" target="external" class="">Wiki</a></li>
<li><a href="#" class="firstLevel">API Reference</a>
<ul>
<li title="Trunk API">
<a href="https://nightlies.apache.org/ofbiz/trunk/javadoc/" target="external">Trunk API</a></li>
</li>
<li title="Stable release API">
<a href="https://nightlies.apache.org/ofbiz/stable/javadoc/" target="external">Stable Release API</a></li>
</li>
<li title="Next release API">
<a href="https://nightlies.apache.org/ofbiz/next/javadoc/" target="external">Next Release API</a></li>
</li>
</ul>
</li>
</ul>
</li>
<li><a href="#" class="firstLevel">Community</a>
<ul>
<li><a href="getting-involved.html">Getting Involved</a></li>
<li><a href="mailing-lists.html">Mailing Lists</a></li>
<li><a href="source-repositories.html">Source Repository</a></li>
<li><a href="download.html">Downloads</a></li>
<li><a href="https://s.apache.org/dsj2p" target="external" >Issue Tracker</a></li>
<li><a href="faqs.html" class="last">FAQ</a></li>
</ul>
</li>
<li><a href="ofbiz-demos.html" class="firstLevel">Demos</a></li>
<li><a href="//www.youtube.com/user/ofbiz" class="icon-play socialIcon tips" target="external" title="follow us on Youtube"><span>Youtube</span></a></li>
</ul>
</nav>
</div>
</div>
</div>
</header>
<!-- header -->
<!-- globalWrapper -->
<div id="globalWrapper">
<!-- page content -->
<section id="content" class="fullWidth">
<header class="headerPage">
<div class="container clearfix">
<div class="row">
<h1 class="span8">Release Notes 16.11.01</h1>
<div class="span4" id="navTrail"> <a href="index.html" class="homeLink">home</a><span>/</span><a href="download.html">Download</a><span>/</span><span class="current">Release Notes 16.11.01</span> </div>
</div>
</div>
</header>
<section id="content" class="features" >
<div class="slice clearfix">
<div class="container">
<div class="row">
<div>
<p>Apache OFBiz® 16.11.01, released in 2016-11-27, is the first release of the 16.11 series, that has been stabilized since November 2016.</p>
<h2>Bug</h2>
<ul>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-293'>OFBIZ-293</a>] - data import - nulling fields impossible</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-817'>OFBIZ-817</a>] - Require Inventory of Marketing Package Product can't be shipped</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-2146'>OFBIZ-2146</a>] - Quote to order - manual adjustments amount not included in cart grand total</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-3037'>OFBIZ-3037</a>] - Issues in eCommerce Layout</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-3433'>OFBIZ-3433</a>] - eCommerce main store front error returned when attempt is made to "Sign Up For Contact List"</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-3464'>OFBIZ-3464</a>] - Added check if the creditcard number string is numeric in validation method isCreditcard in UtilValidate</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-3563'>OFBIZ-3563</a>] - Creating a category with an ID (manually or automatically) that matches an existing productID will show the unrelated product when enter into the category on the 'Browse category' of the Ecommerce application.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-3666'>OFBIZ-3666</a>] - Errors attempting to use quantities with more than 2 decimals of precision</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-3739'>OFBIZ-3739</a>] - PrepareFind Service Ignores timeZone Parameter When Performing Date/Time Calculations</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-4206'>OFBIZ-4206</a>] - Project Manager throws error if project user is not assigned to every project</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-4559'>OFBIZ-4559</a>] - InventoryWorker.getOutstandingProductQuantities returns inaccurate results when there are multiple ItemIssuances for an order</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-4651'>OFBIZ-4651</a>] - Uploading a file after a session timeout</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-4704'>OFBIZ-4704</a>] - MalformedURLException: no protocol: Files/Java/jdk1.6.0_26/lib/tools.jar</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-4837'>OFBIZ-4837</a>] - Separator Error in data file tools</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-4861'>OFBIZ-4861</a>] - view sprint overview has errors</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-4863'>OFBIZ-4863</a>] - Scrum productstatistics shows errors</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-4897'>OFBIZ-4897</a>] - Setting the reservation of persons on a routing task isn't reflected in the overview of routing tasks</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-4954'>OFBIZ-4954</a>] - Order item quantity cancel issue.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-4977'>OFBIZ-4977</a>] - Limitation and issue with delegator.findByPrimaryKeyPartial method : returns error when partialKeyset contains PK value.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5034'>OFBIZ-5034</a>] - Contact us with service message & email notification</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5035'>OFBIZ-5035</a>] - Special characters (latin, accent ...) are in error from an input (search, contact us ...)</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5052'>OFBIZ-5052</a>] - null [null] on the field phaseName of form hoursNotYetBilled?</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5074'>OFBIZ-5074</a>] - date-find in form widget does not persist value</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5279'>OFBIZ-5279</a>] - Wrong to use !jQuery('#content-messages') in \framework\images\webapp\images\selectall.js line #354</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5295'>OFBIZ-5295</a>] - Anonymous Quick Checkout: No Payment Method Information shown in Order Confirmation</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5305'>OFBIZ-5305</a>] - The path /content/images/ is used in some places (only for contentForum.css it seems) but no mount point is associated</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5313'>OFBIZ-5313</a>] - Tree rendering is missing labels.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5347'>OFBIZ-5347</a>] - Shipping costs not recalculated after changing sales order shipment method</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5364'>OFBIZ-5364</a>] - Incorrect quantityNotAvailable for OrderItemShipGrpInvRes when issuing items to shipments</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5373'>OFBIZ-5373</a>] - If received quantity is greater then ordered quantity then order item quantity update but order item shipgroup assoc quantity does not updated.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5419'>OFBIZ-5419</a>] - Ordering a License product sometimes (most often) gives a blank page</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5447'>OFBIZ-5447</a>] - .LoginWorker#logout leads to error in tenant specific ecommerce component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5521'>OFBIZ-5521</a>] - WebAppUtil.getWebappInfoFromWebsiteId throws IllegalArgumentException when web.xml not found</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5570'>OFBIZ-5570</a>] - appendOrderItem Service Not Applying Order Item Attributes</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5579'>OFBIZ-5579</a>] - Error when add product to an order.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5588'>OFBIZ-5588</a>] - Error while press F9(change quantity) in webpos </li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5629'>OFBIZ-5629</a>] - Pagination at find WorkEffort screen does not work</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5636'>OFBIZ-5636</a>] - Add WorkEffort Timesheet to Invoice or to New Invoice does not work</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5641'>OFBIZ-5641</a>] - Problem with Purchase Order Accounting Entries </li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5815'>OFBIZ-5815</a>] - link of dependent task in Task Dependencies of task links Dependencies of Task</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5858'>OFBIZ-5858</a>] - Quote profit percentage is calculated wrong</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5870'>OFBIZ-5870</a>] - Birt doesn't work</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5879'>OFBIZ-5879</a>] - Sometimes, RMIDispatcher cannot be constructed</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5905'>OFBIZ-5905</a>] - Change createPartyRelationshipAndRole to use ensurePartyRole</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5910'>OFBIZ-5910</a>] - WidgetWorker.buildHyperlinkUrl generates invalid url when using certain sequences of characters</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5914'>OFBIZ-5914</a>] - Gift card reload service not working OOTB </li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5916'>OFBIZ-5916</a>] - Cutting List Report from Manufacturing Shipment Plans throws error due to due to missing EntityCondition import</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5918'>OFBIZ-5918</a>] - NPE at http://demo-trunk-ofbiz.apache.org/ecommerce/products/</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5919'>OFBIZ-5919</a>] - CatalogUrlServlet should return a 404 HTTP status if the category or product does not exist</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5927'>OFBIZ-5927</a>] - Issue reported while performing Refund & Void (java.lang.ClassCastException: java.lang.String cannot be cast to java.math.BigDecimal)</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5930'>OFBIZ-5930</a>] - Data resouce caching issue while render data resource on multi tenant environment</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5933'>OFBIZ-5933</a>] - state/province dropdown contains incorrect items when Canada is chosen in country dropdown</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5940'>OFBIZ-5940</a>] - Dialogue window is not working for webpos screens. Seems JS load issue on page.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5941'>OFBIZ-5941</a>] - Error when adding quantity less than 1 but greater than 0 to cart</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5942'>OFBIZ-5942</a>] - Edit Shipment page is broken</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5943'>OFBIZ-5943</a>] - Menu items incorrectly rendered as anchor instead of hidden-form</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5944'>OFBIZ-5944</a>] - Error at EditWorkEffort for reason field</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5945'>OFBIZ-5945</a>] - GlReconciledFinAccountTrans.ftl finAccountTrans.entryDateId should be finAccountTrans.entryDate</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5951'>OFBIZ-5951</a>] - Product Costs page actions cause incorrect listings</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5952'>OFBIZ-5952</a>] - IncomeStatement page broken</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5953'>OFBIZ-5953</a>] - Problem with new UtilCodec code caused by HTMLEntityCodec.decode()</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5962'>OFBIZ-5962</a>] - If orderDecimalQuantity set to N then system should return error if user add partial quantity in order</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5968'>OFBIZ-5968</a>] - framework/images/webapp/images/fieldlookup.js throws a javascript error in google chrome from a link to ofbiz from another site</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5971'>OFBIZ-5971</a>] - Form ListRequestItemNotes is not referenced in Screens</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5974'>OFBIZ-5974</a>] - Retrieval of NoteData in ListProdBacklogNote is missing value-field attribute</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5979'>OFBIZ-5979</a>] - Form TotalProdBacklog has typo in link</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5986'>OFBIZ-5986</a>] - Error on accessing new tenant</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5999'>OFBIZ-5999</a>] - Find Order filtering broken</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6013'>OFBIZ-6013</a>] - "Return Selected Item(s)" button broken for manually created returns</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6022'>OFBIZ-6022</a>] - Menu items with parent-portal-page-value="${parameters.<ParameterValue>}" are not accessible</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6036'>OFBIZ-6036</a>] - Return <strong> tag for Autocomplete Dropdown highlight</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6037'>OFBIZ-6037</a>] - Widget Refactoring - form extension broken</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6041'>OFBIZ-6041</a>] - form renderer insert strange html code....</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6043'>OFBIZ-6043</a>] - Change of ship-to address is not persisted when stepping forward and backward in a create order process</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6049'>OFBIZ-6049</a>] - Error on Convert Lead</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6051'>OFBIZ-6051</a>] - In trunk we lost the Edit and Delete buttons in Store Facilites screen (ajaxUpdateArea)</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6052'>OFBIZ-6052</a>] - Find facility inventory items cause UtilCodec.IntrusionException</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6057'>OFBIZ-6057</a>] - Quote item view FreeMarker error due Freemarker 2.3 versions higher than 2.3.19</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6058'>OFBIZ-6058</a>] - Find Shipment generates an error</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6060'>OFBIZ-6060</a>] - We can no longer reset services definitions by clearing caches</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6068'>OFBIZ-6068</a>] - Upload video content for category causes exception</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6070'>OFBIZ-6070</a>] - Create content for product causes exception</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6071'>OFBIZ-6071</a>] - Issue in decrypting entity fields where encrypt="true" is used in tenant </li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6074'>OFBIZ-6074</a>] - controller view-map type="screenxml" broken</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6075'>OFBIZ-6075</a>] - Error on Sending confirm email from newly created order</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6077'>OFBIZ-6077</a>] - Error when creating a quote report</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6082'>OFBIZ-6082</a>] - HELP_HR_Main.xml invalid Docbook syntax</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6084'>OFBIZ-6084</a>] - Find account doesn't return accounts anymore</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6088'>OFBIZ-6088</a>] - There should not need to setup SystemProperty data on each tenant for specifying path to store tenant images.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6089'>OFBIZ-6089</a>] - Cannot locate service by name (ensureNaPartyRoleTo)</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6090'>OFBIZ-6090</a>] - Unable to return order items in return process.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6091'>OFBIZ-6091</a>] - Supplier preferred currency not considered for drop-ship order</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6092'>OFBIZ-6092</a>] - Domain name should not create for tenant if its left empty during tenant creation</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6095'>OFBIZ-6095</a>] - Promo action party lookup dropdown throws error</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6101'>OFBIZ-6101</a>] - Error updating order when item quantity less than 1 but greater than 0 exists</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6111'>OFBIZ-6111</a>] - Strange Behaviour of the eCommerce Login Link</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6112'>OFBIZ-6112</a>] - Incorrect Error Displayed when "Expiring" a Contact Mechanism</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6114'>OFBIZ-6114</a>] - webtools entity references generates exceptions</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6119'>OFBIZ-6119</a>] - One page checkout broken for registered user</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6120'>OFBIZ-6120</a>] - Allow FOP to support <fo:external-graphic/> for -Dportoffset</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6131'>OFBIZ-6131</a>] - Error when updating shipment destinationFacilityId</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6142'>OFBIZ-6142</a>] - returnItems.ftl freemarker null error when returnPrice or returnQuantity is null</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6156'>OFBIZ-6156</a>] - Upgrade commons-pool2 from 2.2 to.2.3 and commons-dbcp2 from 2.0.1 to 2.1</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6157'>OFBIZ-6157</a>] - Upgrade commons-validator from 1.4.0 to 1.4.1</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6158'>OFBIZ-6158</a>] - Upgrade commons-net from 3.1 to 3.3</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6159'>OFBIZ-6159</a>] - Upgrade commons-logging from 1.1.2 to 1.2</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6160'>OFBIZ-6160</a>] - Upgrade commons-csv from 1.0 to 1.1</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6161'>OFBIZ-6161</a>] - Upgrade commons-codec from 1.6 to 1.10</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6169'>OFBIZ-6169</a>] - Upgrade Tomcat from 7.0.57 to 7.0.59</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6172'>OFBIZ-6172</a>] - Screenlet collapsibility is not working</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6183'>OFBIZ-6183</a>] - Error when web app has mount point /</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6186'>OFBIZ-6186</a>] - ShipmentPlanStockReport.groovv error due to call to runService misspelling</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6188'>OFBIZ-6188</a>] - Task Report error for Manufacturing Shipment Plan</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6194'>OFBIZ-6194</a>] - bi.properties file is missing licence header</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6196'>OFBIZ-6196</a>] - Package Labels Report error for Manufacturing Shipment Plan</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6199'>OFBIZ-6199</a>] - Find Commission Run screen is broken.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6200'>OFBIZ-6200</a>] - Order Adjustment details are hidden on order Item section of order entry page.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6201'>OFBIZ-6201</a>] - Error in Create New Account process of SFA</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6202'>OFBIZ-6202</a>] - "Expected hash" Freemarker error in FindInventoryEventPlan</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6205'>OFBIZ-6205</a>] - Use EntityUtilProperties to get the WebSiteProperties</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6207'>OFBIZ-6207</a>] - Anyone can view any Request or Quote</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6209'>OFBIZ-6209</a>] - Error when call "updateNote" service.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6216'>OFBIZ-6216</a>] - ProductStoreData.xml contains UPS NEXT_DAY not present in ShippingData.xml</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6218'>OFBIZ-6218</a>] - Unit tests throw exception in DBCP</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6219'>OFBIZ-6219</a>] - NPE while rendering content uisng screen widget</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6222'>OFBIZ-6222</a>] - Change the field name 'tenantId' to 'userTenantId' from login page and ContextFilter</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6229'>OFBIZ-6229</a>] - Can't create a geo without providing a geoID</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6234'>OFBIZ-6234</a>] - catalog main page show freemarker exception</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6237'>OFBIZ-6237</a>] - function linkGeos deletes existing GeoAssocs for geoId</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6254'>OFBIZ-6254</a>] - Minilang: type="NewMap" and type="NewList" for the Set element don't work</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6257'>OFBIZ-6257</a>] - Upload function does not work on Party Manager.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6259'>OFBIZ-6259</a>] - ofbiz looking for web.xml in wrong place</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6260'>OFBIZ-6260</a>] - foScreenMacroLibrary.ftl renderLabel doesn't apply style parameter</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6261'>OFBIZ-6261</a>] - locationresolvers.properties is missing</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6262'>OFBIZ-6262</a>] - CategoryContentWrapper ignores session locale</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6269'>OFBIZ-6269</a>] - Pro-rate shipping calculation is generating incorrect invoice in case of order with subtotal $0.00</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6275'>OFBIZ-6275</a>] - OFBiz code seems make use of other deprecated OFBiz features</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6299'>OFBIZ-6299</a>] - Field order is not correct in the auto-complete for look-ups.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6309'>OFBIZ-6309</a>] - Freemarker errors at language change page due to locale with no display name returned by Locale.getAvailableLocales() in UtilMisc.java#getAvailableLocaleList</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6329'>OFBIZ-6329</a>] - Malfunction of configurable FTL-Template caching in DataResourceWorker.renderDataResourceAsText</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6346'>OFBIZ-6346</a>] - When used setDependentDropdownValuesJs.ftl precludes focus-field-name</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6347'>OFBIZ-6347</a>] - Two order payment preferences are added to order, when order of order total 0(zero) is placed with Billing Account</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6348'>OFBIZ-6348</a>] - Quote item adjustment rows incorrect color and misaligned on view page</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6351'>OFBIZ-6351</a>] - ordermgr/control/ListQuoteItems quoteItemSeqId button not showing due to ${bsh}</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6357'>OFBIZ-6357</a>] - Some fields are missing in the person simple-map-processor</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6369'>OFBIZ-6369</a>] - Corrected the order in which invoice and payment transactions are created</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6374'>OFBIZ-6374</a>] - PartyContentWrapper.getPartyContentAsText use wrong signature</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6382'>OFBIZ-6382</a>] - Create PO flow is broken</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6387'>OFBIZ-6387</a>] - Duplicate referredByPartyId field for EmployementAppForms.xml#ListEmployementApps at humanres/control/FindEmploymentApps</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6388'>OFBIZ-6388</a>] - Licence header is missing in Seo*.xml files</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6396'>OFBIZ-6396</a>] - Field Lookup do not show description when widget-verbose is set to false</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6397'>OFBIZ-6397</a>] - Survey : FTL error message when using Enumeration or Geo question type</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6400'>OFBIZ-6400</a>] - Fix permissions at specialpurpose/myportal/widget/PortalAdmScreens.xml</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6425'>OFBIZ-6425</a>] - FindService.performFindList listSize = null causes errors when list is empty because the rendering system expects 0</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6444'>OFBIZ-6444</a>] - Postal Address PDF Formatter Screen Problems</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6454'>OFBIZ-6454</a>] - Label manager generates an error when searching for unused labels</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6460'>OFBIZ-6460</a>] - select survey for product store cause exception</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6495'>OFBIZ-6495</a>] - The filter-by-date="true" of <entity-condition/> in view entity PartyExport does not work</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6496'>OFBIZ-6496</a>] - error in parsing array in ajaxUpdateAreas</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6520'>OFBIZ-6520</a>] - Price of product does not shows up when you change currency of your store and setup product prices with new currency</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6530'>OFBIZ-6530</a>] - Ajax request should be async</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6533'>OFBIZ-6533</a>] - Compiling errors</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6534'>OFBIZ-6534</a>] - Same Billing Address generates an error</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6536'>OFBIZ-6536</a>] - The "Create new" link under partymgr has disappeared</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6537'>OFBIZ-6537</a>] - Unable to change users timezone for session</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6544'>OFBIZ-6544</a>] - The focus-field-name form widget feature is broken</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6547'>OFBIZ-6547</a>] - Screen with pagination on tables lead to multiple db entries when submitting</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6552'>OFBIZ-6552</a>] - Error when changing language after using the product jump from the left part of the main product screen </li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6553'>OFBIZ-6553</a>] - ant load-extseed cause exception</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6554'>OFBIZ-6554</a>] - streamContentToBrowser fails when the file name contains a comma, only with Chrome.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6555'>OFBIZ-6555</a>] - errors and warning after load-extseed and running ofbiz</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6561'>OFBIZ-6561</a>] - GenericDelegator.store fails to clear userLogin cache on password update from ecommerce profile</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6562'>OFBIZ-6562</a>] - Service event handler fails to parse string-map-prefix parameters in case of Ajax call</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6563'>OFBIZ-6563</a>] - Search for group name reveals all</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6567'>OFBIZ-6567</a>] - Wrong percent encoding in Webtool/SQL Processor</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6569'>OFBIZ-6569</a>] - popup calendar icon missing and dialog is transparent in flat grey theme</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6570'>OFBIZ-6570</a>] - Anonymous unsubscribe from contact list generates an error</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6571'>OFBIZ-6571</a>] - Error Adding items to a Customer Return Invoice</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6572'>OFBIZ-6572</a>] - Character encoding issue when multitenant is set to Y</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6579'>OFBIZ-6579</a>] - ERROR: could not find ModelField for entity name: ItemIssuanceQuantitySum and field: issuedDateTime</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6582'>OFBIZ-6582</a>] - SQL Exceptions (OPTION) occuring when running OFBiz 13.07.02 against MySQL</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6583'>OFBIZ-6583</a>] - simple coding cleanup</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6584'>OFBIZ-6584</a>] - Survey shows wrong submitter details</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6589'>OFBIZ-6589</a>] - In all themes, popup calendar does not work</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6591'>OFBIZ-6591</a>] - ofbiz does not compile</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6600'>OFBIZ-6600</a>] - Scrum total billing cause exception</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6601'>OFBIZ-6601</a>] - example component causes exceptions</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6602'>OFBIZ-6602</a>] - Upgrade Tomcat from 7.0.59 to 7.0.64</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6605'>OFBIZ-6605</a>] - createQuoteRole, createContentRole, and createRequirementRole allow for adding Roles to a Party without permissions</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6606'>OFBIZ-6606</a>] - Some groovy files using Timestamp.valueOf are missing essential jar.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6615'>OFBIZ-6615</a>] - The EntityListIterator does not be closed in EntityQuery.query()</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6619'>OFBIZ-6619</a>] - PurgeJob.java does not delete RecurrenceRule because it is still referenced by RecurrenceInfo</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6624'>OFBIZ-6624</a>] - error in isValidEan util</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6627'>OFBIZ-6627</a>] - multiple select dropdown listbox shows only one entry</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6637'>OFBIZ-6637</a>] - Work Effort Month Calendar View Is Broken</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6640'>OFBIZ-6640</a>] - Eclipse .classpath contains internal Groovy Library classpath container</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6641'>OFBIZ-6641</a>] - Missing CountryCodeData.xml values for countries of the former Yugoslavia</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6642'>OFBIZ-6642</a>] - Non-breaking space incorrectly encoded in forms</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6643'>OFBIZ-6643</a>] - Order items for GZ-1006-5 via ecommerce/ordermgr shows error</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6652'>OFBIZ-6652</a>] - Errors in ProductSummary.groovy</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6654'>OFBIZ-6654</a>] - Display of a recurrent workeffort in workeffort calendar do not respect estimatedStart/CompletionDate</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6663'>OFBIZ-6663</a>] - Error occurred while printing Deposit Slip</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6665'>OFBIZ-6665</a>] - ecommerce screen exception</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6666'>OFBIZ-6666</a>] - ModelService constructor does not copy all attribute of service model.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6669'>OFBIZ-6669</a>] - Possible stored XSS issue with Content</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6674'>OFBIZ-6674</a>] - In addToCart() method, reset shipment method information in cart only if shipping applies on product</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6678'>OFBIZ-6678</a>] - viewimage in order generates an error</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6681'>OFBIZ-6681</a>] - Type-ahead regarding workeffort in AddQuoteWorkEffort</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6682'>OFBIZ-6682</a>] - Type-ahead regarding requirement in ListWorkEffortRequirements throws an error</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6683'>OFBIZ-6683</a>] - Type-ahead regarding workeffort in AddCommEventWorkEffort throws an error</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6684'>OFBIZ-6684</a>] - CcTypes.groovy misses licence</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6687'>OFBIZ-6687</a>] - org.ofbiz.entity.GenericModelException: Could not find definition for entity name FixedAssetMaintWorkEffort </li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6698'>OFBIZ-6698</a>] - sendCommEventAsEmail does not filter CommEventContentAssoc</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6703'>OFBIZ-6703</a>] - Cannot create more than one lead in the SFA component by same user</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6706'>OFBIZ-6706</a>] - The Widget-style of a menuItem in its link when the menu is selected</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6707'>OFBIZ-6707</a>] - WebtoolsUiLabels went missing</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6708'>OFBIZ-6708</a>] - Missing userLogin error on party profile screen when 1st content is non public</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6725'>OFBIZ-6725</a>] - Best Selling Products section in main order page takes into account cancelled orders</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6728'>OFBIZ-6728</a>] - Getting error when returning service (non-physical) product</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6729'>OFBIZ-6729</a>] - Return invoice not generated for service (non-physical) product</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6730'>OFBIZ-6730</a>] - Return shipment created for non-physical product</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6733'>OFBIZ-6733</a>] - Error with Service Product Invoice Lines</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6739'>OFBIZ-6739</a>] - Can not display product category name in Unicode.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6741'>OFBIZ-6741</a>] - The state list is not populated when trying to add a shipping address from the Quick Finalize Order screen.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6742'>OFBIZ-6742</a>] - Last categories section in e-commerce pages is broken.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6743'>OFBIZ-6743</a>] - Error on the Split Payment button from the Quick Finalize Order screen</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6753'>OFBIZ-6753</a>] - DemoTaxAuthority.xml GL Account for USA_IRS is incorrect</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6761'>OFBIZ-6761</a>] - The action of EditExampleBackgroundSubmit form is not correct when creating a example</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6765'>OFBIZ-6765</a>] - Error on Accounting reports for Cash transactions.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6771'>OFBIZ-6771</a>] - Upload product image does not work.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6775'>OFBIZ-6775</a>] - Duplicated to display jGrowl error message when open a popup dialog.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6778'>OFBIZ-6778</a>] - Possible "NPE" in viewcontent.ftl (found in trunk demo log)</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6779'>OFBIZ-6779</a>] - Wrong entity condition expression for fetching the view entity PartyAndContactMech.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6784'>OFBIZ-6784</a>] - JobSandbox : reload crashed job maybe duplicate pending service</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6788'>OFBIZ-6788</a>] - OFBIZ not generating pdf invoices</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6789'>OFBIZ-6789</a>] - image management cannot share images</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6791'>OFBIZ-6791</a>] - Various fixes related with sales opportunity</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6794'>OFBIZ-6794</a>] - Invalid content was found starting with element 'description'</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6795'>OFBIZ-6795</a>] - Bug on SFA vcard import</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6798'>OFBIZ-6798</a>] - Broken filter links if using ecommerce Layered Navigation</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6806'>OFBIZ-6806</a>] - Order Item with multiple qty reserved with multiple inventory item not correctly recorded into Shipment_Item_Billing</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6809'>OFBIZ-6809</a>] - The passport component misses a web.xml file</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6842'>OFBIZ-6842</a>] - ProjectMgr: GanttChart fails, in case of dependencies for tasks</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6844'>OFBIZ-6844</a>] - In DemoTaxAuthority.xml the associated countrycode for Bulgaria is wrong</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6856'>OFBIZ-6856</a>] - ContactMechs Label</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6859'>OFBIZ-6859</a>] - searchContent generates an error</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6861'>OFBIZ-6861</a>] - AdminSearch generates an error</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6888'>OFBIZ-6888</a>] - GroovyEngine.serviceInvoker masks Groovy script exceptions in some cases</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6893'>OFBIZ-6893</a>] - Error during first attempt of the synchronisation</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6898'>OFBIZ-6898</a>] - printCheck action generates an error</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6910'>OFBIZ-6910</a>] - Newly created id should be out from service 'createProductFeatureType'</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6918'>OFBIZ-6918</a>] - ApplicationDecorator Entity-One Screen Action Incomplete Primary Key</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6920'>OFBIZ-6920</a>] - Credit card details cannot be updated</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6922'>OFBIZ-6922</a>] - Currently the testRemoteSoap test service does not work.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6925'>OFBIZ-6925</a>] - Incorrect content length in response from HTTP service engine</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6933'>OFBIZ-6933</a>] - When we update the Allow order decimal quantity to N for product store and update the unit price of item in shopping cart then its shown error. </li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6937'>OFBIZ-6937</a>] - Company Check payment method should be shown when issuing chek</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6950'>OFBIZ-6950</a>] - enhancement of dutch labels</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6953'>OFBIZ-6953</a>] - Can not go to "viewprofile" if you is on webtools (see description and screenshot)</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6957'>OFBIZ-6957</a>] - jquery plugin jgrowl is loaded before jquery in ecommerce</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6966'>OFBIZ-6966</a>] - Unable to change language in ecommerce</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6987'>OFBIZ-6987</a>] - Exception in Form Widget Examples</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7000'>OFBIZ-7000</a>] - You cannot edit an image in content</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7007'>OFBIZ-7007</a>] - WebPos login page getting error "FileNotFoundException".</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7011'>OFBIZ-7011</a>] - Failure in Payment Capture process when ERROR is returned in referenceNum in paymentGatewayResponse</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7023'>OFBIZ-7023</a>] - ExampleCompoundWidgets throws errors in log</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7025'>OFBIZ-7025</a>] - Email-Notification send multiple times</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7050'>OFBIZ-7050</a>] - CMS does not store "Long text"</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7063'>OFBIZ-7063</a>] - Shipping charges reset to ZERO when update purchase order item quantity</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7068'>OFBIZ-7068</a>] - Export widget ftl pointing to wrong location</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7075'>OFBIZ-7075</a>] - Sending mail button from viewProfile doesn't work</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7082'>OFBIZ-7082</a>] - FileNotFoundException while editing contact information</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7089'>OFBIZ-7089</a>] - Cash Flow Statement report is broken</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7103'>OFBIZ-7103</a>] - FreeMarker template error: Template inclusion failed, on selection bluelight theme</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7117'>OFBIZ-7117</a>] - LookupAccount search screen 'Find' button redirect to Lookup Group</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7119'>OFBIZ-7119</a>] - cmssite not working</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7135'>OFBIZ-7135</a>] - Adding role for a party show error on the second add</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7163'>OFBIZ-7163</a>] - Service Reference: Filter for Definition Location is broken</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7164'>OFBIZ-7164</a>] - Fix incorretly clsoed else tag in ftl</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7167'>OFBIZ-7167</a>] - The HTML rendering of tests is no longer working when tests fail </li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7185'>OFBIZ-7185</a>] - Empty brackets shown when no party associated with Quote. Screen breaks when clicking it</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7203'>OFBIZ-7203</a>] - Empty Requirement Id and Product Id fields when generating pdf for Approved Product Requirements</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7212'>OFBIZ-7212</a>] - Error on product detail page</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7214'>OFBIZ-7214</a>] - AdminServer.java in start misses license heaader</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7312'>OFBIZ-7312</a>] - Order BIRT report is not working properly</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7323'>OFBIZ-7323</a>] - layered-modal hyperlink doesn't show style</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7330'>OFBIZ-7330</a>] - Error with Agreement Item Supplier product Pdf </li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7331'>OFBIZ-7331</a>] - Getting console error while reading property value</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7343'>OFBIZ-7343</a>] - Geo Location functionality of facility contact information screen is not working </li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7358'>OFBIZ-7358</a>] - In Facility find shipment button doesn't work on first click</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7361'>OFBIZ-7361</a>] - Catalog : Product Store Group from Product Store Group List item is not being open.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7364'>OFBIZ-7364</a>] - Failed to open BIRT charts on Product Statistics page.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7365'>OFBIZ-7365</a>] - fonts.pdf Throw error on terminal</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7390'>OFBIZ-7390</a>] - Print PDF functionality throws exception on Inventory Average Cost screen</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7427'>OFBIZ-7427</a>] - OrderId, PartId showing multiple times in ReceiveInventoryAgainstPurchaseOrder screen.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7435'>OFBIZ-7435</a>] - Create Custreq from CommEvent shows error on screen</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7526'>OFBIZ-7526</a>] - View Quote screen is broken</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7563'>OFBIZ-7563</a>] - Error message not visible properly after adding item in webpos</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7602'>OFBIZ-7602</a>] - Hide product sub menus while creating new product</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7612'>OFBIZ-7612</a>] - Party content in party component is not getting updated</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7628'>OFBIZ-7628</a>] - Add Communication Event Roles functionality is not working</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7674'>OFBIZ-7674</a>] - Unable to perform search at "eBay Orders Import" screen of eBay component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7681'>OFBIZ-7681</a>] - Update ./ant create-component template for controller.xml to reflect change in OFBIZ-7061</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7699'>OFBIZ-7699</a>] - Invalid content was found starting with element 'xls'</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7700'>OFBIZ-7700</a>] - File Not Found exception in export to ebay</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7721'>OFBIZ-7721</a>] - auto-completer does not work to search Data Resource Id and owner content id</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7724'>OFBIZ-7724</a>] - System allows to change status from cancel to empty for return and allow-empty flag of form widget does not honour to add or not empty option field in drop-down </li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7750'>OFBIZ-7750</a>] - Error adding foreign key: ModelEntity was null for related entity name Tenant</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7758'>OFBIZ-7758</a>] - jquery.jgrowl.min.css is linked twice in html page</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7797'>OFBIZ-7797</a>] - Bug in OfbizSetup Create Customer Step</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7814'>OFBIZ-7814</a>] - Console Warning : No parameter found for override parameter named</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7816'>OFBIZ-7816</a>] - Profile of contact person not shown on quick add of contact in SFA</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7817'>OFBIZ-7817</a>] - Party manager home screen generates console error</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7830'>OFBIZ-7830</a>] - Upload Communication Content functionality is not working from the Internal Note creation screen</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7836'>OFBIZ-7836</a>] - Unwanted input box on OrderList screen.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7929'>OFBIZ-7929</a>] - Scrum find Total Backlog Item is not working in non-English language</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7938'>OFBIZ-7938</a>] - testFopMacroLibrary fails on Windows</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7939'>OFBIZ-7939</a>] - Webtools throws an error</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7942'>OFBIZ-7942</a>] - GitInfo.ftl cannot be created when sources checkout using svn</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7943'>OFBIZ-7943</a>] - Cancelling shipment receipt doubles the inventory</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7946'>OFBIZ-7946</a>] - Data load error on Web Pos component due to removal of POS component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7947'>OFBIZ-7947</a>] - Create a Customer fails because password is missing</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7957'>OFBIZ-7957</a>] - RateAmount is not found when the level is 'WorkEffort'</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7971'>OFBIZ-7971</a>] - Allow Gantt function to compute task with non-numerical ID</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7975'>OFBIZ-7975</a>] - rendering errors in webtools artifact page</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7978'>OFBIZ-7978</a>] - Client side required field validation is not working for password type field</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7986'>OFBIZ-7986</a>] - Warning related to 'InventoryItemAndLocation' entity on server start </li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7989'>OFBIZ-7989</a>] - Screen Broken at "Performance Tests" of entity engine</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7995'>OFBIZ-7995</a>] - Not able to create customer</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8001'>OFBIZ-8001</a>] - Entity ECA rules throws NPE in case of remove operation</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8114'>OFBIZ-8114</a>] - The "Only Not Used Labels" option of the Label Manager is broken</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8119'>OFBIZ-8119</a>] - Character encoding issue found in file build.gradle</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8151'>OFBIZ-8151</a>] - Update Party Invitation does not honour "To Name" field</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8153'>OFBIZ-8153</a>] - LabelManager doesn't search .groovy files</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8222'>OFBIZ-8222</a>] - Edit Calendar Exception week for "Calendar" is broken</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8223'>OFBIZ-8223</a>] - Broken page renders while click on Submit button on Qualification Screen</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8242'>OFBIZ-8242</a>] - postalAddressHtmlFormatter in PartyScreens.xml does not work properly.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8250'>OFBIZ-8250</a>] - SvnInfo.ftl and GitInfo.ftl are not generated by default</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8265'>OFBIZ-8265</a>] - Bursted Layout in screen "orderstatus" of ecommerce</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8282'>OFBIZ-8282</a>] - Error : Column 'DATA_CATEGORY_ID' cannot accept a NULL value</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8296'>OFBIZ-8296</a>] - Error on update of routing task deliverable product</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8302'>OFBIZ-8302</a>] - Sorting of lists generates undesired results</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8312'>OFBIZ-8312</a>] - funny css value in html output</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8315'>OFBIZ-8315</a>] - webtools label search widget issue</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8318'>OFBIZ-8318</a>] - Error on scrum main page</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8321'>OFBIZ-8321</a>] - Labels and properties caches clearing no longer work</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8322'>OFBIZ-8322</a>] - Unable to run service findContentParents from webtools</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8336'>OFBIZ-8336</a>] - Can't find resource for bundle</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8342'>OFBIZ-8342</a>] - ConfigXMLReader doesn't verify if "transaction-timeout" is set before trying to unbox</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8345'>OFBIZ-8345</a>] - popup calendar fails for ecomseo et ecommerce</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8348'>OFBIZ-8348</a>] - cannot edit shopping list for ecommerce and ecomseo</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8358'>OFBIZ-8358</a>] - Validation missing on required fields on run service screen</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8458'>OFBIZ-8458</a>] - Updating Party Content Image does not work</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8489'>OFBIZ-8489</a>] - product page missing form elements</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8508'>OFBIZ-8508</a>] - Missing uiLabel on Export Products to eBay screen</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8602'>OFBIZ-8602</a>] - Required parameters are optional for createWorkEffortKeywords service</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8603'>OFBIZ-8603</a>] - Incorrect required parameters for createWorkEffortQuote service</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8604'>OFBIZ-8604</a>] - Incorrect required parameters for createWorkEffortRequest service</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8605'>OFBIZ-8605</a>] - Incorrect required parameters for createWorkEffortRequestItem service</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8617'>OFBIZ-8617</a>] - Lookup of initial account in new opportunity doesn't work</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8620'>OFBIZ-8620</a>] - Incorrect required parameters for createWorkEffortRequestItemAndRequestItem service</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8621'>OFBIZ-8621</a>] - Required parameters are optional for createWorkEffortReview service</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8622'>OFBIZ-8622</a>] - Required parameters are optional for createWorkRequirementFulfillment service</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8624'>OFBIZ-8624</a>] - Search Single Transactions From eBay is not working</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8625'>OFBIZ-8625</a>] - Footer text inconsistent in flat gray theme</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8822'>OFBIZ-8822</a>] - Search operation on 'AllExamplesWithDesiredCustomerFeaturesReport' entity causing exception</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-9046'>OFBIZ-9046</a>] - Fixed the UI Label in file CommonErrorUiLabels.xml</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-9120'>OFBIZ-9120</a>] - Wrong label definition from PartyUiLabels.xml</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-9125'>OFBIZ-9125</a>] - Errormessage is displayed twice in LoginEvents.java</li>
</ul>
<h2>Improvement</h2>
<ul>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-2531'>OFBIZ-2531</a>] - Enhancements in Trainings under HR module</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-2813'>OFBIZ-2813</a>] - ProductStore did not allow the default timezone to be set</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-2983'>OFBIZ-2983</a>] - HTML cleanup and layout fixes</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-2995'>OFBIZ-2995</a>] - Layout improvement for showing cart properly on order entry page for bizznesstime theme.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-3311'>OFBIZ-3311</a>] - Allow to sort widget dropdowns on items descriptions</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-3406'>OFBIZ-3406</a>] - Adding party relationship roles - error message is confusing.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-3480'>OFBIZ-3480</a>] - party id cannot be specified through GUI while creating a Party (Person or Party Group)</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-3669'>OFBIZ-3669</a>] - Data seeding to support ability to return products of type RAW_MATERIAL</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-3902'>OFBIZ-3902</a>] - Improving the Party Find Screen</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-4020'>OFBIZ-4020</a>] - Sign up for a contact list always redirects to the main ecommerce page</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-4090'>OFBIZ-4090</a>] - Add Support For Compound Screen Widget XML Files</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-4374'>OFBIZ-4374</a>] - Support filtering on non-std date field names in performFind and prepareFind</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-4430'>OFBIZ-4430</a>] - Replace OFBiz HttpClient by org.apache.commons.httpclient.HttpClient</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-4481'>OFBIZ-4481</a>] - Adding a new attribute ignore-when (verry similar to use-when) that enable rendering or not a field in list or multi form.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-4502'>OFBIZ-4502</a>] - Improved CMS tree: more functionality and faster for large trees</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-4761'>OFBIZ-4761</a>] - Adding some translations for French</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5024'>OFBIZ-5024</a>] - Modifying data retrieval and storage logic.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5042'>OFBIZ-5042</a>] - Apache Solr Implementation</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5169'>OFBIZ-5169</a>] - Removing Javolution from framework components</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5235'>OFBIZ-5235</a>] - Show quantityUom at every place where the quantity of a product is shown</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5361'>OFBIZ-5361</a>] - Adding the week number in date picking dropdowns</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5461'>OFBIZ-5461</a>] - include ivy clearcache in build</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5529'>OFBIZ-5529</a>] - User should be able to delete associated production runs</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5697'>OFBIZ-5697</a>] - Add a drop-down for Tax Auth Combined Id in Product Price Creation screen</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5705'>OFBIZ-5705</a>] - cloneWorkEffortPartyAssignments doesn't work</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5706'>OFBIZ-5706</a>] - Have parties to be assigned to production run tasks</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5709'>OFBIZ-5709</a>] - ProductionRun doesn't capture and show manufacturing organisation</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5750'>OFBIZ-5750</a>] - Convert Party entites CRUD service from simple to entity-auto</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5752'>OFBIZ-5752</a>] - Adding Uom to product quantity in production run forms</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5757'>OFBIZ-5757</a>] - Remove tenant data from the demo data set</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5758'>OFBIZ-5758</a>] - SalaryStep entity missing From and Thru dates</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5781'>OFBIZ-5781</a>] - Convert Javolution collections into Java collections</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5812'>OFBIZ-5812</a>] - Move Portal Mgt functions in MyPortal</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5814'>OFBIZ-5814</a>] - Move PartyRelationshipAndPartyDetail entity to Party component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5833'>OFBIZ-5833</a>] - Tasks menu item should only be visible to persons with appropriate rights</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5835'>OFBIZ-5835</a>] - Trunk fails to compile with Java 1.8</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5852'>OFBIZ-5852</a>] - Add ability to assign parties to Schema tasks</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5868'>OFBIZ-5868</a>] - Have the ability to view the quote profit at all times</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5872'>OFBIZ-5872</a>] - Inconsistencies related to the "java -jar ofbiz.jar" commands when used with arguments</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5893'>OFBIZ-5893</a>] - Use EntityQuery Builder methods in goovy files by replacing Entity Engine methods.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5917'>OFBIZ-5917</a>] - Improve the way FOP handles fonts notably for currency symbols</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5950'>OFBIZ-5950</a>] - addOrderShipmentToShipment Should Return shipmentItemSeqId</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5955'>OFBIZ-5955</a>] - Convert Agreement entites CRUD service from simple to entity-auto</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5957'>OFBIZ-5957</a>] - Convert Invoice entites CRUD service from simple to entity-auto</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5958'>OFBIZ-5958</a>] - Convert CostComponentCalc entites CRUD service from simple to entity-auto</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5963'>OFBIZ-5963</a>] - Convert BillingAccount entites CRUD service from simple to entity-auto</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5969'>OFBIZ-5969</a>] - Add ability to find by orderName</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5975'>OFBIZ-5975</a>] - Form ViewSprintItem is not referenced in screens</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5992'>OFBIZ-5992</a>] - Convert FixedAsset entites CRUD service from simple to entity-auto</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5994'>OFBIZ-5994</a>] - Have view-entity AgreementAndRole removed</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6012'>OFBIZ-6012</a>] - Show "Create Return" button on order view screen other than when order status is complete </li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6016'>OFBIZ-6016</a>] - Adding som Dutch translations to common labels.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6018'>OFBIZ-6018</a>] - Adding some Dutch translations to Manufacturing Entity labels</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6019'>OFBIZ-6019</a>] - Adding and improving some Dutch translations to ORDER labels</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6020'>OFBIZ-6020</a>] - PartyLabels - adding and improving</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6026'>OFBIZ-6026</a>] - Creating a QuoteRole doesn't return to overview of QuoteRoles</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6030'>OFBIZ-6030</a>] - ViewQuoteItemInfo.ftl has <td></td> at the wrong place</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6044'>OFBIZ-6044</a>] - Have Additional Party Entry Screen of the order creation process show parties associated with the order</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6047'>OFBIZ-6047</a>] - Convert DataSource, Enumeration and Note entites CRUD service from simple to entity-auto</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6059'>OFBIZ-6059</a>] - UOM missing 2 entries</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6062'>OFBIZ-6062</a>] - Update apache tika jar to 1.7</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6069'>OFBIZ-6069</a>] - Move CuttingListReport.groovy to appropriate folder</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6104'>OFBIZ-6104</a>] - Adjust quote demo data to display profit margin</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6105'>OFBIZ-6105</a>] - Have the internal organisation set upon Quote creation</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6107'>OFBIZ-6107</a>] - Quote report should open in a new window</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6118'>OFBIZ-6118</a>] - Upgrade Log4j from 2.0.1 to 2.2</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6121'>OFBIZ-6121</a>] - Have PDF reports in BIRT open in new windows</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6122'>OFBIZ-6122</a>] - Have BIRT reporting component visible in secondary app menu</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6124'>OFBIZ-6124</a>] - Have a better layout design of the chart.rptdesign</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6125'>OFBIZ-6125</a>] - Move SeoConfig.xml to e-commerce</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6144'>OFBIZ-6144</a>] - Convert FindShipment ftl to form widget</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6148'>OFBIZ-6148</a>] - Adding GeoPoints overview to geo management</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6153'>OFBIZ-6153</a>] - Find Screen Layout: the main title is missing in Tomahawk</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6171'>OFBIZ-6171</a>] - Replace 'Open for Business' references with 'Apache OFBiz'</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6176'>OFBIZ-6176</a>] - Removes ASL2 license headers from files generated by create-component ant target</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6177'>OFBIZ-6177</a>] - Have parentCustRequest in edit screens for Request in order manger be a lookup function</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6185'>OFBIZ-6185</a>] - Type-ahead regarding LookupInvoice in AP doesn't return result</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6198'>OFBIZ-6198</a>] - Show estimatedShipDate for ordershippinginfo.ftl</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6208'>OFBIZ-6208</a>] - rename AccountingConfig.properties to accounting.properties</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6214'>OFBIZ-6214</a>] - Have overview of questions in EditSurveyQuestions.ftl paginate properly</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6217'>OFBIZ-6217</a>] - fix warnings in trunk on java source code</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6223'>OFBIZ-6223</a>] - Move special purpose/jetty to attic</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6224'>OFBIZ-6224</a>] - Rename search.properties in special purpose/lucene to lucene.properties</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6227'>OFBIZ-6227</a>] - Migrate findParty.ftl to form widgets</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6241'>OFBIZ-6241</a>] - Fix fop warning related to table-layout="auto"</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6268'>OFBIZ-6268</a>] - Improve Start.java Component Loading</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6274'>OFBIZ-6274</a>] - Rename OFBiz artifacts from 'org.ofbiz.*' to org.apache.ofbiz.*'</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6291'>OFBIZ-6291</a>] - Update code to check for types rather than throw ClassCastException</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6302'>OFBIZ-6302</a>] - Ftl to Widget: improve ViewCertificate to use widgets instead of ftl</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6303'>OFBIZ-6303</a>] - Remove EventReminders.properties as it has been declared deprecated</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6307'>OFBIZ-6307</a>] - Add ability to change Routing statuses</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6311'>OFBIZ-6311</a>] - Order Manager ViewQuote screen should display party name and link to party manager</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6315'>OFBIZ-6315</a>] - Add allow-multiple to Find CustRequest statusId field </li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6320'>OFBIZ-6320</a>] - Replace EditProductAssoc ftl with widgets</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6328'>OFBIZ-6328</a>] - createProductionRunsForOrder service doesn't handle cancelled production runs</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6332'>OFBIZ-6332</a>] - Replacing bsh code with Groovy code</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6354'>OFBIZ-6354</a>] - FOP rendered list form widgets do not work for fields with postition > 0</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6355'>OFBIZ-6355</a>] - FOP renderer does not support alternate row style</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6356'>OFBIZ-6356</a>] - FOP renderer doesn't apply title-area-style</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6364'>OFBIZ-6364</a>] - Viewing party content should open in a new window</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6368'>OFBIZ-6368</a>] - Empty availabilityStatusId widget dropdown for statusTypeId WEFA_AVAILABILITY of ProductionRunTaskFixedAssets and AddProductionRunTaskFixedAsset</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6370'>OFBIZ-6370</a>] - Removed unused commons-cli 1.2 jar</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6371'>OFBIZ-6371</a>] - Make background-color in setSourceColor function in fieldlookup.js theme dependent</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6389'>OFBIZ-6389</a>] - Add EmplPositionType for CEO and CFO in applications/humanres/data/HumanResTypeData.xml</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6393'>OFBIZ-6393</a>] - Support all JobRequisition.qualification PartyQualTypes for RecruitmentForms.xml#EditJobRequisition at humanres/control/EditJobRequisition</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6395'>OFBIZ-6395</a>] - The lookup and text-area have a read-only attribute but not the text input field</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6402'>OFBIZ-6402</a>] - Replace FTL at webtools/control/entitymaint with widgets</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6403'>OFBIZ-6403</a>] - Form widget <hyperlink> id not supported by MacroFormRenderer.java</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6405'>OFBIZ-6405</a>] - Grid widget requires cache clear before modifications are rendered</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6415'>OFBIZ-6415</a>] - renderTextFindField doesn't reselect operation dropdown or ignoreCase checkbox</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6417'>OFBIZ-6417</a>] - renderDateFindField doesn't reselect operation</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6422'>OFBIZ-6422</a>] - Paginator.getListLimits listSize gets set to viewSize for FindServices.performFindList</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6423'>OFBIZ-6423</a>] - FindService.performFindList can't be swapped for performFind of grids/forms</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6432'>OFBIZ-6432</a>] - Fully translate OFBiz to Arabic</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6438'>OFBIZ-6438</a>] - PartyGeoLocation shows menus when accessed</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6443'>OFBIZ-6443</a>] - Form widget <auto-fields-entity default-field-type="find"/> does not render range find fields for fixed-point</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6445'>OFBIZ-6445</a>] - order/widget/ordermgr/CustRequestForms.xml#ListRequestList custRequestTypeId should be displayed as description to match find field</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6446'>OFBIZ-6446</a>] - ordermgr/control/FindRequest ListRequestList productStoreId as display-entity with subhyperlink</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6447'>OFBIZ-6447</a>] - Add custRequestDate to ordermgr/control/FindRequest ListRequestList</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6458'>OFBIZ-6458</a>] - Upgrade OFBiz to Java JDK 8</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6459'>OFBIZ-6459</a>] - ModelFormFieldBuilder.induceFieldInfoFromEntityField() incorrect FieldInfo.fieldType of TEXT (3) instead of RANGEQBE (15) for auto-fields-entity <range-find></li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6463'>OFBIZ-6463</a>] - ordermgr/control/deleteCustRequestParty should delete the record rather than updating the through date</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6464'>OFBIZ-6464</a>] - Consolidate name and partyId field of order/widget/ordermgr/CustRequestForms.xml#ListRequestRoles</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6465'>OFBIZ-6465</a>] - Replace submit button text with create text order/widget/ordermgr/CustRequestForms.xml#EditRequestRole</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6470'>OFBIZ-6470</a>] - Adding a Postal Address templates for the Netherlands</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6476'>OFBIZ-6476</a>] - Geo Data Set for Chile</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6478'>OFBIZ-6478</a>] - Remove unused view-maps from SCRUM controller</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6479'>OFBIZ-6479</a>] - foFormMacroLibrary.ftl renderFieldTitle needs to support styles</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6481'>OFBIZ-6481</a>] - foFormMacroLibrary.ftl renderFormOpen needs to support styles</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6483'>OFBIZ-6483</a>] - foFormMacroLibrary.ftl renderFormatListWrapperOpen needs to support styles</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6489'>OFBIZ-6489</a>] - <drop-down> <entity-options> description attribute should default to ${description} if not specified as is done for <display-entity></li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6490'>OFBIZ-6490</a>] - <drop-down> <list-options> description and key-name should be set to default if unspecified same as <display-entity></li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6504'>OFBIZ-6504</a>] - how to Create PDF with password Protected in Ofbiz</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6513'>OFBIZ-6513</a>] - countyGeoId and geoPointId fields are missing in PartyAndPostalAddress entity view </li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6514'>OFBIZ-6514</a>] - All postalAddress simple-map-processors miss some fields</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6519'>OFBIZ-6519</a>] - Remove Old deprecated code in WorkEffortEventReminder services</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6523'>OFBIZ-6523</a>] - service findOrders set viewSize and viewIndex to optional</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6524'>OFBIZ-6524</a>] - Cleaning forms code after setting default-value in list-options and entity-options</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6525'>OFBIZ-6525</a>] - Add confirmation message before deleting entity record from web-tools application</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6527'>OFBIZ-6527</a>] - Display GeoPoint with map in WebTools</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6529'>OFBIZ-6529</a>] - Improve the Create/Edit Geo screen in WebTools/GeoManagement</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6532'>OFBIZ-6532</a>] - Adding a new entity-group but no corresponding delegator/group-map is hard to debug</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6539'>OFBIZ-6539</a>] - The color of hovered menus in FlatGrey theme is almost invisible</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6545'>OFBIZ-6545</a>] - Replace webtools/control/EntitySQLProcessor FTL with widgets</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6564'>OFBIZ-6564</a>] - Change ProductProductJump zh label</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6566'>OFBIZ-6566</a>] - SecurityGroup doesn't get removed from a Party</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6592'>OFBIZ-6592</a>] - Add wiki documentation regarding the component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6593'>OFBIZ-6593</a>] - Have hard coded links in admin screen open in new windows</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6596'>OFBIZ-6596</a>] - The Solr redirection does not work in trunk demo</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6597'>OFBIZ-6597</a>] - Update site-conf.xsd to prioritise Groovy over BSF</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6598'>OFBIZ-6598</a>] - Replace bsf event type and handler with groovy</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6608'>OFBIZ-6608</a>] - Using official content type for json requests</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6616'>OFBIZ-6616</a>] - Upgrade solr to 4.10.3 or later</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6672'>OFBIZ-6672</a>] - Caches are missing in CategoryContentWrapper and ProductConfigItemContentWrapper </li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6673'>OFBIZ-6673</a>] - Form layered-modal is not respecting passed (default) width</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6691'>OFBIZ-6691</a>] - Remove tooltip="${uiLabelMap.CommonRequired}" from fields</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6692'>OFBIZ-6692</a>] - Improve xsd definitions</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6696'>OFBIZ-6696</a>] - Remove tooltip="${uiLabelMap.CommonNotModifRecreat}" from display fields</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6699'>OFBIZ-6699</a>] - Remove condition attr from StatusValidChange data as its not a valid field of StatusValidChange</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6700'>OFBIZ-6700</a>] - Added some text for French language in ProductEntityLabels.xml, no functional change</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6701'>OFBIZ-6701</a>] - Enhancement in the content wrappers</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6702'>OFBIZ-6702</a>] - Update SimpleContentViewHandler to return mime type on file extension and use inline for content-disposition</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6710'>OFBIZ-6710</a>] - Improve the way default position and size lookup parameters are set</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6714'>OFBIZ-6714</a>] - Removing unexplained TODO from Manufacturing services</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6719'>OFBIZ-6719</a>] - Remove superfluous .properties extension from EntityUtilProperties requests</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6721'>OFBIZ-6721</a>] - org.ofbiz.common.login.LoginServices.userLogin causes stack track when username or password is incorrect</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6727'>OFBIZ-6727</a>] - Webtools Entity edition, the suggested date and time formats are not localised</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6732'>OFBIZ-6732</a>] - Add some UiLabels in French</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6735'>OFBIZ-6735</a>] - Tooltip Calendar field (date or date-time) should not stop when using tab key</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6738'>OFBIZ-6738</a>] - Enhance PartyTypeAttr with a description field</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6744'>OFBIZ-6744</a>] - Convert Survey entites CRUD service from simple to entity-auto</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6745'>OFBIZ-6745</a>] - Convert Content entites CRUD service from simple to entity-auto</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6748'>OFBIZ-6748</a>] - Update commons collections from 3.2.2 to 4.1</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6762'>OFBIZ-6762</a>] - Show JGrowl alert when using ajax submit form</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6772'>OFBIZ-6772</a>] - Add ability to specify comparison operators for promotions with conditions on quantity</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6773'>OFBIZ-6773</a>] - Add ability to specify categories/products to filter the order sub-total amount eligible for a discount.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6777'>OFBIZ-6777</a>] - Product weight field enhancements</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6783'>OFBIZ-6783</a>] - Refactor the start component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6790'>OFBIZ-6790</a>] - Add service blackout period on job mananger</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6802'>OFBIZ-6802</a>] - be able to set accounting company in the header, so other companent can change it too.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6810'>OFBIZ-6810</a>] - Refactor components regarding freemarker file locations</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6848'>OFBIZ-6848</a>] - Add getFieldList method to EntityQuery</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6850'>OFBIZ-6850</a>] - Convert PartyContent and CommunicationEventPurpose entites CRUD service from simple to entity-auto</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6851'>OFBIZ-6851</a>] - Convert TaxAuthority entites CRUD service from simple to entity-auto</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6852'>OFBIZ-6852</a>] - Convert CreditCardTypeGlAccount entity CRUD service from simple to entity-auto</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6853'>OFBIZ-6853</a>] - Convert SalesOpportunity and SalesForecastDetail entites CRUD service from simple to entity-auto</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6854'>OFBIZ-6854</a>] - Convert some order entites CRUD service from simple to entity-auto</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6863'>OFBIZ-6863</a>] - Load JDBC drivers when creating tenant on PostgreSQL or mySQL</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6868'>OFBIZ-6868</a>] - Add template location for login, change/forgetPassword, getSecurityQuestion</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6869'>OFBIZ-6869</a>] - Jgrowl enhancement i18n and centered</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6873'>OFBIZ-6873</a>] - Convert some Product entites CRUD service from simple to entity-auto</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6875'>OFBIZ-6875</a>] - Update various accounting labels regarding the dutch locale</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6876'>OFBIZ-6876</a>] - Update various manufacturing labels regarding the dutch locale </li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6882'>OFBIZ-6882</a>] - Extend the PostalAddress entity with additional elements</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6885'>OFBIZ-6885</a>] - Czech translation</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6890'>OFBIZ-6890</a>] - Dutch translations for catalog labels</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6892'>OFBIZ-6892</a>] - new action expire for service engine entity-auto</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6895'>OFBIZ-6895</a>] - Product price rule with no conditions. </li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6909'>OFBIZ-6909</a>] - Recognize user disabled by system or administrator</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6911'>OFBIZ-6911</a>] - Return success message from service when ContactMech delete succesfully</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6923'>OFBIZ-6923</a>] - Improve the decorator for manufacturing/order/facility component for re-use</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6924'>OFBIZ-6924</a>] - comments on ordering products should be store driven</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6938'>OFBIZ-6938</a>] - Move forms in ProductStoreForms.xml to StoreForms.xml</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6954'>OFBIZ-6954</a>] - Correct setting of the WorkEffortPurposeTypeId on production run tasks</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6958'>OFBIZ-6958</a>] - Adding event definitions for inbound and outbound shipments</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6962'>OFBIZ-6962</a>] - Enhancing *Attribute entities with a description field</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6968'>OFBIZ-6968</a>] - Redundant image in popup (tooltip)</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6990'>OFBIZ-6990</a>] - Add Example for Compound Screen Widget</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7013'>OFBIZ-7013</a>] - party search form does not properly collapse sections when none|postal|telecom|other selected</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7027'>OFBIZ-7027</a>] - Added support to include party classification information in Promo description</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7035'>OFBIZ-7035</a>] - Have https://localhost:8443/example/control/fonts.pdf open in a new window</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7036'>OFBIZ-7036</a>] - Have https://localhost:8443/example/control/ExampleReportPdfBarcode open in a new window</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7041'>OFBIZ-7041</a>] - Upgrade freemarker jar to 2.3.24</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7043'>OFBIZ-7043</a>] - Remove commented code labeled as "TO BE REMOVED"</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7044'>OFBIZ-7044</a>] - Remove redundant entries of handlers from controller.xml</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7048'>OFBIZ-7048</a>] - Sales Return: UI issues for top level buttons after sales return is created</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7054'>OFBIZ-7054</a>] - Example -> PDF should be open in a new window</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7061'>OFBIZ-7061</a>] - Autocompletion for Compound Widget</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7091'>OFBIZ-7091</a>] - Two empty options are shown in shipping method select box on Edit promo screen</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7102'>OFBIZ-7102</a>] - Fix the Approve button label for newly added item to the existing PO</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7118'>OFBIZ-7118</a>] - Remove useless IfRegexpTest class and test</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7122'>OFBIZ-7122</a>] - Showing Invoice address from PartyContactMech</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7139'>OFBIZ-7139</a>] - Product Name</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7141'>OFBIZ-7141</a>] - Upgrade apache fop to 2.1</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7152'>OFBIZ-7152</a>] - Product Store Groups menu item doesn't gets highlighted on selection </li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7154'>OFBIZ-7154</a>] - Update Survey Question is not working from the list of SurveyQuestionAppl</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7168'>OFBIZ-7168</a>] - Run MRP shows all type of facilities</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7169'>OFBIZ-7169</a>] - ContentWrapper classes honors the entity fields instead should honor the contents</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7170'>OFBIZ-7170</a>] - Improvements in 'Find Shipment' screen to make it consistent with other find screens</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7175'>OFBIZ-7175</a>] - Create Return Screen should not show the created by field</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7176'>OFBIZ-7176</a>] - Add lookup for party when associating party to category</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7177'>OFBIZ-7177</a>] - Some UI Labels are missing on EditProductCost page</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7178'>OFBIZ-7178</a>] - Redirect to Find Feature Interaction page after successfully addition of new Feature Interaction</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7187'>OFBIZ-7187</a>] - Comment added while adding products to cart are not editable at cart item level</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7218'>OFBIZ-7218</a>] - Refactor components regarding groovy file locations</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7250'>OFBIZ-7250</a>] - Add a look-up for Product Id in Find Facility Inventory Items Screen</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7251'>OFBIZ-7251</a>] - Update Payment Gateway Config data for Payment Gateway Authorize.net </li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7256'>OFBIZ-7256</a>] - After adding child categories user should remain on the same page</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7258'>OFBIZ-7258</a>] - Duplicate product feature groups associated with a category when duplicating category and selected option to duplicate feature</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7259'>OFBIZ-7259</a>] - Hide associated content related section when creating new Product/Category content</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7266'>OFBIZ-7266</a>] - Auto-complete on lookup field should be able to support filter by date.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7272'>OFBIZ-7272</a>] - Enforce noninstantiability to all Utility classes</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7297'>OFBIZ-7297</a>] - Migrate promotext.properties to UiLabels</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7301'>OFBIZ-7301</a>] - Add a look-up for Shipment Id and WorkEffort Id in Inventory Items Details screen under Facility Component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7302'>OFBIZ-7302</a>] - Add a look-up for Product Id, UserLogin Id and Billing Account in Find Order Screen</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7303'>OFBIZ-7303</a>] - Add a look-up for UserLogin Id in Find Party Screen</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7304'>OFBIZ-7304</a>] - Add a look-up for Product Id in Find Revision Screen under scrum component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7305'>OFBIZ-7305</a>] - Small UI issue at project overview</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7310'>OFBIZ-7310</a>] - Use UtilValidate.isEmpty() instead of length() <= 0</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7311'>OFBIZ-7311</a>] - Formatting and renaming of the CSS files as per best practices</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7321'>OFBIZ-7321</a>] - Add the -server JVM argument to Ant targets like start and tools/start*.bat files</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7332'>OFBIZ-7332</a>] - Add Product lookup when associating product with location from Edit Facility Location page</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7336'>OFBIZ-7336</a>] - Production Run "Add party" form should have fromDate and thruDate field</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7339'>OFBIZ-7339</a>] - Replace EntityUtilProperties getPropertyValue method with correct method calls</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7342'>OFBIZ-7342</a>] - Inconsistent UI for Update and Expire button at Facility Contact Information Screen</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7359'>OFBIZ-7359</a>] - Product based promotion calculation</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7381'>OFBIZ-7381</a>] - Fix 'requestitems' target from order menu</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7384'>OFBIZ-7384</a>] - Remove status field from RequestRoles section on request overview page</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7387'>OFBIZ-7387</a>] - Product name is showing multiple time on create purchase order</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7394'>OFBIZ-7394</a>] - Allow user to select multiple options in "Purchases by Product" report from basic search criterias while generating report</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7421'>OFBIZ-7421</a>] - Required client side validation on sending BIRT report by mail</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7454'>OFBIZ-7454</a>] - [OFBIZ-7173] Any new product added against given routing task via Actual Material screen is not reflected on production run declaration screen.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7472'>OFBIZ-7472</a>] - Inconsistent UI for keyword search Screen of ebay component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7484'>OFBIZ-7484</a>] - The UI of payment section distorts when there is a billing account present for a customer while placing a sales order</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7486'>OFBIZ-7486</a>] - Improper UI of View and Edit button on shipment page</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7519'>OFBIZ-7519</a>] - Some entity-auto services fields doesn't have optional false in case of multiple PK's</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7521'>OFBIZ-7521</a>] - Refer to objects by their interfaces rather than class when instantiating Collection implementation classes in Java files </li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7527'>OFBIZ-7527</a>] - Questions from category should not come to apply on survey when creating/editing any question</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7533'>OFBIZ-7533</a>] - Not able to set new Lot Id to existing inventory item</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7534'>OFBIZ-7534</a>] - Migrate OFBiz from Apache Ant to Gradle build system</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7539'>OFBIZ-7539</a>] - Catch GenericEntityException and GenericServiceException and other instead of Exception in Java classes</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7553'>OFBIZ-7553</a>] - On order list page, the 'All' checkbox for status field does not work properly</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7564'>OFBIZ-7564</a>] - Remove HtmlFormWrapper(depricated) and its dependencies</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7592'>OFBIZ-7592</a>] - Show price column in supplier product lookup during PO creation</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7597'>OFBIZ-7597</a>] - Entity auto services doesn't returns success message</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7604'>OFBIZ-7604</a>] - Add lookup for approver party at leave approval find form</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7631'>OFBIZ-7631</a>] - Remove XmlFormRenderer Class after removing its dependency</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7632'>OFBIZ-7632</a>] - Remove TextFormRenderer Class after removing its dependency</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7633'>OFBIZ-7633</a>] - Remove TextScreenRenderer Class after removing its dependency</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7634'>OFBIZ-7634</a>] - Remove HtmlFormRenderer Class after removing its dependency</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7635'>OFBIZ-7635</a>] - Remove HtmlScreenRenderer Class after removing its dependency</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7648'>OFBIZ-7648</a>] - Page bottom navigation problem with grid and include-grid</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7652'>OFBIZ-7652</a>] - "Tasks" menu is showing selected when click in scrum component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7654'>OFBIZ-7654</a>] - Success message should be shown on screen for successfully applied promotion </li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7655'>OFBIZ-7655</a>] - Use 'conditionFields' instead of 'andCondition' in Lookup screen</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7695'>OFBIZ-7695</a>] - Add UI labels for success / eror messages in java and groovy files</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7698'>OFBIZ-7698</a>] - Remove un-used variables from Java and Groovy files.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7702'>OFBIZ-7702</a>] - Add a look-up for Product Id at Add Product Store Surveys screen</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7703'>OFBIZ-7703</a>] - Unable to set thru date for List survey screen of project component if more than one survey in available.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7705'>OFBIZ-7705</a>] - Remove Google Checkout component from specialpurpose as it was discontinued</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7707'>OFBIZ-7707</a>] - Improve payment method information UI on party profile screen</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7725'>OFBIZ-7725</a>] - Document the routing number fields in entities</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7727'>OFBIZ-7727</a>] - Remove Google Base component from specialpurpose as it is discontinued</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7751'>OFBIZ-7751</a>] - Ignoring invalid field name [parentTypeId] found for the entity: DeductionType with value</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7755'>OFBIZ-7755</a>] - Geo data for Turkey</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7760'>OFBIZ-7760</a>] - Removed from UtilCache the ability to persist entries in the file system</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7763'>OFBIZ-7763</a>] - Replace bshInterpreter with groovyShell</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7777'>OFBIZ-7777</a>] - QuoteId field displayed with no value</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7780'>OFBIZ-7780</a>] - Improve readme.md file with respect to description of the loadDefault task</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7790'>OFBIZ-7790</a>] - Change the Java Directory Structure to Main and Test</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7793'>OFBIZ-7793</a>] - Add download definition for drivers of commonly used open source rdbms to build gradle</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7798'>OFBIZ-7798</a>] - Translate the svn and git info footers</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7819'>OFBIZ-7819</a>] - Empty link icon shown in Search results of Find screens.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7820'>OFBIZ-7820</a>] - Empty scroll bar in party component.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7821'>OFBIZ-7821</a>] - Remove unused system generated fields from all data files</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7823'>OFBIZ-7823</a>] - Product lookup should be available while adding items in the shopping list</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7833'>OFBIZ-7833</a>] - Redundant options at select filter on find screens</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7892'>OFBIZ-7892</a>] - Move *CertKeystore.groovy* to location according to best practice</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7918'>OFBIZ-7918</a>] - Improve Dutch labels regarding accounting reports</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7919'>OFBIZ-7919</a>] - Removal of old OFBiz images from images folder</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7920'>OFBIZ-7920</a>] - Have TransactionTotalsPdf.pdf show the internal company show it has been generated for.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7923'>OFBIZ-7923</a>] - Improve the Marketing Demo data</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7925'>OFBIZ-7925</a>] - Have ListGlAccountsReport open in a new window</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7944'>OFBIZ-7944</a>] - Improve log visualisation throught webtools</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7951'>OFBIZ-7951</a>] - remove ofbizSecure and ofbizBackgroundSecure targets from the gradle build script</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7953'>OFBIZ-7953</a>] - Updating various labels in CommonUiLabels.xml</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7956'>OFBIZ-7956</a>] - Updating various Dutch labels in WorkEffortUiLabels.xml</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7959'>OFBIZ-7959</a>] - Enable the status selection for WorkEffort duplication</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7960'>OFBIZ-7960</a>] - css property name correction in flatgrey and rainbowstone themes</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7967'>OFBIZ-7967</a>] - call makeTrackingCodeOrders in Marketing through a service</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7968'>OFBIZ-7968</a>] - Shorten the mandatory properties (flags) passed to gradle tasks</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7973'>OFBIZ-7973</a>] - Add standard services for WorkEffortAttribute creation</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7977'>OFBIZ-7977</a>] - View Entity is not marked on new entity listing UI in Webtools</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8013'>OFBIZ-8013</a>] - Move the permission check from implementation level to service defination level</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8016'>OFBIZ-8016</a>] - Improve Dutch labels for projectmgr component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8021'>OFBIZ-8021</a>] - Improve Dutch labels for order component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8044'>OFBIZ-8044</a>] - Consistent form name</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8048'>OFBIZ-8048</a>] - Show "Any", where allow-empty is set true in Find Screens.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8050'>OFBIZ-8050</a>] - No need to show "---" after selecting any option from drop-down in Find Screens.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8055'>OFBIZ-8055</a>] - Add missing CommonCode label</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8115'>OFBIZ-8115</a>] - Fixe a bunch of small leaks (closes missing, reported as warnings in Eclipse)</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8118'>OFBIZ-8118</a>] - Consistent menu names</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8142'>OFBIZ-8142</a>] - A series of cleanups related to OFBiz servlet filters</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8160'>OFBIZ-8160</a>] - Enhance Event Handler to support an transaction-timeout attribute in the <event> element</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8179'>OFBIZ-8179</a>] - Enhance DBCPConnectionFactory to implement a TransactionFactory and remove the geronimo component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8224'>OFBIZ-8224</a>] - Removal of support for the Bean Scripting Framework (BSF)</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8232'>OFBIZ-8232</a>] - Improve Dutch labels for commonext component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8244'>OFBIZ-8244</a>] - Change the inlineHandlePriceWithTaxIncuded method name </li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8251'>OFBIZ-8251</a>] - Create a Gradle task to use Xlint arguments when building</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8262'>OFBIZ-8262</a>] - Invalid UiLabel on Edit Return screen.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8276'>OFBIZ-8276</a>] - Add default table style on ViewGatewayResponse screen </li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8292'>OFBIZ-8292</a>] - Use ignore_missing option of the <#include Freemarker directive when fixed</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8293'>OFBIZ-8293</a>] - Remove redundant backend themes</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8299'>OFBIZ-8299</a>] - gzip json files served by tomcat</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8320'>OFBIZ-8320</a>] - Disentangle ecomclone from ecommerce</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8324'>OFBIZ-8324</a>] - replace hardcoded strings</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8340'>OFBIZ-8340</a>] - Remove commented code elements</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8413'>OFBIZ-8413</a>] - UtilValidate's isEmpty and isNotEmpty methods not used correctly</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8623'>OFBIZ-8623</a>] - demo data cleanup</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8652'>OFBIZ-8652</a>] - Remove semicolon from Groovy files </li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-9119'>OFBIZ-9119</a>] - Remove unused screens from CommonScreens in Catalog</li>
</ul>
<h2>New Feature</h2>
<ul>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-382'>OFBIZ-382</a>] - Implement Party lookup by External Id</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-1607'>OFBIZ-1607</a>] - let the ofbiz work with db2</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-4154'>OFBIZ-4154</a>] - Use ZXing to generate QR 2d barcode</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-4983'>OFBIZ-4983</a>] - New feature to reclaim a user account - Using Security Questions</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5312'>OFBIZ-5312</a>] - Proposal: URL-Generation Changes (mostly for SEO reasons but not only)</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6135'>OFBIZ-6135</a>] - Passport Component for OAuth2</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6232'>OFBIZ-6232</a>] - Adds HTML tabindex into widget form fields</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6494'>OFBIZ-6494</a>] - New implementation of the two-way cryptographic services of OFBiz based on Apache Shiro</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6528'>OFBIZ-6528</a>] - Add a mean to untie geo associations</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6857'>OFBIZ-6857</a>] - Add service crud for AgreementItemAttribute</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6899'>OFBIZ-6899</a>] - Overview of payment methods in party profile misses function to set company check payment</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6931'>OFBIZ-6931</a>] - Add XLS renderer</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6940'>OFBIZ-6940</a>] - New ProductPriceType 'SHIPPING_ALLOWANCE' and a new minimumPrice field in ProductStoreShipmentMeth entity</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7008'>OFBIZ-7008</a>] - Support to add condition for Geo Location in Promo Engine</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7108'>OFBIZ-7108</a>] - Provide an option to specify the Facility Location while producing the inventory/stock once production run gets completed</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7120'>OFBIZ-7120</a>] - Multisite support in specialpurpose/cmssite</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7140'>OFBIZ-7140</a>] - Add Fetch Log Functionality parallel to View Log in webtools</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7172'>OFBIZ-7172</a>] - Introduce Material Trace-ability at Inventory Item level on Production Run Declaration and Actual Material screen</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7173'>OFBIZ-7173</a>] - The Product Added from 'Actual Material' screen could be consumed for producing end product during routing task execution </li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7374'>OFBIZ-7374</a>] - Add capability to Expire or Remove the added content for a party</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7969'>OFBIZ-7969</a>] - Enable adding a content to an agreement</li>
</ul>
<h2>Task</h2>
<ul>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5970'>OFBIZ-5970</a>] - Form RequestRolesInfo is not being accessed from Screens</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6123'>OFBIZ-6123</a>] - Upgrade Freemarker from 2.3.21 to 2.3.22</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6195'>OFBIZ-6195</a>] - Move appserver component to Attic</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6380'>OFBIZ-6380</a>] - Update Log4j 2.2 to 2.3</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6384'>OFBIZ-6384</a>] - util.js is missing licence header</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6451'>OFBIZ-6451</a>] - Create a wiki page with percentage for translated langues</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6461'>OFBIZ-6461</a>] - Resynchronise template macro form xml, text, csv and fo from html</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6610'>OFBIZ-6610</a>] - Upgrade Solr and Lucene librairies to version 5</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6767'>OFBIZ-6767</a>] - Remove the "runtime" specialpurpose component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7019'>OFBIZ-7019</a>] - Update ICU4J from version 52 to 57</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7029'>OFBIZ-7029</a>] - Continue the work on the form widget grid element</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7267'>OFBIZ-7267</a>] - Move minilang scripts from component://componentname/script/org/ofbiz to component://componentname/minilang</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7485'>OFBIZ-7485</a>] - Documentation: Unit Test (Use)Cases for OFBIZ-7173</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7779'>OFBIZ-7779</a>] - Update wiki Eclipse pages regarding Gradle</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8241'>OFBIZ-8241</a>] - Put notsoserial in Attic</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8738'>OFBIZ-8738</a>] - Add accounting permission service validating while setting payment status or void payment</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8824'>OFBIZ-8824</a>] - Add facility generic permission service </li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8826'>OFBIZ-8826</a>] - Add marketing manager generic permission service</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8851'>OFBIZ-8851</a>] - Add the return generic permission service </li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8875'>OFBIZ-8875</a>] - Add entity sync permission service used when Entity Sync CRUD services</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-9121'>OFBIZ-9121</a>] - Update French geos iso codes</li>
</ul>
<h2>Sub-task</h2>
<ul>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-2282'>OFBIZ-2282</a>] - Form Widget: skip-start breaks date-time</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-2522'>OFBIZ-2522</a>] - Send flat rate and carrier calculated shipping options to Google Checkout system.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-2602'>OFBIZ-2602</a>] - Main storefront page, Featured Products (middle column) overwrites right column. Should just crop column, but not overwrite right column.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-2985'>OFBIZ-2985</a>] - Html cleanup of advanced search page.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-2987'>OFBIZ-2987</a>] - Html clean up of quick add page.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-3074'>OFBIZ-3074</a>] - HTML clean up for editShoppingList.ftl.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-3920'>OFBIZ-3920</a>] - HtmlFormRenderer : with attribute skip-start, lookup fields are broken</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-4106'>OFBIZ-4106</a>] - deleteCustomerTaxAuthInfo page called from /ecommerce/control/viewprofile</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-4457'>OFBIZ-4457</a>] - Checkout layout: in screens before payment screen: the fields are below the last div in right column.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5290'>OFBIZ-5290</a>] - show quantityUom in BoM</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5634'>OFBIZ-5634</a>] - Error in pagination in createProductSubscriptionResource (Catalog) </li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5763'>OFBIZ-5763</a>] - createGlAccountTypeDefault generate an error in log</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5801'>OFBIZ-5801</a>] - Upgrade Axis2 to 1.6.3</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5817'>OFBIZ-5817</a>] - Remove Portal Management code from Framework/WebTools.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6139'>OFBIZ-6139</a>] - Lookup fields break when used with a form having skip-start="true"</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6143'>OFBIZ-6143</a>] - Incorporate the readme for the projectmgr component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6162'>OFBIZ-6162</a>] - Improve configuration options for Search/Find screens in project mgr.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6170'>OFBIZ-6170</a>] - You can't rely on Lookup field description-field-name attribute in a form having skip-start="true"</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6190'>OFBIZ-6190</a>] - Have configuration options for sfa</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6191'>OFBIZ-6191</a>] - Have configuration options for ordermgr</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6192'>OFBIZ-6192</a>] - Have configuration options for catalog webapp</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6193'>OFBIZ-6193</a>] - Have configuration options for bi</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6240'>OFBIZ-6240</a>] - Incorporate the readme for the scrum component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6244'>OFBIZ-6244</a>] - Incorporate the readme for the Manufacturing component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6246'>OFBIZ-6246</a>] - Incorporate the readme for the MyPortal component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6250'>OFBIZ-6250</a>] - Incorporate the readme for the AssetMaint application</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6276'>OFBIZ-6276</a>] - Fix deprecation issues in framework/entity</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6277'>OFBIZ-6277</a>] - framework/entity makes use of deprecated class Configuration</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6278'>OFBIZ-6278</a>] - JNDIConfigUtil makes use of deprecated getXmlRootElement</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6279'>OFBIZ-6279</a>] - UtilDateTime has an ImmutableDate inner class that has deprecation warnings</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6280'>OFBIZ-6280</a>] - SecurityFactory implements methods that have been deprecated</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6281'>OFBIZ-6281</a>] - Many classes in framework/widget are still using html-based renderers, instead of macro-based</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6282'>OFBIZ-6282</a>] - EmailServices is making use the html widget rendering system</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6283'>OFBIZ-6283</a>] - A few classes in webtools make use of the html widget rendering system</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6284'>OFBIZ-6284</a>] - ServiceArtifactInfo uses deprecated getAll{Object}Names{Verb}</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6285'>OFBIZ-6285</a>] - OutputServices uses the deprecated fo widget rendering system</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6286'>OFBIZ-6286</a>] - SagePay classes make use of deprecated httpclient features</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6287'>OFBIZ-6287</a>] - BirtEmailServices uses the deprecated html rendering system</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6288'>OFBIZ-6288</a>] - ExamplePrintServices uses the deprecated html rendering system</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6289'>OFBIZ-6289</a>] - Oagis classes are making use of the deprecated html rendering system</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6290'>OFBIZ-6290</a>] - ButtonEventConfig uses getXmlRootElement which has been deprecated</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6294'>OFBIZ-6294</a>] - Have configuration options for workeffort</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6327'>OFBIZ-6327</a>] - Make layered-window available in forms</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6333'>OFBIZ-6333</a>] - Replacing bsh code with groovy Code in SCRUM screens, forms and menus</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6335'>OFBIZ-6335</a>] - Replacing bsh code with groovy code in PROJECTMGR screens, forms and menus</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6337'>OFBIZ-6337</a>] - Replacing bsh code with groovy Code in EBAY screens, forms and menus</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6338'>OFBIZ-6338</a>] - Replacing bsh code with groovy Code in EBAYStore screens, forms and menus</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6339'>OFBIZ-6339</a>] - Replacing bsh code with groovy Code in HUMANRES screens, forms and menus</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6340'>OFBIZ-6340</a>] - Replacing bsh code with groovy Code in ORDER screens, forms and menus</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6341'>OFBIZ-6341</a>] - Replacing bsh code with groovy Code in Product screens, forms and menus</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6342'>OFBIZ-6342</a>] - Replacing bsh code with groovy Code in Party screens, forms and menus</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6343'>OFBIZ-6343</a>] - Replacing bsh code with groovy Code in WorkEffort screens, forms and menus</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6344'>OFBIZ-6344</a>] - Replacing bsh code with groovy Code in Content screens, forms and menus</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6345'>OFBIZ-6345</a>] - Replacing bsh code with groovy Code in Webtools screens, forms and menus</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6359'>OFBIZ-6359</a>] - Improves dialog boxes generated by layered-modal link parameter</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6362'>OFBIZ-6362</a>] - Move js & css references from CommonDecorator(s) to themes</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6404'>OFBIZ-6404</a>] - Allow form/grid widget hyperlinks to be grouped into a single column</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6501'>OFBIZ-6501</a>] - Add support for screen embedding inside grids</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6502'>OFBIZ-6502</a>] - Add support for form/grid embedding within grids</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6577'>OFBIZ-6577</a>] - Incorporate the readme for the Lucene component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6611'>OFBIZ-6611</a>] - Incorporate the readme for the SOLR component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6651'>OFBIZ-6651</a>] - Remove deprecated methods from GenericValue and EntityUtil classes</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6667'>OFBIZ-6667</a>] - Remove limitation regarding menu-name in ofbiz-component.xsd</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6679'>OFBIZ-6679</a>] - PartyRole Lifespan fields - Have QuoteRole entity work with the change</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6690'>OFBIZ-6690</a>] - replace widget-style="required" with required-field="true"</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6724'>OFBIZ-6724</a>] - remove superfluous comment from entity-eca.xsd</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6726'>OFBIZ-6726</a>] - Update commons collections to 3.2.2 because of known possible exploit [CVE-2016-2170] </li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6751'>OFBIZ-6751</a>] - POI security fix</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6752'>OFBIZ-6752</a>] - Updates Tomcat to 7.0.65</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6754'>OFBIZ-6754</a>] - Update Spring Framework</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6756'>OFBIZ-6756</a>] - Remove useless and vulnerable hadoop-hdfs-2.2.0.jar</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6757'>OFBIZ-6757</a>] - Exclusion of Manufacturing components leads to load errors</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6758'>OFBIZ-6758</a>] - Exclusion of Humanres component leads to load errors</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6769'>OFBIZ-6769</a>] - The renderContentAsText method should configure text sanitizer by "sanitizer.permissive.policy" in owasp.properties </li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6800'>OFBIZ-6800</a>] - Another .fo.ftl file use "align" attribute in "<fo:block>" tag.</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6811'>OFBIZ-6811</a>] - relocate .ftl files in the specialpurpose/ecommerce component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6812'>OFBIZ-6812</a>] - relocate .ftl files in the specialpurpose/projectmgr component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6813'>OFBIZ-6813</a>] - relocate .ftl files in the accounting component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6814'>OFBIZ-6814</a>] - relocate .ftl files in the commonext component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6815'>OFBIZ-6815</a>] - relocate .ftl files in the content component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6816'>OFBIZ-6816</a>] - relocate .ftl files in the humanres component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6817'>OFBIZ-6817</a>] - relocate .ftl files in the manufacturing component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6818'>OFBIZ-6818</a>] - relocate .ftl files in the marketing component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6819'>OFBIZ-6819</a>] - relocate .ftl files in the order component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6820'>OFBIZ-6820</a>] - relocate .ftl files in the party component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6821'>OFBIZ-6821</a>] - relocate .ftl files in the product component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6822'>OFBIZ-6822</a>] - relocate .ftl files in the workeffort component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6823'>OFBIZ-6823</a>] - relocate .ftl files in the framework/common component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6824'>OFBIZ-6824</a>] - relocate .ftl files in the framework/webtools component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6825'>OFBIZ-6825</a>] - relocate .ftl files in the specialpurpose/assetmaint component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6826'>OFBIZ-6826</a>] - relocate .ftl files in the specialpurpose/bi component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6827'>OFBIZ-6827</a>] - relocate .ftl files in the specialpurpose/birt component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6829'>OFBIZ-6829</a>] - relocate .ftl files in the specialpurpose/ebay</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6830'>OFBIZ-6830</a>] - relocate .ftl files in the specialpurpose/ebaystore component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6831'>OFBIZ-6831</a>] - relocate .ftl files in the specialpurpose/exampleext component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6833'>OFBIZ-6833</a>] - relocate .ftl files in the specialpurpose/googlebase component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6834'>OFBIZ-6834</a>] - relocate .ftl files in the specialpurpose/googlecheckout component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6835'>OFBIZ-6835</a>] - relocate .ftl files in the specialpurpose/hhfacility component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6836'>OFBIZ-6836</a>] - relocate .ftl files in the specialpurpose/scrum</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6837'>OFBIZ-6837</a>] - relocate .ftl files in the specialpurpose/webpos component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6838'>OFBIZ-6838</a>] - relocate .ftl files in the specialpurpose/passport component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6839'>OFBIZ-6839</a>] - relocate .ftl files in the specialpurpose/lucene component</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6840'>OFBIZ-6840</a>] - relocate .ftl files in the specialpurpose/oagis component</li>