1234567891011121314151617181920212223242526272829 |
- <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
- class Model_zzququeu9_logs extends Lin_Model
- {
- function __construct(){
- parent::__construct();
- $this->load->database();
- $this->table = 'zzququeu9_logs';
- $this->load_table('zzququeu9_logs');
- }
-
- public function getOneType(){
- return [
- 1=>"调出单",
- 2=>"销售单",
- 3=>"采购单",
- 4=>'标准出货',
- 5=>'标准收货'
- ];
- }
- public function getTwoType(){
- return [
- 1=>'创建',
- 2=>'提交',
- 3=>'审核'
- ];
- }
- }
|