caixiao.php 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <?php
  2. declare (strict_types = 1);
  3. namespace app\command;
  4. use app\admin\model\CgdCaixiao;
  5. use app\admin\model\GoodCombind;
  6. use app\admin\model\GoodTax;
  7. use app\admin\model\OrderTax;use app\admin\model\Platform;
  8. use app\admin\model\SaleCaixiao;
  9. use app\model\TaxRelation;
  10. use think\console\Command;
  11. use think\console\Input;
  12. use think\console\Output;
  13. use think\facade\Cache;
  14. use think\facade\Db;
  15. class caixiao extends Command
  16. {
  17. protected $table = null;
  18. protected $contect = null;
  19. protected $hour = null;
  20. protected function cgd(){
  21. $cgd=new CgdCaixiao();
  22. $where=[['updatetime','>=',$this->hour]];
  23. $list = $cgd->with(["originCgd"])->where($where)->select();
  24. $cgdArr=[];
  25. foreach ($list as $item){
  26. echo date('Y-m:d H:i:s')."|".$item->cgdNo."--".$item->mainCode."\r\n";
  27. $unique = md5($item->cgdNo.$item->updatetime);
  28. $temp=['order_type'=>2,'uniqkey'=>$unique,'status'=>1,'addtime'=>date('Y-m:d H:i:s')];
  29. if($this->isInCfp($unique)){
  30. $item['inv_cat_info'] = OrderTax::spuCat($item->spuCode,$item->open_type,$item->order_source!=8?1:2);
  31. $item['cat_name'] = json_decode($item->cat_name);
  32. $temp['data']= json_encode($item,JSON_UNESCAPED_UNICODE);
  33. $cgdArr[]=$temp;
  34. }
  35. }
  36. if(empty($cgdArr)==false) $this->table->insertAll($cgdArr);
  37. }
  38. protected function configure()
  39. {
  40. // 指令配置
  41. $this->setName('caixiao')
  42. ->setDescription('the caixiao command');
  43. }
  44. protected function execute(Input $input, Output $output)
  45. {
  46. // 指令输出
  47. $key="caixiao_copy";
  48. $rs = Cache::store('redis')->get($key);
  49. if ($rs!=0) return true;
  50. Cache::store('redis')->set($key,1,180);
  51. $this->hour=date('Y-m-d H:i:s',strtotime('-1 hours'));
  52. $this->contect= Db::connect('mysql_cxinv');
  53. $this->table =$this->contect->name("caixiao_data");
  54. $this->sale();
  55. $this->cgd();
  56. $output->writeln('caixiao');
  57. }
  58. protected function getPay($plat_id=0){
  59. $plat =new Platform();
  60. return $plat->where("id",$plat_id)->value("platform_name","");
  61. }
  62. protected function sale(){
  63. $sale=new SaleCaixiao();
  64. $where=[["updatetime",">=",$this->hour]];
  65. $list = $sale->where($where)->cursor();
  66. $qrd=[];
  67. foreach ($list as $item){
  68. $unique = md5($item->orderCode.$item->updatetime);
  69. echo date('Y-m:d H:i:s').'|'.$item->orderCode."\r\n";
  70. $temp=["order_type"=>1,"uniqkey"=>$unique,"status"=>1,"addtime"=>date('Y-m:d H:i:s')];
  71. if($this->isInCfp($unique)){
  72. $item['inv_cat_info'] = OrderTax::spuCat($item->good_code,$item->open_type);
  73. $item['cat_name'] = json_decode($item->cat_name);
  74. $temp["data"]= json_encode($item,JSON_UNESCAPED_UNICODE);
  75. $qrd[]=$temp;
  76. }
  77. }
  78. if(empty($qrd)==false) $this->table->insertAll($qrd);
  79. }
  80. protected function isInCfp($unique){
  81. $ist = $this->contect->name("caixiao_data")->where("uniqkey",$unique)->findOrEmpty();
  82. return empty($ist);
  83. }
  84. }