This is an automated email from the ASF dual-hosted git repository.
jacopoc pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git
The following commit(s) were added to refs/heads/trunk by this push:
new 105079f252 Fixed: Resolved Javadoc build error by correcting missing
@param in dayStartCapacityAvailable method (OFBIZ-13263) (#901)
105079f252 is described below
commit 105079f252b77504a32618a17a4e9d8d5e1572db
Author: Yashwant Dhakad <[email protected]>
AuthorDate: Sat Jul 19 10:39:16 2025 +0530
Fixed: Resolved Javadoc build error by correcting missing @param in
dayStartCapacityAvailable method (OFBIZ-13263) (#901)
Resolved Javadoc build error by correcting missing @param in
dayStartCapacityAvailable method (OFBIZ-13263) and improved
the documentation of the method and fields.
Thanks: Yashwant Dhakad, Jacques Le Roux
---
.../ofbiz/manufacturing/techdata/TechDataServices.java | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
diff --git
a/applications/manufacturing/src/main/java/org/apache/ofbiz/manufacturing/techdata/TechDataServices.java
b/applications/manufacturing/src/main/java/org/apache/ofbiz/manufacturing/techdata/TechDataServices.java
index 7881111d4e..4b85ad190b 100644
---
a/applications/manufacturing/src/main/java/org/apache/ofbiz/manufacturing/techdata/TechDataServices.java
+++
b/applications/manufacturing/src/main/java/org/apache/ofbiz/manufacturing/techdata/TechDataServices.java
@@ -214,10 +214,14 @@ public class TechDataServices {
return techDataCalendar;
}
- /** Used to find the first day in the TechDataCalendarWeek where capacity
!= 0, beginning at dayStart, dayStart included.
- * @param techDataCalendarWeek The TechDataCalendarWeek cover
- * @param dayStart
- * @return a map with the capacity (Double) available and moveDay (int):
the number of day it's necessary to move to have capacity available
+ /**
+ * Used to find the first day in the TechDataCalendarWeek where capacity
!= 0, beginning at the given dateFrom
+ * (included).
+ * @param techDataCalendar The TechDataCalendar entity that contains
exceptions
+ * @param techDataCalendarWeek The TechDataCalendarWeek coverage data
+ * @param dateFrom The starting date to begin checking
availability
+ * @return a map with the capacity (Double) available, startTime (Time),
and moveDay (int): the number of days to
+ * move forward to find availability
*/
public static Map<String, Object> dayStartCapacityAvailable(
GenericValue techDataCalendar,