]> git.mxchange.org Git - jfinancials-war.git/commitdiff
Don't cherry-pick:
authorRoland Häder <roland@mxchange.org>
Sat, 18 Apr 2020 15:10:49 +0000 (17:10 +0200)
committerRoland Häder <roland@mxchange.org>
Sat, 18 Apr 2020 15:10:49 +0000 (17:10 +0200)
- updated JAR has renamed copyAll() to copyFooData()

Signed-off-by: Roland Häder <roland@mxchange.org>
src/java/org/mxchange/jfinancials/beans/financial/model/receipt/action/FinancialAdminReceiptActionWebViewBean.java
src/java/org/mxchange/jfinancials/beans/financial/model/receipt/list/FinancialsReceiptListWebViewBean.java

index 4a34c0a00876c1d6479e62db4fc04a640b18504a..422bae2e5ff92781006d1a00efb071e9fc9c617d 100644 (file)
@@ -501,7 +501,7 @@ public class FinancialAdminReceiptActionWebViewBean extends BaseFinancialsBean i
                }
 
                // Copy all data
-               Receipts.copyAll(receipt, this.getCurrentReceipt());
+               Receipts.copyReceiptData(receipt, this.getCurrentReceipt());
 
                // Create updated receipt instance
                final BillableReceipt updatedReceipt;
index 03b360a2729ca6a7d5805784a1f6d07d3bd36096..8ee552857a61aefdf9b3233ce9c229d74520602d 100644 (file)
@@ -151,7 +151,7 @@ public class FinancialsReceiptListWebViewBean extends BaseFinancialsBean impleme
                        // Is the same id?
                        if (Objects.equals(receipt.getReceiptId(), event.getReceipt().getReceiptId())) {
                                // Yes, same primary key found, then copy all elements
-                               Receipts.copyAll(event.getReceipt(), receipt);
+                               Receipts.copyReceiptData(event.getReceipt(), receipt);
 
                                // Mark as found, break loop
                                isFound = true;