本文整理汇总了PHP中CSQLDataSource::tempTableDates方法的典型用法代码示例。如果您正苦于以下问题:PHP CSQLDataSource::tempTableDates方法的具体用法?PHP CSQLDataSource::tempTableDates怎么用?PHP CSQLDataSource::tempTableDates使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CSQLDataSource
的用法示例。
在下文中一共展示了CSQLDataSource::tempTableDates方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
$smarty->assign("services", $services);
if (!$service_id) {
$smarty->display("inc_form_stats.tpl");
CAppUI::stepMessage(UI_MSG_ALERT, "warning-hospi-stats-choose_service");
return;
}
$ds = CSQLDataSource::get("std");
$dates = array();
$date_temp = $date_min;
$series = array();
while ($date_temp <= $date_max) {
$dates[] = array(count($dates), CMbDT::dateToLocale($date_temp));
$date_temp = CMbDT::date("+1 day", $date_temp);
}
// Table temporaraire de dates pour les jointures
$tab_name = CSQLDataSource::tempTableDates($date_min, $date_max);
// Nombre de lits totaux sur le service
$lit = new CLit();
$where = array();
$ljoin = array();
$ljoin["chambre"] = "chambre.chambre_id = lit.chambre_id";
$where["service_id"] = " = '{$service_id}'";
$where["lit.annule"] = " = '0'";
$nb_lits = $lit->countList($where, null, $ljoin);
if (!$nb_lits) {
$smarty->display("inc_form_stats.tpl");
CAppUI::stepMessage(UI_MSG_WARNING, "warning-hospi-stats-no_beds");
return;
}
// Lits ouverts (non bloqués - non compris les blocages des urgence)
$serie = array("data" => array(), "label" => utf8_encode("Ouvert / Total"), "markers" => array("show" => true));