示例#1
0
 case 'editarReporte':
     require_once "ActionReporte.php";
     $o_ActionReporte = new ActionReporte();
     $resultado = $o_ActionReporte->editarReporte($parametros["p2"]);
     break;
 case 'listaEtiqueta':
     require_once "ActionReporte.php";
     header("Content-type: text/xml");
     $o_ActionReporte = new ActionReporte();
     $resultado = $o_ActionReporte->listaEtiqueta($parametros["p2"]);
     break;
 case 'listaAtributos':
     require_once "ActionReporte.php";
     header("Content-type: text/xml");
     $o_ActionReporte = new ActionReporte();
     $resultado = $o_ActionReporte->listaAtributos();
     break;
 case 'tipoAtributoFormato':
     require_once "ActionReporte.php";
     $o_ActionReporte = new ActionReporte();
     $datos = array();
     $datos["idAtributo"] = $parametros["p2"];
     $opt = $parametros["p3"];
     $resultado = $o_ActionReporte->abrirTipoAtributoFormato($datos, $opt);
     break;
 case 'grabarAtributoCombo':
     require_once "ActionReporte.php";
     $o_ActionReporte = new ActionReporte();
     $datos = array();
     $datosItemCombo = array();
     $datos["p1"] = $parametros["p2"];