¿Cómo puedo convertir el valor en mi script de decimal a horas y / o días?
Para la conversión de decimal a la hora creo que es :
horas + (minutos /60)
pero mi variable es en este formato :
23.498611111111
De alguna manera tengo que conseguir 23 establece como un valor (horas) y la misma para las dos decimales después del "." pero no estoy seguro de cómo proceder
aquí está mi completa de la secuencia de comandos:
set myVariableDateHere to "25/03/2019 00:00:00"
set myWantedDate to convertDate(myVariableDateHere)
to convertDate(textDate)
set resultDate to the current date
set the day of resultDate to (text 1 thru 2 of textDate)
set the month of resultDate to (text 4 thru 5 of textDate)
set the year of resultDate to (text 7 thru 10 of textDate)
set the time of resultDate to 0
if (length of textDate) > 10 then
set the hours of resultDate to (text 12 thru 13 of textDate)
set the minutes of resultDate to (text 15 thru 16 of textDate)
if (length of textDate) > 16 then
set the seconds of resultDate to (text 18 thru 19 of textDate)
end if
end if
return resultDate
end convertDate
set myTimeDifResult to ((current date) - myWantedDate as string)
set daysV to myTimeDifResult / 86400
set hoursV to myTimeDifResult / 60 / 60
conjunto de hoursV a roundThis(hoursV, 2) --> -75.54 en roundThis(n, numDecimals) set x 10 ^ numDecimals dígale a n * x si ((mod 2) ^ 2 > 0.25) entonces devolver (div 0.5 - div 1) / x volver div 1 / x final dicen final roundThis
set final to hoursV
if hoursV > 24 then
set final to (daysV as integer) - 1
end if
return final
actualización :
Me di cuenta de cómo dos variable :
set the_decimalMin to hoursV mod 1
set the_decimaHours to hoursV div 1
pero ahora no puedo hacer que las matemáticas :
set hoursV to the_decimaHours + (the_decimalMin / 60)
error :
error "no se Puede hacer the_decimalMin en el tipo de referencia." número de -1700 de MyMinutes para hacer referencia a