]> git.mxchange.org Git - jfinancials-core.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Mon, 18 May 2020 18:52:57 +0000 (20:52 +0200)
committerRoland Häder <roland@mxchange.org>
Mon, 18 May 2020 18:52:57 +0000 (20:52 +0200)
- changed precision to 4 to have also larger kilograms values

Signed-off-by: Roland Häder <roland@mxchange.org>
src/org/mxchange/jfinancials/model/receipt_item/FinancialReceiptItem.java

index b42b36bba30047027324e03c85f0aa0820de5f84..1ae77ec9ee781c35ef740cb900c11f668196db26 100644 (file)
@@ -156,7 +156,7 @@ public class FinancialReceiptItem implements BillableReceiptItem {
         * Product quantity
         */
        @Basic (optional = false)
-       @Column (name = "item_product_quantity", nullable = false, precision = 3)
+       @Column (name = "item_product_quantity", nullable = false, precision = 4)
        private BigDecimal itemProductQuantity;
 
        /**