本文整理汇总了PHP中Facilities::get_Taita方法的典型用法代码示例。如果您正苦于以下问题:PHP Facilities::get_Taita方法的具体用法?PHP Facilities::get_Taita怎么用?PHP Facilities::get_Taita使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Facilities
的用法示例。
在下文中一共展示了Facilities::get_Taita方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: weekly_stockouts_report
public function weekly_stockouts_report()
{
//Set the current year
$year = date("Y");
//get the facilities in the district
//$counties = Facilities::get_Taita();
//$counties = Facilities::get_counties_all_using_HCMP();
$counties = Facilities::get_Taita();
foreach ($counties as $counties) {
//holds the dat for the entire county
//once it is done executing for one county it is reset to zero
$county_total = array();
//pick the county nae and county ID accordingly
$county_id = $counties['county'];
$county_name = $counties['county_name'];
//Get all the ddistricts in that particular county
$districts = Facilities::get_all_using_HCMP($county_id);
//echo "<pre>";print_r($districts);exit;
//holds the data for all the districts in a particular county
$district_total = array();
foreach ($districts as $districts) {
$district_id = $districts['district'];
$district_name = $districts['name'];
//get all facilities in that district
$facilities = Facilities::getFacilities_for_email($district_id);
//holds all the data for all facilities in a particular district
$facility_total = array();
foreach ($facilities as $facilities_) {
//holds the total value of expiries for that particular facility in that district
$facility_potential_expiries_total = 0;
//$facility_potential_expiries = array();
$facility_code = $facilities_->facility_code;
$facility_name = Facilities::get_facility_name2($facility_code);
$facility_name = $facility_name['facility_name'];
$facility_potential_expiries = Facility_stocks::get_stock_outs_for_email($facility_code);
//get potential expiries in that particular facility
//push the result into another array that will be used by the distrct
array_key_exists($facility_name, $facility_total) ? $facility_total[$facility_name] = array_merge($facility_total[$facility_name], array($facility_potential_expiries)) : ($facility_total = array_merge($facility_total, array($facility_name => array($facility_potential_expiries))));
//Start building the excel file
$excel_data = array();
$excel_data = array('doc_creator' => $facility_name, 'doc_title' => 'facility stokouts weekly report ', 'file_name' => 'facility weekly report');
$row_data = array();
$column_data = array("Commodity Name", "Unit Size", "Unit Cost(KSH)", "Quantity Available (Units)", "Quantity Available (Packs)", "Supplier", "Manufacturer", "Facility Name", "Subcounty", "County");
$excel_data['column_data'] = $column_data;
foreach ($facility_potential_expiries as $facility_potential_expiries) {
array_push($row_data, array($facility_potential_expiries["commodity_name"], $facility_potential_expiries["unit_size"], $facility_potential_expiries["unit_cost"], $facility_potential_expiries["current_balance"], $facility_potential_expiries["current_balance_packs"], $facility_potential_expiries["source_name"], $facility_potential_expiries["manufacture"], $facility_potential_expiries["facility_name"], $facility_potential_expiries["district"], $facility_potential_expiries["county"]));
//$facility_potential_expiries_total = $facility_potential_expiries_total + $facility_potential_expiries[""]
}
if (empty($row_data)) {
//do nothing
} else {
$excel_data['row_data'] = $row_data;
$excel_data['report_type'] = "download_file";
$excel_data['file_name'] = $facility_name . "_Stock_Outs_Report";
$excel_data['excel_title'] = "Stock Outs Report for " . $facility_name . " as at " . date("jS F Y");
$message = "<p>Dear " . $facility_name . ",</p>\n\t \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Find attached an excel sheet with the " . $facility_name . " breakdown of commodities with Low Stock Levels.\n\t \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tYou may log onto health-cmp.or.ke for follow up.</p>\n\n\t \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>----</p>\n\n\t \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>HCMP</p>\n\n\t \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>This email was automatically generated. Please do not respond to this email address or it will be ignored.</p>";
//Create the excel here
$report_type = "stockouts";
$this->create_excel($excel_data, $report_type);
//For Mac
//$handler = "/Applications/XAMPP/xamppfiles/htdocs/hcmp/print_docs/excel/excel_files/" . $excel_data['file_name'] . ".xls";
//For Windows
$handler = "./print_docs/excel/excel_files/" . $excel_data['file_name'] . ".xls";
$subject = "Stock Outs Report: " . $facility_name;
$email_address = $this->get_facility_email($facility_code);
$this->hcmp_functions->send_email($email_address, $message, $subject, $handler);
}
//End foreach for facility
}
array_key_exists($district_name, $district_total) ? $district_total[$district_name] = array_merge($district_total[$district_name], array($facility_total)) : ($district_total = array_merge($district_total, array($district_name => array($facility_total))));
//Building the excel sheet to be sent to the district admin
$excel_data = array();
$excel_data = array('doc_creator' => $district_name, 'doc_title' => 'district stock outs weekly report ', 'file_name' => 'district weekly report');
$row_data = array();
$column_data = array("Commodity Name", "Unit Size", "Unit Cost(KSH)", "Quantity Available (Units)", "Quantity Available (Packs)", "Supplier", "Manufacturer", "Facility Name", "Subcounty", "County");
$excel_data['column_data'] = $column_data;
foreach ($facility_total as $facility_total_1) {
foreach ($facility_total_1 as $facility_total_2) {
foreach ($facility_total_2 as $facility_total1) {
array_push($row_data, array($facility_total1["commodity_name"], $facility_total1["unit_size"], $facility_total1["unit_cost"], $facility_total1["current_balance"], $facility_total1["current_balance_packs"], $facility_total1["source_name"], $facility_total1["manufacture"], $facility_total1["facility_name"], $facility_total1["district"], $facility_total1["county"]));
}
}
}
if (empty($row_data)) {
//do nothing
} else {
$excel_data['row_data'] = $row_data;
$excel_data['report_type'] = "download_file";
$excel_data['file_name'] = $district_name . "_Weekly_Sub_County_Stock_Outs_Report";
$excel_data['excel_title'] = "Stock Outs Report for " . $district_name . " Sub County as at " . date("jS F Y");
$report_type = "stockouts";
$this->create_excel($excel_data, $report_type);
//For Mac
//$handler = "/Applications/XAMPP/xamppfiles/htdocs/hcmp/print_docs/excel/excel_files/" . $excel_data['file_name'] . ".xls";
//For Windows
$handler = "./print_docs/excel/excel_files/" . $excel_data['file_name'] . ".xls";
$subject = "Stock Outs: " . $district_name . " Sub County";
$message = "Dear " . $district_name . " Sub County,\n\t \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Find attached an excel sheet with the " . $district_name . " Sub County breakdown of Stock Outs in the Sub County.\n\t \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tYou may log onto health-cmp.or.ke for follow up.</p>\n\n\t \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>----</p>\n\n\t \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>HCMP</p>\n\n\t \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>This email was automatically generated. Please do not respond to this email address or it will be ignored.</p>";
$email_address = $this->get_ddp_email($district_id);
$this->hcmp_functions->send_email($email_address, $message, $subject, $handler);
//.........这里部分代码省略.........