|
@@ -135,8 +135,8 @@ class OrderInv extends BaseController{
|
|
|
"vice_total"=>$invfee,
|
|
|
"cancel_fee"=>$value['inv_fee'],
|
|
|
"status"=>1,
|
|
|
- "addtime"=>date("Y-m-d H:i:s"),
|
|
|
- "updatetime"=>date("Y-m-d H:i:s")
|
|
|
+ "addtime"=>date("Y-m-d H:i:s"),
|
|
|
+ "updatetime"=>date("Y-m-d H:i:s")
|
|
|
];
|
|
|
$invoice_good=[
|
|
|
"invNo"=>$invNo,
|
|
@@ -150,6 +150,7 @@ class OrderInv extends BaseController{
|
|
|
"goodNum"=>$value['num'],
|
|
|
"specInfo"=>$value['sequenceNo'],
|
|
|
"totalPrice"=>$value['inv_fee'],
|
|
|
+ "totalTax"=>$value['inv_fee'],
|
|
|
"tax"=>$good_info['inv_tax']??$qrd['tax'],
|
|
|
"is_discount"=>$good_info['is_discount']??0,
|
|
|
"addTax"=>$good_info['addTax']??'',
|
|
@@ -832,8 +833,8 @@ class OrderInv extends BaseController{
|
|
|
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(isset($result['code'])&&$result['code']==0){
|
|
|
- if($discard==1){
|
|
|
+ if(isset($result['code'])){
|
|
|
+ if($discard==1 ||$result['code']==0){
|
|
|
$status=2;
|
|
|
}
|
|
|
if(isset($result['data']) &&$result['data']['invRed']!='' ){
|
|
@@ -1205,7 +1206,7 @@ class OrderInv extends BaseController{
|
|
|
throw new \Exception($result['ZTXX'], 10006);
|
|
|
}
|
|
|
$up =Db::name("invoice_red")->insert($data);
|
|
|
- if($up) return ["code"=>0,"message"=>"红冲发票申请新建成功","invRed"=>$invRed];
|
|
|
+ if($up) return ["code"=>1,"message"=>"红冲发票申请新建成功","invRed"=>$invRed];
|
|
|
else throw new \Exception($result['ZTXX'], 1006);
|
|
|
}
|
|
|
//获取发票详情
|