所以首先这里是我最终想要实现的小提琴: 小提琴
为此,我需要从三个不同的表中获取值:ok_part、reject 和 stoppage。
至于停止,表结构如下所示:
我图表的 x 轴是一个小时的间隔,第一个 x 轴始终是 8 小时前的时间,最后一个是从现在到下一个完整小时的时间。
我已经设法将 ok_part 和拒绝数组用于 highchart。
class GraphCalc() {
.....
/* calculate time */
function CalculateTime($diff, $form) {
$new = new DateTime();
$new->modify($diff);
return $form != 0 ? $new->format('Y-m-d H:00') : $new->format('Y-m-d');
}
function GraphInterval() {
$time = strtotime($this->CalculateTime('-8 hours', 1)); // calling function to get time 8 hours ago
$now = strtotime(date('Y-m-d H:00'));
/* looping through time (8 hours ago to now) */
for ($i = $time, $j = $i + 3600; $i <= $now; $i += 3600, $j += 3600) {
/* puts together array for x Axis */
$this->xAxis_array[] = "'".date('H:00', $i).' - '.date('H:00', $j)."'";
/* queries to sum ok parts and rejects according to time */
$ok_part_sum[] = MouldingPart::find(
array(
'select' => 'SUM(amount) as ok_qty',
'conditions' => array(
'moulding_product_id IN (?) AND date >= ? AND date <= ?',
$this->product_id,
date('Y-m-d H:00', $i),
date('Y-m-d H:00', $j)
)
)
)->ok_qty;
$reject_part_sum[] = MouldingReject::find(
array(
'select' => 'SUM(amount) as reject_qty',
'conditions' => array(
'moulding_product_id IN (?) AND date >= ? AND date <= ?',
$this->product_id,
date('Y-m-d H:00', $i),
date('Y-m-d H:00', $j)
)
)
)->reject_qty;
}
/* looping through ok_part and reject arrays to add 0 where there's no value */
for ($i = 0; $i < count($ok_part_sum); $i++) {
$this->chart_ok_array[] = $ok_part_sum[$i] == '' ? 0 : $ok_part_sum[$i];
$this->chart_reject_array[] = $reject_part_sum[$i] == '' ? 0 : $reject_part_sum[$i];
}
}
function xAxis() {
/* return x Axis values */
return implode(', ',$this->xAxis_array);
}
function yAxisValues() {
/* put together arrays for highchart */
$chart_data[] = "{data: [".implode(", ",$this->chart_ok_array)."], name: 'OK', color: '#89A54E'}";
$chart_data[] = "{data: [".implode(", ",$this->chart_reject_array)."], name: 'PRAAGID', color: '#AA4643'}";
return $chart_data;
}
}
我想帮助获得停工数据的解决方案。Stoppage 有两个日期需要考虑:start_date 和 end_date。根据 x 轴和停止日期,我需要计算持续时间。有时我可能会使用持续时间字段,但我认为避免它并即时计算它更容易。
这是我想通过停止实现的示例:
假设 x 轴是 05:00 - 06:00,那么停工期应该是 59 分钟,因为停工表中有一个条目,其 start_date 为 2013-09-05 05:01:00 和 end_date 2013-09-05 09:00 :00,但我不能使用停工表值的结束日期,因为我需要使用 06:00 的 x 轴值。
我希望你对我想要达到的目标有所了解,这真的很难解释。
停工表中的数据也可能有所不同。一小时内可能会有多次停工。假设 x 轴是 08:00 - 09:00 并且在表中有三个停止:
start_date: 07:54 end_date: 08:15
start_date: 08:19 end_date: 08:38
start_date: 08:45 end_date: 09:47
所以从 08:00 到 09:00 的持续时间应该是 49 分钟。
请帮我解决这个问题,我已经被这个问题困扰了好几天了。我试图尽可能地解释它,但我敢打赌它仍然令人困惑。
最后,我想获得一个用于 highchart 的数组,就像我使用 ok_part 和拒绝一样。