|
@@ -256,6 +256,7 @@ class OrderInv extends BaseController{
|
|
|
$buyer_bank =isset($this->post['buyer_bank'])&&$this->post['buyer_bank']!=''?trim($this->post['buyer_bank']):"";
|
|
|
$buyer_bankNo =isset($this->post['buyer_bankNo'])&&$this->post['buyer_bankNo']!=''?trim($this->post['buyer_bankNo']):"";
|
|
|
$tax_fee =isset($this->post['tax_fee'])&&$this->post['tax_fee']!=''?trim($this->post['tax_fee']):"";
|
|
|
+ $invimg =isset($this->post['invimg'])&&$this->post['invimg']!=''?trim($this->post['invimg']):"";
|
|
|
$update=[
|
|
|
"status"=> $status,
|
|
|
"exam_remark"=>$remark,
|
|
@@ -320,6 +321,7 @@ class OrderInv extends BaseController{
|
|
|
$invpool['buyer_bank'] = $buyer_bank??"";
|
|
|
$invpool['buyer_bankNo'] = $buyer_bankNo??"";
|
|
|
$invpool['tax_fee'] = $tax_fee??"";
|
|
|
+ $invpool['pdfstream'] = $invimg ??"";
|
|
|
}
|
|
|
$in = Db::name("invoice_ticket")->insert($invpool);
|
|
|
if($in==false){
|