|
@@ -743,6 +743,7 @@ class OrderInv extends BaseController{
|
|
|
|
|
|
}
|
|
|
// 0 待审核 1 待退票 2 退票成功 3 驳回4 退票失败 5 退票进行中
|
|
|
+ // 红冲说明 1100000000 已抵扣 1010000000未抵扣 0000000100尚未寄出
|
|
|
public function ReturnStatus(){
|
|
|
$returnCode = isset($this->post['returnCode'])&&$this->post['returnCode']!="" ? trim($this->post['returnCode']):"";
|
|
|
if($returnCode==""){
|
|
@@ -753,11 +754,12 @@ class OrderInv extends BaseController{
|
|
|
return error_show(1005,"参数 status 不能为空");
|
|
|
}
|
|
|
$remark =isset($this->post['remark'])&&$this->post['remark']!="" ? trim($this->post['remark']):"";
|
|
|
- $return_reason =isset($this->post['return_reason'])&&$this->post['return_reason']!="" ? trim($this->post['return_reason']):"";
|
|
|
+ $return_reason =isset($this->post['return_reason'])&&$this->post['return_reason']!="" ? trim($this->post['return_reason']):"2";
|
|
|
$return= Db::name("invoice_return")->where(["returnCode"=>$returnCode])->find();
|
|
|
if($return==false){
|
|
|
return error_show(1005,"退票申请信息未找到");
|
|
|
}
|
|
|
+ $red_desc =isset($this->post['red_desc'])&&$this->post['red_desc']!="" ? trim($this->post['red_desc']):"0000000100";
|
|
|
$invinfo = Db::name("invoice_pool")->where(["invNo"=>$return['invNo'],"is_del"=>0])->find();
|
|
|
if($invinfo==false){
|
|
|
return error_show(1004,"发票申请数据未找到");
|
|
@@ -780,6 +782,9 @@ class OrderInv extends BaseController{
|
|
|
if ($return_type==""){
|
|
|
return error_show(1005,"参数 return_type 不能为空");
|
|
|
}
|
|
|
+ if ($red_desc==""){
|
|
|
+ return error_show(1005,"参数 red_desc 不能为空");
|
|
|
+ }
|
|
|
if($return_type==2){
|
|
|
$invCode =isset($this->post['invCode'])&&$this->post['invCode']!=''?trim($this->post['invCode']):"";
|
|
|
$invNum =isset($this->post['invNum'])&&$this->post['invNum']!=''?trim($this->post['invNum']):"";
|
|
@@ -806,40 +811,43 @@ class OrderInv extends BaseController{
|
|
|
$isoutmonth =date("Y-m",strtotime($ticket["open_date"]))==date("Y-m")?0:1;
|
|
|
$update=[
|
|
|
"status"=>$status,
|
|
|
- "return_reason"=>$return_reason,
|
|
|
- "return_type"=>$return_type,
|
|
|
"remark"=>$remark,
|
|
|
"updatetime"=>date("Y-m-d H:i:s")
|
|
|
];
|
|
|
- if($status==1) $update['is_out_month']=$isoutmonth;
|
|
|
+ if($status==1) {
|
|
|
+ $update['is_out_month']=$isoutmonth;
|
|
|
+ $update['red_desc']=$red_desc;
|
|
|
+ $update['return_reason']=$return_reason;
|
|
|
+ $update['return_type']=$return_type;
|
|
|
+ }
|
|
|
$up =Db::name("invoice_return")->where($return)->update($update);
|
|
|
if($up){
|
|
|
if($status==1){
|
|
|
if($return_type==1){
|
|
|
- $discard=0;
|
|
|
- if(date("Y-m",strtotime($ticket["open_date"]))==date("Y-m")){
|
|
|
- //当月纸质普通发票+纸质专用发票 作废
|
|
|
- if(in_array($ticket['inv_type'],['004','007'])){
|
|
|
- $discard=1;
|
|
|
- $result= $this->addDiscard($ticket,$returnCode);
|
|
|
- }
|
|
|
-
|
|
|
- //当月电子普票红冲
|
|
|
- if($ticket['inv_type']=='026')$result= $this->addRedOpen($ticket,$return_reason,$invinfo['company_type'], $returnCode);
|
|
|
- //当月电子专票红冲
|
|
|
- if($ticket['inv_type']=='028')$result= $this->addApplyRed($ticket,$returnCode);
|
|
|
- }else{
|
|
|
- //跨月票都走红冲
|
|
|
- if(in_array($ticket['inv_type'],['007','026'])) $result= $this->addRedOpen($ticket,$return_reason,$invinfo['company_type'], $returnCode);
|
|
|
- if(in_array($ticket['inv_type'],['004','028'])) $result= $this->addApplyRed($ticket,$returnCode);
|
|
|
- }
|
|
|
+// $discard=0;
|
|
|
+// if(date("Y-m-d",strtotime($ticket["open_date"]))==date("Y-m-d")){
|
|
|
+// //当月纸质普通发票+纸质专用发票 作废
|
|
|
+// if(in_array($ticket['inv_type'],['004','007'])){
|
|
|
+// $discard=1;
|
|
|
+//// $result= $this->addDiscard($ticket,$returnCode);
|
|
|
+// if(in_array($ticket['inv_type'],['007','026'])) $result= $this->addRedOpen($ticket,2, $invinfo['company_type'], $returnCode);
|
|
|
+//
|
|
|
+// }
|
|
|
+//
|
|
|
+// //当月电子普票红冲
|
|
|
+// if($ticket['inv_type']=='026')$result= $this->addRedOpen($ticket,$return_reason,$invinfo['company_type'], $returnCode);
|
|
|
+// //当月电子专票红冲
|
|
|
+// if($ticket['inv_type']=='028')$result= $this->addApplyRed($ticket,$returnCode);
|
|
|
+// }else{
|
|
|
+// //跨月票都走红冲
|
|
|
+// if(in_array($ticket['inv_type'],['007','026'])) $result= $this->addRedOpen($ticket,$return_reason,$invinfo['company_type'], $returnCode);
|
|
|
+// if(in_array($ticket['inv_type'],['004','028'])) $result= $this->addApplyRed($ticket,$returnCode);
|
|
|
+// }
|
|
|
+ if(in_array($ticket['inv_type'],['007','026'])) $result= $this->addRedOpen($ticket,$return_reason,$invinfo['company_type'],$returnCode,$red_desc);
|
|
|
+ if(in_array($ticket['inv_type'],['004','028'])) $result= $this->addApplyRed($ticket,$returnCode,$red_desc);
|
|
|
if(isset($result['code'])){
|
|
|
- if($result['code']==0){
|
|
|
- $status=2;
|
|
|
- }
|
|
|
- if(isset($result['data']) &&$result['data']['invRed']!='' ){
|
|
|
- $upd=Db::name("invoice_return")->where(["returnCode"=>$returnCode])->update
|
|
|
- (['red_inv'=>$result['data']['invRed'],"updatetime"=>date("Y-m-d H:i:s")]);
|
|
|
+ if(isset($result['data']) &&$result['invRed']!='' ){
|
|
|
+ $upd=Db::name("invoice_return")->where(["returnCode"=>$returnCode])->update(['red_inv'=>$result['invRed'],"updatetime"=>date("Y-m-d H:i:s")]);
|
|
|
if($upd==false) throw new \Exception("退票更新失败");
|
|
|
}
|
|
|
}
|
|
@@ -953,7 +961,7 @@ class OrderInv extends BaseController{
|
|
|
* @return \think\response\Json|void
|
|
|
* @throws \think\Exception
|
|
|
*/
|
|
|
- private function addRedOpen($ticket=[],$return_reason,$company_type,$returnCode){
|
|
|
+ private function addRedOpen($ticket=[],$return_reason,$company_type,$returnCode,$red_desc){
|
|
|
|
|
|
$goodinfo =Db::name("invoice_good")
|
|
|
->where(["invNo"=>$ticket['invNo'],"is_del"=>0])
|
|
@@ -1018,7 +1026,7 @@ class OrderInv extends BaseController{
|
|
|
"GMFMC"=> $ticket['buyer_title'],
|
|
|
"HJJE"=> "-".$ticket['inv_subtotal'],//合计金额(不含 税)
|
|
|
"HJSE"=>"-".$ticket['tax_fee'],//合计税额
|
|
|
- "SQSM"=>"1100000000", //申请说明
|
|
|
+ "SQSM"=>$red_desc, //申请说明 1100000000 已抵扣 1010000000未抵扣 0000000100尚未寄出
|
|
|
"XXBTSBS"=>"0",
|
|
|
"DDMXXX"=>json_encode($goodinfo,JSON_UNESCAPED_UNICODE),
|
|
|
"SQBSCQQPCH"=>'',
|
|
@@ -1084,7 +1092,7 @@ class OrderInv extends BaseController{
|
|
|
* @throws \think\db\exception\DbException
|
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
|
*/
|
|
|
- private function addApplyRed($ticket=[],$returnCode){
|
|
|
+ private function addApplyRed($ticket=[],$returnCode,$red_desc){
|
|
|
$invoice=Config::get("invoice");
|
|
|
$Tax =new \TaxInvoice($invoice['appKey'],$invoice['appSecret'],$invoice['entCode']);
|
|
|
$redticketList=[];
|
|
@@ -1148,7 +1156,7 @@ class OrderInv extends BaseController{
|
|
|
"GMFMC"=> $ticket['buyer_title'],
|
|
|
"HJJE"=> "-".$ticket['inv_subtotal'],//合计金额(不含 税)
|
|
|
"HJSE"=>"-".$ticket['tax_fee'],//合计税额
|
|
|
- "SQSM"=>"1100000000", //申请说明
|
|
|
+ "SQSM"=>$red_desc, //申请说明
|
|
|
"XXBTSBS"=>"0",
|
|
|
//0: 正常;1:成品油发票,涉及销售数量 变更(销货退回、开票有误等原因);2: 成品油发票,仅涉及销售金额变更(销 售折让);3:机动车发票,仅涉及销售数
|
|
|
//量变更(销货退回、开票有误等原因);4: 机动车发票,仅涉及销售金额变更(销 售折让)
|
|
@@ -1206,7 +1214,7 @@ class OrderInv extends BaseController{
|
|
|
throw new \Exception($result['ZTXX'], 10006);
|
|
|
}
|
|
|
$up =Db::name("invoice_red")->insert($data);
|
|
|
- if($up) return ["code"=>1,"message"=>"红冲发票申请新建成功","invRed"=>$invRed];
|
|
|
+ if($up) return ["code"=>0,"message"=>"红冲发票申请新建成功","invRed"=>$invRed];
|
|
|
else throw new \Exception($result['ZTXX'], 1006);
|
|
|
}
|
|
|
//获取发票详情
|