QueryInvalidInvoice.php 4.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <?php
  2. declare (strict_types = 1);
  3. namespace app\admin\command;
  4. use think\console\Command;
  5. use think\console\Input;
  6. use think\console\input\Argument;
  7. use think\console\input\Option;
  8. use think\console\Output;
  9. use think\facade\Config;
  10. use TaxInvoice;
  11. use think\facade\Db;
  12. class QueryInvalidInvoice extends Command
  13. {
  14. protected function configure()
  15. {
  16. // 指令配置
  17. $this->setName('queryinvalidinvoice')
  18. ->setDescription('the queryinvalidinvoice command');
  19. }
  20. protected function execute(Input $input, Output $output)
  21. {
  22. // $this->ChickInvoice('91110113MA004JNJ28',"1100223130","35084031");
  23. $date=date("Y-m-d H:i:s");
  24. Db::startTrans();
  25. try{
  26. $data =Db::name("invoice_return")->where(["status"=>1,"red_inv"=>"","is_del"=>0])->where("updatetime","<=",date("Y-m-d H:i:s"))->findOrEmpty();
  27. if(empty($data))return;
  28. $invoiceInfo = Db::name("invoice_ticket")->where(["invNo"=>$data['invNo'],"is_del"=>0,"status"=>1])
  29. ->findOrEmpty();
  30. if(empty($invoiceInfo))throw new \Exception("未找到开票数据");
  31. $check=$this->ChickInvoice($invoiceInfo['seller_id'],$invoiceInfo['inv_code'],$invoiceInfo['inv_number']);
  32. if(isset($check['ZTDM']) && $check['ZTDM']=='001000') {
  33. $reups=Db::name("invoice_return")->where($data)->update(["status"=>1,"remark"=>$data['remark']."({$check['ZTXX']})","updatetime"=>date("Y-m-d H:i:s",time()+120)]);
  34. if($reups==false)throw new \Exception("退票数据更新失败");
  35. throw new \Exception("发票作废中");
  36. }
  37. if(isset($check['ZTDM']) && $check['ZTDM']=='000000'){
  38. $reup=Db::name("invoice_return")->where($data)->update(["status"=>2,"updatetime"=>date("Y-m-d H:i:s")]);
  39. if($reup==false)throw new \Exception("退票数据更新失败");
  40. $qrdArr=Db::name("assoc")->where(["viceCode"=>$data['invNo'],"is_del"=>0,"status"=>2])->column("id,orderCode,cancel_fee");
  41. if(!empty($qrdArr)){
  42. foreach ($qrdArr as $value){
  43. $qrdinfo =Db::name("qrd_info")->where(["sequenceNo"=>$value['orderCode']])->find();
  44. if($qrdinfo==false){
  45. throw new \Exception("确认单信息未找到");
  46. }
  47. if($qrdinfo['ainv_fee']<$value['cancel_fee']){
  48. throw new \Exception("确认单信息开票金额不足");
  49. }
  50. $update =[
  51. "winv_fee"=>$qrdinfo['winv_fee']+$value['cancel_fee'],
  52. "ainv_fee"=>$qrdinfo['ainv_fee']-$value['cancel_fee'],
  53. "inv_status"=>$qrdinfo['inv_fee']==0 &&$qrdinfo['ainv_fee']-$value['cancel_fee']==0 ? 1 : 2,
  54. "status"=>$qrdinfo['ainv_fee']==0 &&$qrdinfo['inv_fee']-$value['cancel_fee']==0&&$qrdinfo['pay_status']==1 ?0 : 1,
  55. "updatetime"=>date("Y-m-d H:i:s"),
  56. ];
  57. $qrdup = Db::name("qrd_info")->where($qrdinfo)->update($update);
  58. if($qrdup==false){
  59. throw new \Exception("确认单信息更新失败");
  60. }
  61. $assoc=["status"=>3,"updatetime"=>date("Y-m-d H:i:s")];
  62. $assocup =Db::name("assoc")->where($value)->update($assoc);
  63. if($assocup==false){
  64. throw new \Exception("确认单关联信息更新失败");
  65. }
  66. }
  67. }else{
  68. throw new \Exception("未找到关联订单数据信息");
  69. }
  70. }else{
  71. $reup=Db::name("invoice_return")->where($data)->update(["status"=>4,"remark"=>$data['remark']."({$check['ZTXX']})","updatetime"=>date("Y-m-d H:i:s")]);
  72. if($reup==false)throw new \Exception("退票数据更新失败");
  73. }
  74. Db::commit();
  75. $output->writeln("[$date] {$data['invNo']}数据处理完成");
  76. }catch (\Exception $e){
  77. Db::rollback();
  78. $output->writeln("[$date] ".$e->getMessage());
  79. }
  80. }
  81. private function ChickInvoice($sellid,$invoice_code,$invoice_num){
  82. $invoice=Config::get("invoice");
  83. $tax =new TaxInvoice($invoice['appKey'],$invoice['appSecret'],$invoice['entCode']);
  84. $reuslt = $tax->QueryInvalidInvoice($sellid,$invoice_code,$invoice_num);
  85. return $reuslt;
  86. }
  87. }