|
@@ -955,7 +955,7 @@ class Payment extends BaseController
|
|
|
*/
|
|
|
public function invStatus(){
|
|
|
$post = $this->post;
|
|
|
- $hpNo = isset($post['hpNo'])&& $post['hpNo']!="" ? $post['hpNo'] :"";
|
|
|
+ $hpNo = isset($post['hpNo'])&& $post['hpNo']!="" ? trim($post['hpNo']) :"";
|
|
|
if($hpNo==""){
|
|
|
return error_show(1004,"参数 hpNo 不能为空");
|
|
|
}
|
|
@@ -983,9 +983,10 @@ class Payment extends BaseController
|
|
|
$cgdNo =Db::name("pay_info")->where(["payNo"=>$payment['payNo'],"is_del"=>0])->column("cgdNo");
|
|
|
if(empty($cgdNo)) return error_show(1004,"未找到对账采购单信息");
|
|
|
if($payinfo['inv_fee']< $payment['inv_fee'])return error_show(1005,"对账回票申请金额有误,请确认回票申请金额");
|
|
|
+ $remark = $post['remark']??'';
|
|
|
Db::startTrans();
|
|
|
try {
|
|
|
- $invup =["status"=>$status,"updatetime"=>date("Y-m-d H:i:s")];
|
|
|
+ $invup =["status"=>$status,"remark"=>$remark,"updatetime"=>date("Y-m-d H:i:s")];
|
|
|
$inv =Db::name("pay_invoice")->where($payment)->update($invup);
|
|
|
if($inv){
|
|
|
if($status==8){
|