Import.php 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. <?php
  2. namespace Option\Lib;
  3. use Dever;
  4. include('/share/lib/php/dever_package/excel/src/PHPExcel.php');
  5. class Import
  6. {
  7. # 导入账户
  8. public function get_api()
  9. {
  10. Dever::config('base')->hook = true;
  11. $file = Dever::data() . 'q.xlsx';
  12. $data = Dever::excelImport($file, 1, 5, 'excel');
  13. $table = array();
  14. $table['head'] = array('账户类型', '待交付', '已交付总额', '已发放剩余', '未发放', '已兑付');
  15. $table['body'] = array();
  16. $result['已导入'] = array
  17. (
  18. 'type' => 'table',
  19. 'content' => $table,
  20. );
  21. $html = Dever::show('', $result, false, false);
  22. echo $html;die;
  23. if ($data) {
  24. $member = array();
  25. foreach ($data as $k => $v) {
  26. $state = preg_match(Dever::rule('mobile'), $v['C']);
  27. if ($state) {
  28. $key = $v['A'];
  29. $where['key'] = $v['A'];
  30. $where['mobile'] = $v['C'];
  31. $where['clear'] = true;
  32. $info = Dever::db('option/member')->find($where);
  33. $update = $where;
  34. $update['idcard'] = $v['D'];
  35. $update['name'] = $v['B'];
  36. $update['main'] = $v['E'] == 1 ? 1 : 2;
  37. if (!$info) {
  38. $update['status'] = 2;
  39. $id = Dever::db('option/member')->insert($update);
  40. } else {
  41. $update['where_id'] = $info['id'];
  42. $id = Dever::db('option/member')->update($update);
  43. }
  44. if ($id && $update['main'] == 1) {
  45. if (!isset($member[$key])) {
  46. $member[$key] = array();
  47. }
  48. $account = Dever::db('option/member')->find(array('mid' => $id));
  49. if (!$account) {
  50. $member[$key] = Dever::db('option/account')->insert(array('mid' => $id, 'audit' => 1));
  51. } else {
  52. $member[$key] = $account['id'];
  53. }
  54. }
  55. }
  56. }
  57. if ($member) {
  58. foreach ($member as $k => $v) {
  59. $where = array();
  60. $where['option_key'] = $k;
  61. $where['set_aid'] = $v;
  62. Dever::db('option/member')->updates($where);
  63. }
  64. }
  65. }
  66. $table = Dever::table($result);
  67. return $table;
  68. }
  69. # 导入交付记录
  70. public function get_jiaofu_api()
  71. {
  72. Dever::config('base')->hook = true;
  73. $file = Dever::data() . 'qiquan.xlsx';
  74. $data = Dever::excelImport($file, 2, 5, 'excel');
  75. if ($data) {
  76. foreach ($data as $k => $v) {
  77. $state = preg_match(Dever::rule('mobile'), $v['A']);
  78. if ($state && $v['C'] > 0) {
  79. $where['mobile'] = $v['A'];
  80. $type_name = $v['D'];
  81. if ($type_name == '期权') {
  82. $type = 1;
  83. } else {
  84. $type = 4;
  85. }
  86. $info = Dever::db('option/member')->find($where);
  87. if ($info) {
  88. $account = Dever::db('option/account')->find($info['aid']);
  89. if ($account && $account['status'] < 3) {
  90. Dever::load('option/lib/cash')->up($info['id'], $account['id'], $type, $v['C'], $v['E'], false);
  91. }
  92. }
  93. }
  94. }
  95. }
  96. return 'ok';
  97. }
  98. # 导入发放记录
  99. public function get_fafang_api()
  100. {
  101. Dever::config('base')->hook = true;
  102. $file = Dever::data() . 'qiquan.xlsx';
  103. $data = Dever::excelImport($file, 3, 5, 'excel');
  104. if ($data) {
  105. foreach ($data as $k => $v) {
  106. $state = preg_match(Dever::rule('mobile'), $v['A']);
  107. if ($state && $v['C'] > 0) {
  108. $where['mobile'] = $v['A'];
  109. $type_name = $v['D'];
  110. if ($type_name == '期权') {
  111. $type = 2;
  112. } else {
  113. $type = 5;
  114. }
  115. $info = Dever::db('option/member')->find($where);
  116. if ($info) {
  117. $account = Dever::db('option/account')->find($info['aid']);
  118. if ($account && $account['status'] < 3) {
  119. Dever::load('option/lib/cash')->up($info['id'], $account['id'], $type, $v['C'], $v['E'], false);
  120. }
  121. }
  122. }
  123. }
  124. }
  125. return 'ok';
  126. }
  127. }