コード例 #1
0
 public function Delete()
 {
     $Req = $this->GetReqObj();
     $this->LogInfo("delete order, order id is " . $Req->obj);
     $condition['order_id'] = $Req->obj;
     $orderDetailDao = LaundryDaoContext::OrderDetail();
     try {
         $result = MispCommonService::Delete($orderDetailDao, $condition);
     } catch (FuegoException $e) {
         $this->errorCode = $e->getCode();
         $this->ReturnJson();
         return;
     }
     parent::Delete();
 }