wugg 9 months ago
parent
commit
2e3da280b2
1 changed files with 2 additions and 0 deletions
  1. 2 0
      app/admin/controller/OrderInv.php

+ 2 - 0
app/admin/controller/OrderInv.php

@@ -62,6 +62,7 @@ class OrderInv extends Base{
         if(!in_array($invtype,$this->invName)) return error_show(1004,"发票类型有误");
 
         $email = isset($this->post['email'])&&$this->post['email']!=='' ? trim($this->post['email']):"";
+         $is_comon = isset($this->post['is_comon'])&&$this->post['is_comon']!=='' ? trim($this->post['is_comon']):'0';
         $remark = isset($this->post['remark'])&&$this->post['remark']!=='' ? trim($this->post['remark']):"";
         $exam_remark = isset($this->post['exam_remark'])&&$this->post['exam_remark']!=='' ? trim($this->post['exam_remark']):"";
         $orderArr = isset($this->post['orderArr'])&&!empty($this->post['orderArr']) ? $this->post['orderArr']:[];
@@ -212,6 +213,7 @@ class OrderInv extends Base{
             "exam_remark"=>$exam_remark, //审核备注
             "ainv_fee"=>0,//已核销金额
             "winv_fee"=>$invfee,//未核销金额
+            'is_comon'=> $is_comon ,
             "status"=>1,// 带财务审核
             "is_del"=>0,
             "email"=>$email,