diff --git a/bt5/erp5_accounting/SkinTemplateItem/portal_skins/erp5_accounting/Account_getNotGroupedAccountingTransactionList.xml b/bt5/erp5_accounting/SkinTemplateItem/portal_skins/erp5_accounting/Account_getNotGroupedAccountingTransactionList.xml
index 6e0a377e56a6e22f14f7bc8d875085e0c33f67dc..160916665dc28e9ce21355f746f921a6ad2a6f97 100644
--- a/bt5/erp5_accounting/SkinTemplateItem/portal_skins/erp5_accounting/Account_getNotGroupedAccountingTransactionList.xml
+++ b/bt5/erp5_accounting/SkinTemplateItem/portal_skins/erp5_accounting/Account_getNotGroupedAccountingTransactionList.xml
@@ -139,7 +139,7 @@ for brain in portal.Base_zGetNotGroupedMovementList(\n
                  debit=debit,\n
                  credit=credit,\n
                  Movement_getExplanationTitle=\n
-                            mvt.getTitle() or transaction.getTitle()))\n
+                   mvt.hasTitle() and mvt.getTitle() or transaction.getTitle()))\n
 \n
 context.REQUEST.set(\n
   \'Account_statNotGroupedAccountingTransactionList.total_debit\', total_debit)\n
diff --git a/bt5/erp5_accounting/SkinTemplateItem/portal_skins/erp5_accounting/AccountingTransactionModule_getJournalSectionLineList.xml b/bt5/erp5_accounting/SkinTemplateItem/portal_skins/erp5_accounting/AccountingTransactionModule_getJournalSectionLineList.xml
index 7454f40f4a4af1a335835e28d5802c52656eb00e..82c0a599b98fef6b661bc9b0286573d3f2e6aa87 100644
--- a/bt5/erp5_accounting/SkinTemplateItem/portal_skins/erp5_accounting/AccountingTransactionModule_getJournalSectionLineList.xml
+++ b/bt5/erp5_accounting/SkinTemplateItem/portal_skins/erp5_accounting/AccountingTransactionModule_getJournalSectionLineList.xml
@@ -131,7 +131,7 @@ for brain in portal.portal_simulation.getMovementHistoryList(\n
     date = brain.date\n
   else:\n
     specific_reference = \'\'\n
-    title = mvt.getTitle() or \'\'\n
+    title = mvt.hasTitle() and mvt.getTitle() or \'\'\n
     date = None\n
 \n
   line_list.append( Object(uid=\'new_\',\n
@@ -166,6 +166,12 @@ return line_list\n
               <none/>
             </value>
         </item>
+        <item>
+            <key> <string>_owner</string> </key>
+            <value>
+              <none/>
+            </value>
+        </item>
         <item>
             <key> <string>_params</string> </key>
             <value> <string>selection, at_date, from_date, portal_type, simulation_state, section_uid, payment_mode=None, payment=None, **kw</string> </value>
diff --git a/bt5/erp5_accounting/bt/revision b/bt5/erp5_accounting/bt/revision
index 3114067d5df4da46d3b2492476013a8bbc42108e..38017008e6f8d020fcc2f5c3e05b959f7369008f 100644
--- a/bt5/erp5_accounting/bt/revision
+++ b/bt5/erp5_accounting/bt/revision
@@ -1 +1 @@
-664
\ No newline at end of file
+668
\ No newline at end of file