|
@@ -14,7 +14,7 @@ use traits\model\SoftDelete;
|
|
|
* @method Query set()
|
|
|
* @method Query cancel()
|
|
|
* @method Query now()
|
|
|
- * @method Query filter($order_id=null,$user_id=null)
|
|
|
+ * @method Query|self filter($user_order_id=null,$user_id=null)
|
|
|
* @property UserOrder orders
|
|
|
*/
|
|
|
class SenderOrder Extends Model
|
|
@@ -78,7 +78,7 @@ class SenderOrder Extends Model
|
|
|
->order('id','desc');
|
|
|
}
|
|
|
/** 申请结算 */
|
|
|
- public function settle(array $data){
|
|
|
+ public function applySettle(array $data){
|
|
|
if(!is_null($this['fee_total'])){
|
|
|
throw_user('不可再次申请');
|
|
|
}
|
|
@@ -136,7 +136,7 @@ class SenderOrder Extends Model
|
|
|
$data=$order->getChangedData();
|
|
|
#两人都提交了更新状态为已提交结算信息
|
|
|
if($order['fee_total']>0){
|
|
|
- $other=self::where('user_order_id',$order['user_order_id'])->now()->where('id','<>',$order['id'])->find();
|
|
|
+ $other=self::filter($order['user_order_id'])->now()->where('id','<>',$order['id'])->find();
|
|
|
if($other && $other['fee_total']>0){
|
|
|
$mainOrder=$order->orders;
|
|
|
if($mainOrder['status']==UserOrder::STATUS_COMPLETE){
|