Model_zzququeu9_logs.php 657 B

123456789101112131415161718192021222324252627282930313233
  1. <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
  2. class Model_zzququeu9_logs extends Lin_Model
  3. {
  4. function __construct(){
  5. parent::__construct();
  6. $this->load->database();
  7. $this->table = 'zzququeu9_logs';
  8. $this->load_table('zzququeu9_logs');
  9. }
  10. public function getOneType(){
  11. return [
  12. 1=>"调出单",
  13. 2=>"销售单",
  14. 3=>"采购单",
  15. 4=>'标准出货',
  16. 5=>'标准收货',
  17. 6=>'调入单',
  18. 7=>'二次销售单',
  19. 8=>"调出查询",
  20. 20=>"生产单入库",
  21. ];
  22. }
  23. public function getTwoType(){
  24. return [
  25. 1=>'创建',
  26. 2=>'提交',
  27. 3=>'审核'
  28. ];
  29. }
  30. }