本文整理汇总了PHP中cTabla::Show方法的典型用法代码示例。如果您正苦于以下问题:PHP cTabla::Show方法的具体用法?PHP cTabla::Show怎么用?PHP cTabla::Show使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cTabla
的用法示例。
在下文中一共展示了cTabla::Show方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: jsaGetGrupos
function jsaGetGrupos($txt)
{
$nombre = $txt;
$xLi = new cSQLListas();
$ByNombre = $nombre != "" ? " AND (`nombre_gruposolidario` LIKE '%{$nombre}%' OR `representante_nombrecompleto` LIKE '%{$nombre}%' OR `vocalvigilancia_nombrecompleto` LIKE '%{$nombre}%') " : "";
$sql = $xLi->getListadoDeGrupos() . "\n\t{$ByNombre}\n\tORDER BY\n\t`nombre_gruposolidario`\n\tLIMIT 0,10 ";
$xT = new cTabla($sql);
return $xT->Show();
}
示例2: jsaGuardarPerfil
function jsaGuardarPerfil($persona, $tipo, $pais, $monto, $numero, $observaciones)
{
$xAP = new cAMLPersonas($persona);
$xAP->init();
$xAP->setGuardarPerfilTransaccional($tipo, $pais, $monto, $numero, $observaciones);
$QL = new cSQLListas();
$xT = new cTabla($QL->getListadoDePerfil($persona));
$xT->addTool(SYS_DOS);
return $xT->Show() . $xAP->getMessages(OUT_HTML);
}
开发者ID:Cywaithaka,项目名称:S.A.F.E.-Open-Source-Microfinance-Suite,代码行数:10,代码来源:perfil_transaccional.frm.php
示例3: getListRecibos
function getListRecibos($tipo, $socio)
{
$sql = new cSQLListas();
$cTbl = new cTabla($sql->getListadoDeRecibos($tipo, $socio));
$xImg = new cHImg();
$cTbl->setKeyField("idoperaciones_recibos");
$cTbl->setTdClassByType();
$cTbl->OButton("TR.Reporte", "jsGetReporteRecibo(" . HP_REPLACE_ID . ")", $cTbl->ODicIcons()->REPORTE);
$cTbl->OButton("TR.Panel", "var xRec = new RecGen(); xRec.panel(" . HP_REPLACE_ID . ")", $cTbl->ODicIcons()->EJECUTAR);
$cTbl->setEventKey("setRecibo");
return $cTbl->Show();
}
示例4: jsaGetPolizas
function jsaGetPolizas($fecha, $tipo)
{
$xF = new cFecha();
$fecha = $xF->getFechaISO($fecha);
$xQL = new cSQLListas();
$xT = new cTabla($xQL->getListadoDePolizasContables($fecha, $tipo), 7);
$xBtn = new cHImg();
$xT->setKeyField("codigo");
$xT->OButton("TR.Modificar", "jsAgregarMovimientos('" . HP_REPLACE_ID . "')\"", $xT->ODicIcons()->AGREGAR);
$xT->OButton("TR.Imprimir", "jsImprimirPoliza('" . HP_REPLACE_ID . "')\"", $xT->ODicIcons()->IMPRIMIR);
$xT->OButton("TR.Eliminar", "jsEliminarPoliza('" . HP_REPLACE_ID . "')\"", $xT->ODicIcons()->ELIMINAR);
return $xT->Show();
}
示例5: jsaGetCreditos
function jsaGetCreditos($convenio, $estatus, $periocidad, $oficial)
{
$xLi = new cSQLListas();
$ByOficial = CREDITO_USAR_OFICIAL_SEGUIMIENTO == true ? "\tAND\t(`creditos_solicitud`.`oficial_seguimiento` != {$oficial}) " : "\tAND\t(`creditos_solicitud`.`oficial_credito` != {$oficial}) ";
//saveError( 22, $_SESSION["SN_b80bb7740288fda1f201890375a60c8f"], "$oficial Ingreso al Modulo de Asignacion de Oficiales");
$sqlCred = CREDITO_USAR_OFICIAL_SEGUIMIENTO == true ? $xLi->getListadoDeCreditosConOficialSeguimiento(false, $estatus, $periocidad, $convenio, $ByOficial) : $xLi->getListadoDeCreditosConOficial(false, $estatus, $periocidad, $convenio, $ByOficial);
$xTbl = new cTabla($sqlCred, 2);
$xChk = new cHCheckBox();
$xTbl->setTdClassByType();
$xTbl->addEspTool($xChk->get("", "chk" . STD_LITERAL_DIVISOR . "_REPLACE_ID_"));
$xTbl->setWidth();
return $xTbl->Show();
//return $sqlCred;
}
开发者ID:Cywaithaka,项目名称:S.A.F.E.-Open-Source-Microfinance-Suite,代码行数:14,代码来源:asignar_oficiales.frm.php
示例6: jsaGetLetras
function jsaGetLetras($idcredito, $idfecha)
{
$xCred = new cCredito($idcredito);
$xCred->init();
//$xPlas = $xCred->getPlanDePago();
$xF = new cFecha();
$idfecha = $xF->getFechaISO($idfecha);
$xQL = new MQL();
//$xQL->setRawQuery("SET @fecha_de_corte:='$idfecha';");
my_query("SET @fecha_de_corte:='{$idfecha}';");
$sql = "SELECT\r\n\t`letras`.`socio_afectado` AS `persona`,\r\n\t`letras`.`docto_afectado` AS `credito`,\r\n\t`letras`.`periodo_socio` AS `parcialidad`,\r\n\t`letras`.`fecha_de_pago`,\r\n\r\n\t`letras`.`capital`,\r\n\t`letras`.`interes`,\r\n\t`letras`.`iva`,\r\n\t`letras`.`ahorro`,\r\n\t`letras`.`otros`,\r\n\t`letras`.`letra`,\t\r\n\t\r\n\t(`creditos_solicitud`.`tasa_moratorio`*100) AS `tasa_de_mora`,\r\n\t(`creditos_solicitud`.`tasa_interes`*100) AS `tasa_de_interes` ,\r\n\tDATEDIFF(getFechaDeCorte(), fecha_de_pago) AS 'dias',\r\n\t ((letras.capital * DATEDIFF(getFechaDeCorte(), fecha_de_pago) * (`creditos_solicitud`.`tasa_moratorio` + `creditos_solicitud`.`tasa_interes`))/getDivisorDeInteres()) AS 'mora'\r\n\tFROM\r\n\t\t`creditos_solicitud` `creditos_solicitud` \r\n\t\t\tINNER JOIN `letras` `letras` \r\n\t\t\tON `creditos_solicitud`.`numero_solicitud` = `letras`.`docto_afectado`\r\n\t\r\n\t WHERE capital >0 AND docto_afectado={$idcredito} AND fecha_de_pago <= getFechaDeCorte()";
$xT = new cTabla($sql);
$xT->setFootSum(array(4 => "capital", 5 => "interes", 6 => "iva", 7 => "ahorro", 8 => "otros", 9 => "letra", 13 => "mora"));
return $xT->Show();
}
开发者ID:Cywaithaka,项目名称:S.A.F.E.-Open-Source-Microfinance-Suite,代码行数:15,代码来源:creditos.letras-pendientes.frm.php
示例7: mostrar_notificaciones
function mostrar_notificaciones($finicial, $ffinal, $estatus)
{
$sql = "SELECT\n\t`seguimiento_notificaciones`.`idseguimiento_notificaciones` AS `codigo`,\n\t`seguimiento_notificaciones`.`socio_notificado` AS 'socio',\n\t`socios`.`nombre`,\n\t`seguimiento_notificaciones`.`numero_solicitud` AS 'solicitud',\n\t`seguimiento_notificaciones`.`numero_notificacion` AS 'num',\n\t`seguimiento_notificaciones`.`fecha_notificacion`,\n\t/*`oficiales`.`nombre_completo` AS \t`oficial_a_cargo`,*/\n\t/*`seguimiento_notificaciones`.`fecha_vencimiento`,*/\n\t`seguimiento_notificaciones`.`capital`,\n\t`seguimiento_notificaciones`.`interes`,\n\t`seguimiento_notificaciones`.`moratorio`,\n\t`seguimiento_notificaciones`.`otros_cargos`,\n\t`seguimiento_notificaciones`.`total` \nFROM\n\t`seguimiento_notificaciones` `seguimiento_notificaciones` \n\t\tINNER JOIN `socios` `socios` \n\t\tON `seguimiento_notificaciones`.`socio_notificado` = `socios`.`codigo` \n\t\t\tINNER JOIN `oficiales` `oficiales` \n\t\t\tON `seguimiento_notificaciones`.`oficial_de_seguimiento` = `oficiales`\n\t\t\t.`id` \nWHERE\n\t(`seguimiento_notificaciones`.`estatus_notificacion` ='{$estatus}')\n\t\tORDER BY\n\t\t\t`seguimiento_notificaciones`.`idseguimiento_notificaciones`";
//$cmdCancel = new cCmdByOrder("common/exit.png", "Cumplir Notificacion", "jsSetCumplido(event);", "cmd@_REPLACE_ID_");
$cmdOk = "<label for='cmd@_REPLACE_ID_'><input type='checkbox' id='cmd@_REPLACE_ID_' /></label>";
$cTbl = new cTabla($sql);
$cTbl->setWidth();
$cTbl->addTool(2);
$cTbl->addTool(1);
//$cTbl->addEspTool($cmdCancel->show());
$cTbl->addEspTool($cmdOk);
//$cTbl->addTool(2);
$cTbl->setTdClassByType();
$cTbl->setKeyField("idseguimiento_notificaciones");
return $cTbl->Show();
}
开发者ID:Cywaithaka,项目名称:S.A.F.E.-Open-Source-Microfinance-Suite,代码行数:16,代码来源:frm_cumplir_notificaciones.php
示例8: jsShowGrupos
function jsShowGrupos($nombre_del_grupo)
{
settype($nombre_del_grupo, "string");
$rst = "";
if ($nombre_del_grupo) {
$nombre_del_grupo = substr($nombre_del_grupo, 0, 6);
/**
* Sql
*/
$sql_grupos = "SELECT \r\n\t`socios_grupossolidarios`.`idsocios_grupossolidarios` AS 'numero',\r\n\t`socios_grupossolidarios`.`nombre_gruposolidario` \r\n\tAS `nombre`,\r\n\t`socios_grupossolidarios`.`colonia_gruposolidario` \r\n\tAS `colonia`,\r\n\t`socios_grupossolidarios`.`representante_nombrecompleto` \r\n\tAS `representante`\r\n\t\r\n\t\t\tFROM socios_grupossolidarios \r\n\t\t\tWHERE nombre_gruposolidario LIKE '%{$nombre_del_grupo}%'\r\n\t\t\t\t\tAND sucursal = '" . getSucursal() . "'\r\n\t\t\tLIMIT 0,10";
$ctb = new cTabla($sql_grupos);
$ctb->setEventKey("setGrupo");
$ctb->setWidth();
$rst = $ctb->Show();
}
return $rst;
}
示例9: jsaGetListadoDeAvisos
function jsaGetListadoDeAvisos($tipo, $fecha_inicial, $fecha_final)
{
$tipo = $tipo == SYS_TODAS ? false : $tipo;
$xF = new cFecha();
$xAl = new cAml_alerts();
$xlistas = new cSQLListas();
$xBtn = new cHButton();
$xImg = new cHImg();
$fecha_inicial = $xF->getFechaISO($fecha_inicial);
$fecha_final = $xF->getFechaISO($fecha_final);
$sql = $xlistas->getListadoDeRiesgosConfirmados($fecha_inicial, $fecha_final, $tipo);
// getListadoDeAlertas($tipo, $fecha_inicial, $fecha_final, false, " AND `estado_en_sistema`= " . SYS_UNO);
$xT = new cTabla($sql);
$xT->addEspTool($xImg->get24("check", " onclick=\"jsConfirmRiesgo(_REPLACE_ID_)\" "));
$xT->addEspTool($xImg->get24("delete", " onclick=\"jsDescartarRiesgo(_REPLACE_ID_)\" "));
$xT->setKeyField($xAl->getKey());
$xT->setKeyTable($xAl->get());
return $xT->Show();
}
开发者ID:Cywaithaka,项目名称:S.A.F.E.-Open-Source-Microfinance-Suite,代码行数:19,代码来源:posibles_operaciones.frm.php
示例10: jsaGetListadoDeAvisos
function jsaGetListadoDeAvisos($tipo, $fecha_inicial, $fecha_final)
{
$tipo = $tipo == SYS_TODAS ? false : $tipo;
$xF = new cFecha();
$xAl = new cAml_risk_register();
$xlistas = new cSQLListas();
$xBtn = new cHButton();
$xImg = new cHImg();
$fecha_inicial = $xF->getFechaISO($fecha_inicial);
$fecha_final = $xF->getFechaISO($fecha_final);
$sql = $xlistas->getListadoDeRiesgosConfirmados(false, false, false, $tipo, false, " AND (`aml_risk_register`.`estado_de_envio` =0) AND (`aml_risk_register`.`fecha_de_checking` =0) ");
$xT = new cTabla($sql);
//setLog($sql);
$xT->OButton("TR.Dictaminar", "jsModificarEstatus(_REPLACE_ID_)", $xT->ODicIcons()->REPORTE);
$xT->OButton("TR.Modificar", "jsEditarRiesgo(_REPLACE_ID_)", $xT->ODicIcons()->EDITAR);
//$xT->addTool(1);
$xT->setKeyField($xAl->getKey());
$xT->setKeyTable($xAl->get());
return $xT->Show();
}
示例11: jsaGetListadoDeAvisos
function jsaGetListadoDeAvisos($tipo, $fecha_inicial, $fecha_final, $todas)
{
$tipo = $tipo == SYS_TODAS ? false : $tipo;
$xT = new cTipos();
$xF = new cFecha();
$xAl = new cAml_alerts();
$xlistas = new cSQLListas();
$xBtn = new cHButton();
$xImg = new cHImg();
//
$ByEstado = $xT->cBool($todas) == true ? "" : " AND `estado_en_sistema`= " . SYS_UNO;
$ByEstado .= setNoMenorQueCero($tipo) <= 0 ? "" : " AND (`aml_risk_catalog`.`tipo_de_riesgo` ={$tipo}) ";
$fecha_inicial = $xF->getFechaISO($fecha_inicial);
$fecha_final = $xF->getFechaISO($fecha_final);
$sql = $xlistas->getListadoDeAlertas(false, false, false, false, $ByEstado);
$xT = new cTabla($sql);
$xT->setWithMetaData();
$xT->OButton("TR.Dictaminar", "jsModificarEstatus(_REPLACE_ID_)", $xT->ODicIcons()->REPORTE);
$xT->OButton("TR.Panel", "jsToPanel(_REPLACE_ID_)", $xT->ODicIcons()->EJECUTAR);
$xT->setKeyField($xAl->getKey());
$xT->setKeyTable($xAl->get());
return $xT->Show();
}
示例12: jsaGetCobranza
function jsaGetCobranza($empresa, $idperiodo)
{
$xL = new cSQLListas();
$xF = new cFecha();
$sql = $xL->getListadoDeCobranza($idperiodo, SYS_UNO);
//setLog($sql);
//fecha de ministracion anterior al
$xT = new cTabla($sql);
$xT->setKeyField("numero_solicitud");
$xT->setKey(2);
$xT->setWidthTool("180px");
$xT->setKeyTable("creditos_solicitud");
$xT->setEventKey("jsGetRecibosByCredito");
$xT->addEspTool("<div class='coolCheck'><input type='checkbox' id='chk_REPLACE_ID_' onclick='jsSetAlimentarCobros(this, _REPLACE_ID_)' /><label for='chk_REPLACE_ID_'></label></div>");
$xT->addEspTool("<img src='../images/order.png' class='x24' onclick='getEstadoDeCuenta(_REPLACE_ID_)' />");
$xT->addEspTool("<img src='../images/calendar.png' class='x24' onclick='getPlanDePagos(_REPLACE_ID_)' />");
$xT->addEspTool("<img src='../images/view.png' class='x24' onclick='setOcultar(_REPLACE_ID_)' />");
/*$subSQL = "SELECT CONCAT(`socios_memo`.`fecha_memo`, '|', `socios_memo`.`texto_memo`) AS 'memo' FROM `socios_memo` WHERE (`socios_memo`.`numero_solicitud` =" . HP_REPLACE_ID . ") AND (`socios_memo`.`tipo_memo` =11) ORDER BY `socios_memo`.`fecha_memo` ";
$xT->addSubQuery($subSQL);*/
$xT->setWithMetaData();
$xT->setFootSum(array(3 => "letra", 6 => "monto"));
return $xT->Show();
}
开发者ID:Cywaithaka,项目名称:S.A.F.E.-Open-Source-Microfinance-Suite,代码行数:23,代码来源:orden_de_cobranza.frm.php
示例13: jsaGetListadoCierres
function jsaGetListadoCierres($fecha)
{
$xLi = new cSQLListas();
$xF = new cFecha();
$fecha = $xF->getFechaISO($fecha);
$sqlList = $xLi->getListadoDeRecibos(12, "", "", $fecha);
$xTab = new cTabla($sqlList);
$xTab->OButton("TR.Reporte", "var xR = new RecGen(); xR.reporte(" . HP_REPLACE_ID . ")", $xTab->ODicIcons()->REPORTE);
$xTab->OButton("TR.Panel", "var xR = new RecGen(); xR.panel(" . HP_REPLACE_ID . ")", $xTab->ODicIcons()->CONTROL);
$xBtn = new cHButton();
$xSel = new cHSelect();
$xCA = $xSel->getListaDeCajasAbiertas();
$T2 = new cTabla($xCA->getSQL() . " AND `tesoreria_cajas`.`fecha_inicio` = '{$fecha}' ");
$T2->addEspTool($xBtn->getBasic("", "jsToCerrarCorte('{$fecha}')", "bloquear", "idcerrar", true));
$html = $xTab->Show("TR.LISTADO DE CIERRES");
if (MODULO_CAJA_ACTIVADO == true) {
$html .= $T2->Show("TR.Cajas Abiertas");
$itemsAbier = $T2->getRowCount();
$html .= "<input type='hidden' id='idabiertas' value='{$itemsAbier}' />";
} else {
$html .= "<input type='hidden' id='idabiertas' value='0' />";
}
return $html;
}
示例14: VALUES
</table>
<input type="submit" value="Enviar">
</form>
<?php
$description = $_POST["descripcion"];
$id = $_POST["id"];
$sqlp = "SELECT idcreditos_destinos AS 'Identificador', descripcion_destinos AS 'Descripcion' FROM creditos_destinos";
if ($description) {
$sql = "INSERT INTO creditos_destinos(idcreditos_destinos, descripcion_destinos, destino_credito) VALUES ({$id}, '{$description}', {$id})";
my_query($sql);
echo "<p class='aviso'>EL REGISTRO SE EFECTUO CORRECTAMENTE</p><hr></hr>";
}
$mtbl = new cTabla($sqlp);
$mtbl->addTool(1);
$mtbl->addTool(2);
echo $mtbl->Show();
?>
</body>
<script >
function actualizame(id) {
url = "../utils/frm8db7028bdcdf054882ab54f644a9d36b.php?t=creditos_destinos&f=idcreditos_destinos=" + id;
myurl = window.open(url);
myurl.focus();
}
function eliminame(id) {
var sURL = "../utils/frm9d23d795f8170f495de9a2c3b251a4cd.php?t=creditos_destinos&f=idcreditos_destinos=" + id;
delme = window.open( sURL, "window", "width=300,height=300,scrollbars=yes,dependent");
delme.focus();
}
开发者ID:Cywaithaka,项目名称:S.A.F.E.-Open-Source-Microfinance-Suite,代码行数:31,代码来源:frmadddestinoscreditos.php
示例15: getRawHeader
include_once "../core/core.fechas.inc.php";
include_once "../libs/sql.inc.php";
$oficial = elusuario($iduser);
$cuenta_inicial = $_GET["ci"];
$cuenta_final = $_GET["cf"];
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title></title>
</head>
<link href="../css/reporte.css" rel="stylesheet" type="text/css">
<body onLoad="javascript:window.print();">
<!-- -->
<?php
echo getRawHeader();
//diario
$sqlsdo = "SELECT\n\t`contable_catalogo`.`numero`,\n\t/*`contable_catalogo`.`nombre`, */\n\t`contable_saldos`.`ejercicio`,\n\t`contable_saldos`.`tipo`,\n\t`contable_saldos`.`saldo_inicial`,\n\t`contable_saldos`.`imp1`,\n\t`contable_saldos`.`imp2`,\n\t`contable_saldos`.`imp3`,\n\t`contable_saldos`.`imp5`,\n\t`contable_saldos`.`imp6`,\n\t`contable_saldos`.`imp7`,\n\t`contable_saldos`.`imp8`,\n\t`contable_saldos`.`imp9`,\n\t`contable_saldos`.`imp10`,\n\t`contable_saldos`.`imp11`,\n\t`contable_saldos`.`imp12` \nFROM\n\t`contable_catalogo` `contable_catalogo` \n\t\tINNER JOIN `contable_saldos` `contable_saldos` \n\t\tON `contable_catalogo`.`numero` = `contable_saldos`.`cuenta` \nWHERE \n\t`contable_saldos`.cuenta = {$cuenta_inicial}";
$tbl = new cTabla($sqlsdo);
echo $tbl->Show();
echo " <br />\n<br />\n<br />\n<br />\n<br /> ";
echo $tbl->getValorCampo("nombre");
/* $rs = mysql_query($sqlsdo);
while($rw = mysql_fetch_array($rs)){
} */
echo getRawFooter();
?>
</body>
</html>
开发者ID:Cywaithaka,项目名称:S.A.F.E.-Open-Source-Microfinance-Suite,代码行数:31,代码来源:rpt_saldos_por_cuenta.php