初始版本
This commit is contained in:
37
application/controllers/storage.php
Executable file
37
application/controllers/storage.php
Executable file
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
class Storage extends CI_Controller {
|
||||
|
||||
public function __construct(){
|
||||
parent::__construct();
|
||||
$this->common_model->checkpurview();
|
||||
}
|
||||
|
||||
|
||||
public function other_search() {
|
||||
$this->load->view('storage/other-search');
|
||||
}
|
||||
|
||||
|
||||
public function inventory() {
|
||||
$this->common_model->checkpurview(11);
|
||||
$this->load->view('storage/inventory');
|
||||
}
|
||||
|
||||
|
||||
public function transfers_search () {
|
||||
$this->load->view('storage/transfers-search');
|
||||
}
|
||||
|
||||
|
||||
public function import () {
|
||||
$this->load->view('storage/import');
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
/* End of file welcome.php */
|
||||
/* Location: ./application/controllers/welcome.php */
|
||||
Reference in New Issue
Block a user