提交 7abe5752 authored 作者: chengye's avatar chengye

缴费单审核不触发销账

上级 ad2df8e1
...@@ -259,6 +259,8 @@ class Invoice extends Base ...@@ -259,6 +259,8 @@ class Invoice extends Base
->where('epi.invoice_id','=',$invoice_id)->select(); ->where('epi.invoice_id','=',$invoice_id)->select();
//如果没有找到记录 证明并没有形成对应关系 //如果没有找到记录 证明并没有形成对应关系
if($payments->isEmpty()) { if($payments->isEmpty()) {
//查询是否有未缴费的缴费单存在
$payments = EmPayment::field('payment_id')->where('account_id','=',$account_id) $payments = EmPayment::field('payment_id')->where('account_id','=',$account_id)
->where('balance','neq',0) ->where('balance','neq',0)
->order('payment_id asc') ->order('payment_id asc')
......
...@@ -197,9 +197,9 @@ class Useage extends Base ...@@ -197,9 +197,9 @@ class Useage extends Base
$useage->save(); $useage->save();
//触发销账逻辑 //触发销账逻辑
$result = (new Invoice())->writeOffFromInvoice($inv->invoice_id,$inv->account_id); //$result = (new Invoice())->writeOffFromInvoice($inv->invoice_id,$inv->account_id);
return json(['status'=>1,'message'=>"已审核,并生成账单,$result"]); //return json(['status'=>1,'message'=>"已审核,并生成账单,$result"]);
return json(['status'=>1,'message'=>"已审核,并生成账单"]);
} }
//获取单号 //获取单号
......
差异被折叠。
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论