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


PHP Pedido::getId方法代碼示例

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


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

示例1: alterar

 public function alterar(Pedido $p)
 {
     $where = "WHERE " . self::ID . " = '" . $p->getId() . "'";
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::QUANTIDADE, $p->quantidade, $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::OBSERVACOES, $p->observacoes, $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::TIPOPAGAMENTO, $p->getTipoPagamento(), $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::DATA, $p->getData()->mostrar("YmdHi"), $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::STATUS, $p->getStatus()->getStatus(), $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::VALOR, $p->getValor()->formatar(), $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::DESCONTO, $p->getDesconto()->num, $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::ESTOQUE, $p->estoque, $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::VENDEDOR, $p->getVendedor(), $where);
     $lPEE = new ListaPedidoEnderecoEntregas();
     $lPEE->condicoes('', $p->getId(), ListaPedidoEnderecoEntregas::IDSESSAO);
     if ($lPEE->getTotal() > 0) {
         $lPEE->alterar($p->getEndereco(), $p);
     } else {
         $lPEE->inserir($p->getEndereco(), $p);
     }
     parent::alterar($p);
 }
開發者ID:jhonnybail,項目名稱:marktronic,代碼行數:21,代碼來源:ListaPedidos.php

示例2: alterar

 public function alterar(PedidoEnderecoEntrega $end, Pedido $ligacao)
 {
     //parent::alterar($end);
     $where = "WHERE " . self::IDSESSAO . " = '" . $ligacao->getId() . "'";
     $e = $end->getEstado();
     if ($e->getId() <= 0) {
         $lE = new ListaEstados();
         $lE->inserir($e);
         $end->setEstado($e);
     }
     $c = $end->getCidade();
     if ($c->getId() <= 0) {
         $lC = new ListaCidades();
         $lC->inserir($c);
         $end->setCidade($c);
     } else {
         $lC = new ListaCidades();
         $lC->condicoes('', $c->getId(), ListaCidades::ID);
         if ($lC->getTotal() <= 0) {
             if ($c->getPais()->getId() <= 0) {
                 $c->setPais($end->getPais());
             }
             if ($c->getEstado()->getId() <= 0) {
                 $c->setEstado($end->getEstado());
             }
             $this->con->executar("INSERT INTO " . Sistema::$BDPrefixo . $lC->getTabela() . "(" . ListaCidades::ID . ", " . ListaCidades::PAIS . ", " . ListaCidades::ESTADO . ", " . ListaCidades::NOME . ", " . ListaCidades::DDD . ") VALUES('" . $c->getId() . "','" . $c->getPais()->getId() . "','" . $c->getEstado()->getId() . "','" . $c->nome . "','" . $c->ddd . "')");
             $id = $this->con->getId();
             $end->setCidade(new Cidade($id));
         }
     }
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::LOGRADOURO, $end->logradouro, $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::NUMERO, $end->numero, $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::COMPLEMENTO, $end->complemento, $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::BAIRRO, $end->bairro, $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::CIDADE, $end->getCidade()->getId(), $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::ESTADO, $end->getEstado()->getId(), $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::PAIS, $end->getPais()->getId(), $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::CEP, $end->getCep(), $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::TIPO, $end->tipo, $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::PRAZO, $end->prazo, $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::VALOR, $end->getValor()->formatar(), $where);
 }
開發者ID:jhonnybail,項目名稱:marktronic,代碼行數:42,代碼來源:ListaPedidoEnderecoEntregas.php

示例3: deletar

 public function deletar(PedidoItem $p, Pedido $pe)
 {
     $where = "WHERE " . self::ID . " = '" . $p->getId() . "' AND " . self::IDSESSAO . " = '" . $pe->getId() . "'";
     $this->con->deletar(Sistema::$BDPrefixo . $this->tabela, $where);
 }
開發者ID:jhonnybail,項目名稱:marktronic,代碼行數:5,代碼來源:ListaPedidoItens.php


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