ERP/application/controllers/storage.php
jerryhanjj ebc2d5a089 ERP
2017-04-01 14:14:10 +08:00

36 lines
No EOL
773 B
PHP

<?php if (!defined('BASEPATH')) 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 */