|
@@ -178,8 +178,9 @@ class PurchaseLogic
|
|
|
}
|
|
|
|
|
|
// 供货订单退款申请审核
|
|
|
- public static function auditSupplierRefund($order_id,$sh_status,$remark)
|
|
|
+ public static function auditSupplierRefund($refund_id,$sh_status,$remark)
|
|
|
{
|
|
|
+ $order_id = SupplierOrderRefund::where('id',$refund_id)->value('order_id');
|
|
|
$order_info = SupplierOrder::with('orderItem')->where('id',$order_id)->find()->toArray();
|
|
|
if(in_array($order_info['refund_status'],[2])) return ['code'=>201,'msg'=>'订单已退款,请勿重新审核'];
|
|
|
Db::startTrans();
|
|
@@ -314,9 +315,9 @@ class PurchaseLogic
|
|
|
}
|
|
|
|
|
|
// 线下订单退款申请审核
|
|
|
- public static function auditOfflineRefund($order_id,$sh_status,$remark)
|
|
|
+ public static function auditOfflineRefund($refund_id,$sh_status,$remark)
|
|
|
{
|
|
|
- var_dump($order_id);
|
|
|
+ $order_id = OfflineOrderRefund::where('id',$refund_id)->value('order_id');
|
|
|
$order_info = OfflineOrder::with('orderItem')->where('id',$order_id)->find()->toArray();
|
|
|
if(in_array($order_info['refund_status'],[2])) return ['code'=>201,'msg'=>'订单已退款,请勿重新审核'];
|
|
|
Db::startTrans();
|