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


PHP datos::PoblarComprobanteOperacionSelAll方法代码示例

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


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

示例1: datos

<?php

include "../seguridad.php";
require_once '../Connections/cn.php';
include "../clases/datos.php";
$objDatos = new datos();
$rsTreeview = $objDatos->ObtenerMenuAdministrativoSelAll($_SESSION['MM_Username']);
$row_rsTreeview = $objDatos->PoblarMenuAdministrativoSelAll($rsTreeview);
$totalRows_rsTreeview = mysql_num_rows($rsTreeview);
$rsComprobante = $objDatos->ObtenerComprobanteOperacionSelAll($_GET['xyz']);
$row_Comprobante = $objDatos->PoblarComprobanteOperacionSelAll($rsComprobante);
$totalRows_rsComprobante = mysql_num_rows($rsComprobante);
mysql_select_db($database_cn, $cn);
$query_rsCab = "Select CodCliente, Nombres, Direccion, Telefono from cliente where CodCliente=" . $_GET['pqr'] . " ";
$rsCab = mysql_query($query_rsCab, $cn) or die(mysql_error());
$row_rsCab = mysql_fetch_assoc($rsCab);
$totalRows_rsCab = mysql_num_rows($rsCab);
/*mysql_select_db($database_cn, $cn);
$query_rsDetalle = "SELECT CASE b.Tipo 	WHEN 'Pension' THEN (SELECT concat('Pension - ',x.NroPension) FROM programacionalumno x WHERE x.CodProgramacionAlumno=b.Codigo) 	WHEN 'concepto' THEN (SELECT y.NombreProducto FROM productos y WHERE y.CodProducto=b.Codigo) END AS Concepto, b.Cantidad, b.PrecioUnit, b.Cantidad*b.PrecioUnit AS Monto, b.Dscto, b.Mora, b.SubTotal FROM comprobante a INNER JOIN detallecomprobante b ON b.CodComprobante=a.CodComprobante WHERE a.CodAlumno='".$_SESSION['CajaCodAlumno']."' AND a.CodComprobante='".$_SESSION['CajaCodComprobante']."' ";
$rsDetalle = mysql_query($query_rsDetalle, $cn) or die(mysql_error());
$row_rsDetalle = mysql_fetch_assoc($rsDetalle);
$totalRows_rsDetalle = mysql_num_rows($rsDetalle);*/
mysql_select_db($database_cn, $cn);
$query_rsTotal = "SELECT SUM(b.SubTotal) as Total FROM comprobante a INNER JOIN detallecomprobante b ON b.CodComprobante=a.CodComprobante WHERE a.CodAlumno=" . $_GET['pqr'] . " AND a.CodComprobante='" . $_SESSION['CajaCodComprobante'] . "' ";
$rsTotal = mysql_query($query_rsTotal, $cn) or die(mysql_error());
$row_rsTotal = mysql_fetch_assoc($rsTotal);
$totalRows_rsTotal = mysql_num_rows($rsTotal);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/templateadm.dwt.php" codeOutsideHTMLIsLocked="false" -->
<head>
开发者ID:rcardenass,项目名称:Escuela,代码行数:31,代码来源:faccomprobante3.php


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