QueryInvalidInvoice.php 4.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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,"discard"=>2,"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])->findOrEmpty();
  29. if(empty($invoiceInfo))throw new \Exception("未找到开票数据");
  30. $check=$this->ChickInvoice($invoiceInfo['seller_id'],$invoiceInfo['inv_code'],$invoiceInfo['inv_number']);
  31. if(isset($check['ZTDM']) && $check['ZTDM']=='001000') {
  32. $reups=Db::name("invoice_return")->where($data)->update(["discard"=>2,"remark"=>$data['remark']."({$check['ZTXX']})","updatetime"=>date("Y-m-d H:i:s",time()+120)]);
  33. if($reups==false)throw new \Exception("退票数据更新失败");
  34. throw new \Exception("发票作废中");
  35. }
  36. if(isset($check['ZTDM']) && $check['ZTDM']=='000000'){
  37. $reup=Db::name("invoice_return")->where($data)->update(["status"=>2,"discard"=>1,"updatetime"=>date("Y-m-d H:i:s")]);
  38. if($reup==false)throw new \Exception("退票数据更新失败");
  39. $ticket = Db::name("invoice_ticket")->where(["invNo"=>$data['invNo'],"is_del"=>0,"status"=>1])->update(["status"=>2,"updatetime"=>date("Y-m-d H:i:s")]);
  40. if($ticket==false)throw new \Exception("退票数据更新失败");
  41. $qrdArr=Db::name("assoc")->where(["viceCode"=>$data['invNo'],"is_del"=>0,"status"=>2])->column("id,orderCode,cancel_fee");
  42. if(!empty($qrdArr)){
  43. foreach ($qrdArr as $value){
  44. $qrdinfo =Db::name("qrd_info")->where(["sequenceNo"=>$value['orderCode']])->find();
  45. if($qrdinfo==false){
  46. throw new \Exception("确认单信息未找到");
  47. }
  48. if($qrdinfo['ainv_fee']<$value['cancel_fee']){
  49. throw new \Exception("确认单信息开票金额不足");
  50. }
  51. $update =[
  52. "winv_fee"=>$qrdinfo['winv_fee']+$value['cancel_fee'],
  53. "ainv_fee"=>$qrdinfo['ainv_fee']-$value['cancel_fee'],
  54. "inv_status"=>$qrdinfo['inv_fee']==0 &&$qrdinfo['ainv_fee']-$value['cancel_fee']==0 ? 1 : 2,
  55. "status"=>$qrdinfo['ainv_fee']==0 &&$qrdinfo['inv_fee']-$value['cancel_fee']==0&&$qrdinfo['pay_status']==1 ?0 : 1,
  56. "updatetime"=>date("Y-m-d H:i:s"),
  57. ];
  58. $qrdup = Db::name("qrd_info")->where($qrdinfo)->update($update);
  59. if($qrdup==false){
  60. throw new \Exception("确认单信息更新失败");
  61. }
  62. $assoc=["status"=>3,"updatetime"=>date("Y-m-d H:i:s")];
  63. $assocup =Db::name("assoc")->where($value)->update($assoc);
  64. if($assocup==false){
  65. throw new \Exception("确认单关联信息更新失败");
  66. }
  67. }
  68. }else{
  69. throw new \Exception("未找到关联订单数据信息");
  70. }
  71. }else{
  72. $reup=Db::name("invoice_return")->where($data)->update(["status"=>4,"remark"=>$data['remark']."({$check['ZTXX']})","updatetime"=>date("Y-m-d H:i:s")]);
  73. if($reup==false)throw new \Exception("退票数据更新失败");
  74. }
  75. Db::commit();
  76. $output->writeln("[$date] {$data['invNo']}数据处理完成");
  77. }catch (\Exception $e){
  78. Db::rollback();
  79. $output->writeln("[$date] ".$e->getMessage());
  80. }
  81. }
  82. private function ChickInvoice($sellid,$invoice_code,$invoice_num){
  83. $invoice=Config::get("invoice");
  84. $tax =new TaxInvoice($invoice['appKey'],$invoice['appSecret'],$invoice['entCode']);
  85. $reuslt = $tax->QueryInvalidInvoice($sellid,$invoice_code,$invoice_num);
  86. return $reuslt;
  87. }
  88. }