当前位置: 首页>>代码示例>>PHP>>正文


PHP Empresa::registrar方法代码示例

本文整理汇总了PHP中Empresa::registrar方法的典型用法代码示例。如果您正苦于以下问题:PHP Empresa::registrar方法的具体用法?PHP Empresa::registrar怎么用?PHP Empresa::registrar使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Empresa的用法示例。


在下文中一共展示了Empresa::registrar方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: serialize

                 $tercero->instanciarSubID($get->numero_documento, $get->tipo, $conexion);
                 $_SESSION['tercero'] = serialize($tercero);
                 $operation['message'] = "Se registro correctamente la información.";
             }
         } elseif (!$operation['ejecution']) {
             $log = Log::registro($usuario->getID(), "error", "Registro la información. Tercero Persona. {" . $get->tipo . ", " . $get->regimen . ", " . $get->estado . ", " . $get->nombre . ", " . $get->apellido . ", " . $get->tipo_documento . ", " . $get->numero_documento . ", " . $get->ciudad . ", " . $get->direccion . ", " . $get->telefono . "} - {" . $operation['error'] . "}", $conexion);
         }
     } else {
         $operation['ejecution'] = true;
         $operation['result'] = false;
         $operation['message'] = "Por favor diligencie los todos los campos del formulario.";
     }
 } else {
     if ($get->nit != "" && $get->razon_social != "" && $get->pais != "" && $get->departamento != "" && $get->ciudad != "" && $get->direccion != "" && $get->telefono != "") {
         $conexion = new Conexion();
         $operation = Empresa::registrar($get->nit, $get->razon_social, $get->naturaleza, $get->fecha, $get->ciudad, $get->direccion, $get->telefono, $conexion);
         if ($operation['ejecution'] && $operation['result']) {
             $operation = Tercero::registrar($operation['returning']['id'], $get->tipo, $get->regimen, $get->estado, $conexion);
             if ($operation['result']) {
                 $operation['message'] = "Se registro correctamente la información.";
                 $log = Log::registro($usuario->getID(), "info", "Registro de información. - Tercero Empresa. {" . $get->tipo . ", " . $get->regimen . ", " . $get->estado . ", " . $get->nit . ", " . $get->razon_social . ", " . $get->naturaleza . " , " . $get->fecha . ", " . $get->ciudad . ", " . $get->direccion . ", " . $get->telefono . "}", $conexion);
                 $tercero = new Tercero();
                 $tercero->instanciarSubID($get->nit, $get->tipo, $conexion);
                 $_SESSION['tercero'] = serialize($tercero);
             }
         } elseif (!$operation['ejecution']) {
             $log = Log::registro($usuario->getID(), "error", "Registro la información. Tercero Empresa. {" . $get->nit . ", " . $get->razon_social . ", " . $get->naturaleza . " , " . $get->fechaconst . ", " . $get->ciudad . ", " . $get->direccion . ", " . $get->telefono . "} - {" . $operation['error'] . "}", $conexion);
         }
     } else {
         $operation['ejecution'] = true;
         $operation['result'] = false;
开发者ID:bayuelo,项目名称:camaleon-prototype,代码行数:31,代码来源:tercero.php


注:本文中的Empresa::registrar方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。