Added predictive completion time based on cycle times for job scheduling. BOD-401

This commit is contained in:
Patrick Fic
2020-09-17 14:28:48 -07:00
parent 88559e95a3
commit cb337b557c
19 changed files with 572 additions and 101 deletions

View File

@@ -15,13 +15,14 @@ const DateTimePicker = ({ value, onChange, onBlur }, ref) => {
return (
<div>
<FormDatePicker value={value} onChange={onChange} />
<FormDatePicker value={value} onBlur={onBlur} onChange={onChange} />
<TimePicker
value={value ? moment(value) : null}
onChange={onChange}
showSecond={false}
minuteStep={15}
onBlur={onBlur}
format="hh:mm a"
/>
</div>