copyCxData.php 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <?php
  2. namespace app\command;
  3. use think\console\Command;
  4. use think\console\Input;
  5. use think\console\Output;
  6. use think\facade\Db;
  7. use think\helper\Str;
  8. //将wsm_sale_caixiao和wsm_cgd_caixiao的数据复制到cfp_caixiao_data
  9. class copyCxData extends command
  10. {
  11. private $interval = 500 * 60;//执行间隔,单位:分(每次同步前5分钟的数据)
  12. protected function configure()
  13. {
  14. parent::configure(); // TODO: Change the autogenerated stub
  15. $this->setName('copyCxData')->setDescription('复制采销数据到中间表');
  16. }
  17. protected function execute(Input $input, Output $output)
  18. {
  19. // $start = microtime(true);
  20. $date = date('Y-m-d H:i:s');
  21. //先处理wsm_sale_caixiao数据
  22. $sale = Db::connect('mysql_wsm')
  23. ->name('sale_caixiao')
  24. ->field(true)
  25. ->limit(1)
  26. ->whereBetween('updatetime', [date('Y-m-d H:i:s', time() - $this->interval), $date])
  27. ->cursor();
  28. $insert_data = "INSERT INTO `cfp_caixiao_data` (`order_type`, `data`, `uniqkey`, `status`, `addtime`) VALUES ";
  29. $is_insert = false;
  30. foreach ($sale as $value) {
  31. $value['cat_name'] = json_decode($value['cat_name'], true);
  32. $insert_data .= "(1,'" . json_encode($value, JSON_UNESCAPED_UNICODE) . "', '" . Str::random(32, 5) . "',0,'" . $date . "'),";
  33. $is_insert = true;
  34. }
  35. //再处理 wsm_cgd_caixiao 数据
  36. $cgd = Db::connect('mysql_wsm')
  37. ->name('cgd_caixiao')
  38. ->field(true)
  39. ->whereBetween('updatetime', [date('Y-m-d H:i:s', time() - $this->interval * 60), $date])
  40. ->cursor();
  41. foreach ($cgd as $val) {
  42. $val['cat_name'] = json_decode($val['cat_name'], true);
  43. $insert_data .= "(2,'" . json_encode($val, JSON_UNESCAPED_UNICODE) . "', '" . Str::random(32, 5) . "',0,'" . $date . "'),";
  44. $is_insert = true;
  45. }
  46. if ($is_insert) {
  47. //把最后一个,换成;
  48. $insert_data = substr($insert_data, 0, -1) . ';';
  49. $res = Db::execute($insert_data);
  50. $output->writeln('本次共处理' . $res . '条数据');//原生sql,耗时1.9961631298065s,二维数组insertAll,耗时23.434303045273
  51. }
  52. // $end = microtime(true);
  53. // $output->writeln('本次耗时:' . ($end - $start));
  54. // return parent::execute($input, $output); // TODO: Change the autogenerated stub
  55. }
  56. }