The due date is calculating an item delivery time incorrectly in the order status pageIssue <!-- div.margin{ padding: 10px 40px 40px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.internaltable { white-space:nowrap; text-align:left; border-width: 1px; border-collapse: collapse; font-size:14px; width: 85%; } table.internaltable th { border-width: 1px; padding: 5px; border-style: solid; border-color: rgb(245, 245, 245); background-color: rgb(245, 245, 245); } table.internaltable td { border-width: 1px; padding: 5px; border-style: solid; border-color: #E0E0E0; color: #000000; } .title { color: #D1232B; font-weight:normal; font-size:28px; } h1{ color: #D1232B; font-weight:normal; font-size:21px; margin-bottom:-5px } h2{ color: #646464; font-weight:bold; font-size:18px; } h3{ color: #000000; font-weight:BOLD; font-size:16px; text-decoration:underline; } h4{ color: #646464; font-weight:BOLD; font-size:15px; text-decoration:; } h5{ color: #000000; font-weight:BOLD; font-size:13px; text-decoration:; } h6{ color: #000000; font-weight:BOLD; font-size:14px; text-decoration:; } ul{ list-style: disc outside none; margin-left: 0; } li { padding-left: 1em; } --> Symptoms The due date is calculating an item delivery time incorrectly in the order status page Release Jakarta Patch 8b Cause The expected days are converted into hours and then those hours are divided into 8 hours per day schedule. So we will be seeing a long due date Resolution The delivery time in the order status page is being populated from a custom business rule. (customization) When I looked at the business rule, it looks like we are taking in the expected time from the custom table and since we have four records for the catalog item "JIRA", in total the expected time turns out to be 8 days. So now when we convert the 8 days into hours (8 *24), we get 192 hrs. So we are passing this 192 hrs expected time to the 8 - 5-weekday schedule (i.e) 8 hours per day. So when we convert the 192 hours to 8 hours per day schedule, the due date now roughly is 24 Weekdays. Therefore when we spread 24 weekdays from today (adding the weekends) the delivery date exceeds to just over a month. Thus we see the delivery date more than a month on the order status page. We can get over this issue, by mentioning the hours instead of days. For example, if we want to have the expected time as 1 day, we can specify in the "expected time" as 8 hours. Similarly, for 3 days, we can specify the "Expected time" as 3*8 = 24 hours, which would be 1 day (it does not matter if the hours get converted to days by this way). By this way, we can avoid the long delivery time.