diff --git a/app/admin/logic/beforehand_order/BeforehandOrderLogic.php b/app/admin/logic/beforehand_order/BeforehandOrderLogic.php index 035ca11a7..430c25111 100644 --- a/app/admin/logic/beforehand_order/BeforehandOrderLogic.php +++ b/app/admin/logic/beforehand_order/BeforehandOrderLogic.php @@ -1058,7 +1058,7 @@ class BeforehandOrderLogic extends BaseLogic throw new BusinessException('只能复制铺货订单'); } $orderCartInfo = BeforehandOrderCartInfo::where('bhoid', $params['id'])->select()->toArray(); - unset($order['id'], $order['create_time'], $order['update_time']); + unset($order['id'], $order['create_time'], $order['update_time'], $order['is_warehousing'], $order['warehousing_id'], $order['is_outbound'], $order['outbound_id']); $newOrder = new BeforehandOrder(); $newOrder->setAttrs($order->toArray()); $newOrder->admin_id = $params['admin_id'];