This commit is contained in:
xman 2025-06-19 15:20:46 +08:00
parent a5939aff5d
commit bc9aa3fb57

View File

@ -123,6 +123,11 @@ class Aftersale extends Backend
if(empty($order)){
$this->error('订单不存在');
}
if($order->aftersale_id > 0){
$this->error('订单已存在售后信息,不可重复创建');
}
$this->assign('order',$order);
}