本文整理汇总了PHP中cliente::consultar_cliente方法的典型用法代码示例。如果您正苦于以下问题:PHP cliente::consultar_cliente方法的具体用法?PHP cliente::consultar_cliente怎么用?PHP cliente::consultar_cliente使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cliente
的用法示例。
在下文中一共展示了cliente::consultar_cliente方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: iva
<?php
extract($_POST);
include_once '../../system/class.php';
$objfactdescrip = new factura_descripcion();
//IVA actual, facilitado por el sitema
$iva_actual = new iva();
$actual_iva = $iva_actual->consultar_iva_actual($mysqli);
$actual_iva = $actual_iva->fetch_array();
$impuesto = $actual_iva[0];
if (isset($comprado)) {
//Invocacion de los objetos
$objcliente = new cliente();
$objproducto = new producto();
$objfactura = new factura();
//Consulta de clientes y productos
$ress = $objcliente->consultar_cliente($mysqli, $comprado);
$result = $objproducto->consulta_completo($mysqli);
//Proceso de compra
//Primero hacer la factura básica
$objfactura->facturar($mysqli, $ress[1], $total);
$id = $objfactura->consultar_factura_insertada($mysqli, $ress[1]);
//Luego la descripcion o compras actualizando el inventario de una vez
$i = 0;
while ($resultado = $result->fetch_array()) {
if (!empty($cantidad[$i])) {
$precio = $resultado[3] * $cantidad[$i];
$objfactdescrip->facturar_productos($mysqli, $id[0], $resultado[1], $cantidad[$i], $resultado[3], $precio, $resultado[0]);
$nuevaexistencia = $resultado[2] - $cantidad[$i];
$objproducto->actualizar_existencia($mysqli, $nuevaexistencia, $resultado[0]);
}
$i++;
示例2: extract
include '../../layouts/cabecera-body.php';
?>
<hgroup>
<h1>Nuevo Cliente</h1>
</hgroup>
</div>
<?php
if (isset($_GET['var1'])) {
$var1 = $_GET["var1"];
}
if (isset($_POST['Modificar'])) {
extract($_POST);
$Ced_cliente = $Modificar;
require_once '../../system/class.php';
$client = new cliente();
$reg = $client->consultar_cliente($mysqli, $Ced_cliente);
if ($_SESSION['privilegios'] == 1) {
$fin = new finca();
$reg2 = $fin->consultar_finca_all($mysqli, $Ced_cliente);
}
}
?>
<form class="contact_form" method="post" action="resultados">
<br><label for="Ced_cliente">Cédula</label>
<input required type="num" name="Ced_cliente" id="Ced_cliente" value="<?php
echo $reg[1] . $var1;
?>
" title="Introduzca la cédula " maxlength="8" placeholder="" pattern="\d{6,}" />
<span class="form_hint">Debe contener solo caracteres númericos"</span><br />
示例3: factura
<?php
require_once "pdf/dompdf/dompdf_config.inc.php";
require "../../system/class.php";
extract($_POST);
$objfactura = new factura();
if (!isset($bauche)) {
$bauche = 0;
}
$objfactura->modificar_factura($mysqli, $codigo, $exento, $base, $iva, $retencion, $alicuota, $total, $observacion, $ivaporciento, $retencionporciento, $tipofactura, $metodo, $bauche);
$factura = $objfactura->consultar_factura($mysqli, $codigo);
$objcliente = new cliente();
$cliente = $objcliente->consultar_cliente($mysqli, $factura[1]);
$objfactura_des = new factura_descripcion();
$resultado = $objfactura_des->consultar_factura($mysqli, $codigo);
$result0 = $resultado->fetch_array();
$result1 = $resultado->fetch_array();
$result2 = $resultado->fetch_array();
$result3 = $resultado->fetch_array();
$result4 = $resultado->fetch_array();
$result5 = $resultado->fetch_array();
$result6 = $resultado->fetch_array();
if (!empty($factura[5])) {
$compra123 = $factura[4] . ', Nro. ' . $factura[5];
} else {
$compra123 = $factura[4];
}
$html = '
<html>' . '<body>
<link rel="stylesheet" type="text/css" href="pdf/factura.css">
<header>
示例4: cliente
<div>
<?php
include '../../layouts/cabecera-body.php';
?>
<hgroup>
<h1>Listado de clientes</h1>
</hgroup>
</div>
<?php
echo " <form method='POST' action='../../0/caja/clientes'>\n <div class='buscadores'>\n <input type='text' name='buscador' placeholder='Buscar cliente por cédula' />\n <button class='botonmenu' type='submit' name='button'><i class='fa fa-search'></i> Buscar</button>\n </div></form>";
extract($_POST);
include_once '../../system/class.php';
$objcliente = new cliente();
if (!empty($buscador)) {
$reg = $objcliente->consultar_cliente($mysqli, $buscador);
echo "\n\n <table>\n <tr>\n <td>CEDULA</td>\n <td>NOMBRES y APELLIDOS</td>\n <td>DIRECCIÓN</td>\n </tr>\n \n\n <tr>\n <td>{$reg['1']}</td>\n <td>{$reg['2']} {$reg['3']}</td>\n <td>{$reg['6']}</td>\n </tr>\n \n </table>\n\n ";
} else {
$registro = 0;
$limite = 50;
$res = $objcliente->consultar_clientes($mysqli, $registro, $limite);
echo "\n\n <table>\n <tr>\n <td>CEDULA</td>\n <td>NOMBRES y APELLIDOS</td>\n <td>DIRECCIÓN</td>\n </tr>\n ";
while ($resultado = $res->fetch_array()) {
echo "\n\n <tr>\n <td>{$resultado['1']}</td>\n <td>{$resultado['2']} {$resultado['3']}</td>\n <td>{$resultado['6']}</td>\n </tr>\n ";
}
echo "\n\n </table>\n\n ";
}
?>
<?php