You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
logger.info("Received request to calculate price preview");
30
38
returnbilling.pricePreview(orderJson);
31
39
}
32
40
41
+
/**
42
+
* The POST /billing/bill REST API is invoked to calculate the bill of a Product (TMF637-v4) without taxes.
43
+
*
44
+
* @param BillingRequestDTO The DTO contains information about the Product (TMF637-v4), the TimePeriod (TMF678-v4) and the list of ProductPrice (TMF637-v4) for which the bill must be calculated.
45
+
* @return The list of AppliedCustomerBillingRate as a Json without taxes
46
+
* @throws Throwable If an error occurs during the calculation of the bill for the Product
@@ -41,6 +56,13 @@ public ResponseEntity<String> calculateBill(@RequestBody BillingRequestDTO billR
41
56
returnbilling.bill(json);
42
57
}
43
58
59
+
/**
60
+
* The POST /billing/bill REST API is invoked to calculate the bill of a Product (TMF637-v4) without taxes.
61
+
*
62
+
* @param BillingRequestDTO The DTO contains information about the Product (TMF637-v4), the TimePeriod (TMF678-v4) and the list of ProductPrice (TMF637-v4) for which the bill must be calculated.
63
+
* @return The list of AppliedCustomerBillingRate as a Json without taxes
64
+
* @throws Throwable If an error occurs during the calculation of the bill for the Product
0 commit comments