當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Pedido::Validate方法代碼示例

本文整理匯總了PHP中Pedido::Validate方法的典型用法代碼示例。如果您正苦於以下問題:PHP Pedido::Validate方法的具體用法?PHP Pedido::Validate怎麽用?PHP Pedido::Validate使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Pedido的用法示例。


在下文中一共展示了Pedido::Validate方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: Create

 /**
  * API Method inserts a new Pedido record and render response as JSON
  */
 public function Create()
 {
     try {
         $json = json_decode(RequestUtil::GetBody());
         if (!$json) {
             throw new Exception('The request body does not contain valid JSON');
         }
         $pedido = new Pedido($this->Phreezer);
         // TODO: any fields that should not be inserted by the user should be commented out
         // this is an auto-increment.  uncomment if updating is allowed
         // $pedido->Id = $this->SafeGetVal($json, 'id');
         $pedido->Datacriacao = date('Y-m-d H:i:s', strtotime($this->SafeGetVal($json, 'datacriacao')));
         $pedido->Observacao = $this->SafeGetVal($json, 'observacao');
         $pedido->Dataentrega = date('Y-m-d H:i:s', strtotime($this->SafeGetVal($json, 'dataentrega')));
         $pedido->Valorfrete = $this->SafeGetVal($json, 'valorfrete');
         $pedido->Valordesconto = $this->SafeGetVal($json, 'valordesconto');
         $pedido->Valortotal = $this->SafeGetVal($json, 'valortotal');
         $pedido->Statuspedido = $this->SafeGetVal($json, 'statuspedido');
         $pedido->Formapagamento = $this->SafeGetVal($json, 'formapagamento');
         $pedido->Vendedor = $this->SafeGetVal($json, 'vendedor');
         $pedido->Cliente = $this->SafeGetVal($json, 'cliente');
         $pedido->Enderecoentrega = $this->SafeGetVal($json, 'enderecoentrega');
         $pedido->Itempedido = $this->SafeGetVal($json, 'itempedido');
         $pedido->Validate();
         $errors = $pedido->GetValidationErrors();
         if (count($errors) > 0) {
             $this->RenderErrorJSON('Please check the form for errors', $errors);
         } else {
             $pedido->Save();
             $this->RenderJSON($pedido, $this->JSONPCallback(), true, $this->SimpleObjectParams());
         }
     } catch (Exception $ex) {
         $this->RenderExceptionJSON($ex);
     }
 }
開發者ID:ronyelias,項目名稱:pizzaria,代碼行數:38,代碼來源:PedidoController.php

示例2: Create

 /**
  * API Method inserts a new Pedido record and render response as JSON
  */
 public function Create()
 {
     try {
         $json = json_decode(RequestUtil::GetBody());
         if (!$json) {
             throw new Exception('The request body does not contain valid JSON');
         }
         $pedido = new Pedido($this->Phreezer);
         // TODO: any fields that should not be inserted by the user should be commented out
         // this is an auto-increment.  uncomment if updating is allowed
         // $pedido->Id = $this->SafeGetVal($json, 'id');
         $pedido->ProdutoId = $this->SafeGetVal($json, 'produtoId');
         $pedido->ClienteId = $this->SafeGetVal($json, 'clienteId');
         $pedido->Validate();
         $errors = $pedido->GetValidationErrors();
         if (count($errors) > 0) {
             $this->RenderErrorJSON('Please check the form for errors', $errors);
         } else {
             $pedido->Save();
             $this->RenderJSON($pedido, $this->JSONPCallback(), true, $this->SimpleObjectParams());
         }
     } catch (Exception $ex) {
         $this->RenderExceptionJSON($ex);
     }
 }
開發者ID:DaviRoberto,項目名稱:testes,代碼行數:28,代碼來源:PedidoController.php


注:本文中的Pedido::Validate方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。