本文整理汇总了PHP中Cliente::getById方法的典型用法代码示例。如果您正苦于以下问题:PHP Cliente::getById方法的具体用法?PHP Cliente::getById怎么用?PHP Cliente::getById使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Cliente
的用法示例。
在下文中一共展示了Cliente::getById方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Cliente
<li class="active">Editar Cliente</li>
</ul>';
//recuperacao do cliente
$oCliente = new Cliente();
$oGrupo = new Grupo();
$tpl->ACAO = "Incluir";
$idEstadoCivil = 0;
$oEstCivil = new EstadoCivil();
$rsec = $oEstCivil->getRows();
$tpl->DISPLAY_RA = 'none';
$tpl->SELECTED_NAO_RA = ' selected ';
$tpl->SELECTED_SIM_RA = '';
$tpl->CHCK_CORRESPONDENCIA_NAO = '';
$tpl->CHCK_CORRESPONDENCIA_SIM = 'checked="checked"';
if (isset($_REQUEST['idCliente'])) {
$oCliente->getById($oCliente->md5_Decrypt($_REQUEST['idCliente']));
$idEstadoCivil = $oCliente->estadoCivil->id;
$tpl->NOME = $oCliente->nomeCompleto;
$tpl->EMAIL = $oCliente->email;
$tpl->NACIONALIDADE = $oCliente->nacionalidade;
$tpl->CPF = $oCliente->cpf;
$tpl->NOME_CRACHA = $oCliente->nomeCracha;
$tpl->TAMANHO_CAMISA = $oCliente->tamanhoCamisa;
$tpl->RG = $oCliente->rg;
$tpl->ORGAORG = $oCliente->orgaoEmissorRg;
$tpl->PASSAPORTE = $oCliente->passaporte;
$tpl->ORGAO_PASSAPORTE = $oCliente->orgaoExpedidorPassaporte;
$tpl->DATA_EMISSAO_PASSAPORTE = $oCliente->convdata($oCliente->dataEmissaoPassaporte, "mtn");
$tpl->DATA_VALIDADE_PASSAPORTE = $oCliente->convdata($oCliente->dataValidadePassaporte, "mtn");
$tpl->DATA_NASCIMENTO = $oCliente->convdata($oCliente->dataNascimento, "mtn");
$tpl->ENDERECO = $oCliente->endereco;
示例2: incluirPorId
public function incluirPorId()
{
$arrayGrupo = explode(";", $_REQUEST['idGrupo']);
$oGrupo = new Grupo();
$oGrupo->getById($oGrupo->md5_decrypt($arrayGrupo[0]));
$oCliente = new Cliente();
$oCliente->getById($oGrupo->md5_decrypt($_REQUEST['idCliente']));
if ($this->getByIdCliente($oCliente->id, $oGrupo->id)) {
$_SESSION['tupi.mensagem'] = 52;
} else {
$this->dataInscricao = date("Y-m-d");
$pacoteOpcional = $arrayGrupo[1] == 1 ? 1 : 0;
$this->valorTotal = $oGrupo->getValorTotal($pacoteOpcional);
$this->custoTotal = $oGrupo->getCustoTotal($pacoteOpcional);
$this->grupo = $oGrupo;
$this->cliente = $oCliente;
$this->contrato = "";
//$this->geraContrato();
$this->pacoteOpcional = $pacoteOpcional;
$oSP = new StatusParticipante();
$oSP->id = $this->STATUS_PENDENTE();
$this->status = $oSP;
$newid = $this->save();
$_SESSION['tupi.mensagem'] = 24;
//log de criacao
$log = new LogParticipante();
$user = new Usuario();
$user->id = $_SESSION['ag_idUsuario'];
$log->usuario = $user;
$log->participante = $this;
$log->dataHora = date("Y-m-d H:i:s");
$log->valor = $this->valorTotal;
$log->custo = $this->custoTotal;
$log->save();
//grava log de usuario
$oLog = new LogUsuario();
$data = date("Y-m-d H:i:s");
$movimento = "INCLUIR PARTICIPANTE<BR> CLIENTE: " . $this->cliente->nomeCompleto . "<BR> GRUPO: " . $this->grupo->nomePacote;
$oLog->usuario = $user;
$oLog->data = $data;
$oLog->movimento = $movimento;
$oLog->save();
//fim da log
return $newid;
}
}