Added pages

This commit is contained in:
CHIEFSOFT\ameye
2024-11-19 21:48:50 -05:00
parent a1a87f4662
commit a23a375511
6 changed files with 582 additions and 40 deletions
+33
View File
@@ -80,6 +80,39 @@ class Provider extends SecureBaseController
return $this->providerSecurePage('product', $data);
}
public function ProviderCalendar(){
$this->product_model = new \App\Models\Product_model();
$data = array();
$data['actions_history'] = [
[
"icon"=> "primary",
"text"=> "Meeting with Amanda and team",
"date"=> "10:30 Jan",
],
];
$data['product_array'] = $this->product_model->getProducts(''); // $product_array;
return $this->renderProviderSecurePage('calendar', $data);
}
public function ProviderReports(){
$this->product_model = new \App\Models\Product_model();
$data = array();
$data['actions_history'] = [
[
"icon"=> "primary",
"text"=> "Meeting with Amanda and team",
"date"=> "10:30 Jan",
],
];
$data['product_array'] = $this->product_model->getProducts(''); // $product_array;
return $this->renderProviderSecurePage('reports', $data);
}
public function StartProcess($productId){
log_message('critical', "***** ***** Provider::StartProcess USER_SESSION = ".$productId );