本文整理汇总了PHP中CUtils::fNotasBD方法的典型用法代码示例。如果您正苦于以下问题:PHP CUtils::fNotasBD方法的具体用法?PHP CUtils::fNotasBD怎么用?PHP CUtils::fNotasBD使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CUtils
的用法示例。
在下文中一共展示了CUtils::fNotasBD方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: session_start
session_start();
$oUsuSesion = $_SESSION['oUsuSesion'];
if ($oUsuSesion == null || !$oUsuSesion->getSesion()) {
$_SESSION['sWarning'] = "Debe iniciar sesión.";
} else {
//COMPRUEBO LOS USUARIOS
if ($oUsuSesion->getCategoria() == "SUPER" || $oUsuSesion->getCategoria() == "ADMINISTRADOR") {
$sAccion = $_POST['hidAccion'];
if ($sAccion == "G") {
//Factura
//$oFactura=new CFactura(null, null, null, null, null, null, null, null);
$oFactura = $_SESSION['oFactura'];
//Actualizo estos campos, por si se modificaron antes del envio
$oFactura->setFecha($_POST['txtFecha']);
$oFactura->setIdCliente($_POST['selCliente']);
$oFactura->setNotas(CUtils::fNotasBD($_POST['txaNotas']));
$arDetalles = $_SESSION['arDetalles'];
//ZONA FILTRO TODO
$oBD = new CBaseDatos();
$bEstado = $oBD->fBoolConectar();
//$oFacturaW=new CFactura(null, $arFactura['Fecha'], $arFactura['Subtotal'], $arFactura['Iva'], $arFactura['Total'], $arFactura['Estado'], $arFactura['Notas'], $arFactura['IdCliente']);
$oFactura->Agregar();
$iIdFactura = CFactura::fIdFactura($oBD, $oFactura->getFecha(), $oFactura->getSubtotal(), $oFactura->getIva(), $oFactura->getTotal(), $oFactura->getEstado(), $oFactura->getNotas(), $oFactura->getIdCliente());
for ($i = 0; $i < count($arDetalles); $i++) {
$oDetalles = new CDetalleFactura(null, $arDetalles[$i]['Concepto'], $arDetalles[$i]['Cantidad'], $iIdFactura);
$oDetalles->Agregar();
}
$_SESSION['sWarning'] = "Factura agregada!!";
}
unset($_SESSION['oFactura']);
unset($_SESSION['arDetalles']);
示例2: CBaseDatos
$sAccion = $_POST['hidAccion'];
if ($sAccion == "G") {
$oCliente = $_SESSION['oCliente'];
//Actualizo estos campos, por si se modificaron antes del envio
$oCliente->setCifnif($_POST['txtCifnif']);
$oCliente->setEmpresa($_POST['txtEmpresa']);
$oCliente->setCodpos($_POST['txtCodpos']);
$oCliente->setCiudad($_POST['txtCiudad']);
$oCliente->setDireccion($_POST['txtDirecc']);
$oCliente->setTelefono($_POST['txtTelefo']);
$oCliente->setMovil($_POST['txtMovil']);
$oCliente->setPersonaContacto($_POST['txtPersona']);
$oCliente->setEmail($_POST['txtEmail']);
$oCliente->setCuentaBancaria($_POST['txtCuentaB']);
$oCliente->setDominios(CUtils::fNotasBD($_POST['txaDominios']));
$oCliente->setNotas(CUtils::fNotasBD($_POST['txaNotas']));
//ZONA FILTRO TODO
$oBD = new CBaseDatos();
$bEstado = $oBD->fBoolConectar();
$oCliente->Agregar();
$_SESSION['sWarning'] = "Cliente agregado!!";
}
unset($_SESSION['oCliente']);
$oCliente = null;
header('Location: ../Backend/UILista.php');
exit;
} else {
$_SESSION['sWarning'] = "Error: No tiene privilegios!!";
}
}
header('Location: ../../index.php');