當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Documento::obtenerJustificacionesEscaneadas方法代碼示例

本文整理匯總了PHP中Documento::obtenerJustificacionesEscaneadas方法的典型用法代碼示例。如果您正苦於以下問題:PHP Documento::obtenerJustificacionesEscaneadas方法的具體用法?PHP Documento::obtenerJustificacionesEscaneadas怎麽用?PHP Documento::obtenerJustificacionesEscaneadas使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Documento的用法示例。


在下文中一共展示了Documento::obtenerJustificacionesEscaneadas方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: DespacharListarDestino


//.........這裏部分代碼省略.........
                ?>
&th=<?php 
                echo $row_org["tipo_historial"];
                ?>
"><img src="public_root/imgs/b_drop.png" alt="Eliminar" width="16" height="16" border="0"></a>
		<?php 
            } else {
                ?>
				<img src="public_root/imgs/b_drop_d.png" alt="Eliminar" width="16" height="16" border="0">
		<?php 
            }
            //Fin del if de eliminar
            ?>
            	
			<?php 
            $observacion = trim($row_org['observacion']);
            if (!empty($observacion)) {
                ?>
                   <a href="javascript:VerDetalleObservacion(<?php 
                echo $cont;
                ?>
)">
                     <img src="public_root/imgs/b_search.png" width="16" height="16" border="0" alt="Ver Detalle" />                   </a>
                <?php 
            } else {
                ?>
                   <img src="public_root/imgs/b_search_d.png" width="16" height="16" border="0" alt="Ver Detalle" />
                <?php 
            }
            ?>
				
            	<?php 
            $tipo = $row_org['tipo_historial'];
            if ($tipo == 2 || $tipo == 3 || $tipo == 4) {
                $doc_archivo = new Documento($ids);
                $archivo = array();
                if ($tipo == 2 || $tipo == 4) {
                    $archivo = $doc_archivo->obtenerJustificacionesEscaneadas($idp);
                } else {
                    $archivo = $doc_archivo->obtenerBorradoresEscaneados($idp);
                }
                if (count($archivo) > 0) {
                    ?>
                   	<a href="javascript:void(0)" onclick="ver_mas_adjuntos($(this))">
                     		<img src="public_root/imgs/attach.png" width="16" height="16" border="0" alt="Ver Archivo" />	                    </a>
					<div id="doc_adjuntos<?php 
                    echo $cont;
                    ?>
" class="doc_adjuntos">
						<p>Documentos Adjuntos : </p>
						<?php 
                    for ($i = 0; $i < count($archivo); $i++) {
                        ?>
								<p><a href="<?php 
                        echo $tipo == 2 || $tipo == 4 ? "Justificados/" . rawurlencode($archivo[$i]) : "Archivados/" . rawurlencode($archivo);
                        ?>
"  target="_blank"><?php 
                        echo $archivo[$i];
                        ?>
</a></p>
						<?php 
                    }
                    ?>
					</div>		
                <?php 
                } else {
                    ?>
                   <img src="public_root/imgs/attach_d.png" width="16" height="16" border="0" alt="Ver Archivo"/>
                <?php 
                }
            } else {
                ?>
                    <img src="public_root/imgs/attach_d.png" width="16" height="16" border="0" alt="Ver Archivo"/>
                <?php 
            }
            ////Fin del if para file.gif
            ?>
			</div>        </td>
      </tr>
	  <tr>
		<td colspan="7" align="center">
			<div style="display:none; text-align:left;" id="detalle_observacion<?php 
            echo $cont;
            ?>
">
					<?php 
            echo $observacion;
            ?>
			</div>
		</td>
	</tr>
     <?php 
        }
        //Fin del While
        ?>
  </tr>    
</table> 

 <?php 
    }
開發者ID:electromanlord,項目名稱:sgd,代碼行數:101,代碼來源:areas_acceso_registro.cls.php

示例2: elseif

    } elseif ($his_base[$h]['tipo'] == 2) {
        //Usuario a su Area
        $origen = $his_base[$h]['usuario']->GetNombreCompleto();
        $destino = $his_base[$h]['area_destino']->GetNombre();
        $archivo = $doc->obtenerAprobacionesEscaneadas($his_base[$h]['id']);
    } elseif ($his_base[$h]['tipo'] == 3) {
        //Usuario a Usuario en borradores
        $origen = $his_base[$h]['usuario']->GetNombreCompleto();
        $destino = $his_base[$h]['destino']->GetNombreCompleto();
        $archivo = $doc->obtenerBorradoresEscaneados($his_base[$h]['id']);
        $clase = "class='filas'";
    } elseif ($his_base[$h]['tipo'] == 4 || $his_base[$h]['tipo'] == 5) {
        //Usuario a Usuario en historial de atencion
        $origen = $his_base[$h]['usuario']->GetNombreCompleto();
        $destino = $his_base[$h]['destino']->GetNombreCompleto();
        $archivo = $doc->obtenerJustificacionesEscaneadas($his_base[$h]['id']);
    } elseif ($his_base[$h]['tipo'] == 6) {
        //Es de MESA a AREA
        $origen = "DESPACHO GENERAL";
        $destino = $his_base[$h]['area_destino']->GetNombre();
    } elseif ($his_base[$h]['tipo'] == 7) {
        //Es de AREA a MESA
        $origen = $his_base[$h]['area']->GetNombre();
        $destino = "DESPACHO GENERAL";
    }
    ?>
		<tr <?php 
    echo $clase;
    ?>
>
			<td  align="center" ><?php 
開發者ID:electromanlord,項目名稱:sgd,代碼行數:31,代碼來源:detalle_documento.php

示例3: DespacharListarDestino


//.........這裏部分代碼省略.........
</div></td>
        <td><div align="center">
            <?php 
            if ($row_org['original_historial_atencion'] == '1') {
                echo 'ORIGINAL';
            } else {
                echo 'COPIA';
            }
            ?>
            </div>
        </td>
        <td>
            <div align="center">				
                <?php 
            if ($row_org['id_area'] == $_SESSION['session'][5] && $row_org["tipo_historial_atencion"] != 2) {
                //Yo lo envie lo puedo eliminar
                ?>
                    <a href="areas_acceso_registro.php?opcion=eliminar&ids=<?php 
                echo $ids;
                ?>
&idp=<?php 
                echo $idp;
                ?>
"><img src="imgs/b_drop.png" alt="Eliminar" width="16" height="16" border="0"></a>
                <?php 
            } else {
                ?>
                    <img src="imgs/b_drop.png" alt="Eliminar" width="16" height="16" border="0">
                <?php 
            }
            //Fin del if de eliminar
            ?>
            	
            	<?php 
            if ($row_org['tipo_historial_atencion'] != 2) {
                $observacion = trim($row_org['observacion_historial_atencion']);
                if (!empty($observacion)) {
                    ?>
                   <a href="javascript:VerDetalleObservacion(<?php 
                    echo $cont;
                    ?>
)">
                     <img src="public_root/imgs/b_search.png" width="16" height="16" border="0" alt="Ver Detalle" />
                   </a>
                <?php 
                } else {
                    ?>
                   <img src="public_root/imgs/b_search.png" width="16" height="16" border="0" alt="Ver Detalle" />
                <?php 
                }
            }
            //Fin del if para search.png
            ?>
				
            	<?php 
            if ($row_org['tipo_historial_atencion'] == 2) {
                $doc_archivo = new Documento($ids);
                $archivo = $doc_archivo->obtenerJustificacionesEscaneadas($idp);
                if (!empty($archivo)) {
                    ?>
                   		<a href="Justificados/<?php 
                    echo $archivo;
                    ?>
">
                     		<img src="public_root/imgs/file.gif" width="16" height="16" border="0" alt="Ver Archivo" />
	                    </a>
                <?php 
                } else {
                    ?>
                   <img src="public_root/imgs/file.gif" width="16" height="16" border="0" alt="Ver Archivo" />
                <?php 
                }
            }
            //Fin del if para file.gif
            ?>
			</div>			
        </td>
      </tr>
	  <tr>
		<td colspan="7" align="center">
			<div style="display:none" id="detalle_observacion<?php 
            echo $cont;
            ?>
">
					<?php 
            echo $observacion;
            ?>
			</div>
		</td>
	</tr>
     <?php 
        }
        //Fin del While
        ?>
  </tr>    

</table> 

 <?php 
    }
開發者ID:electromanlord,項目名稱:sgd,代碼行數:101,代碼來源:areas_acceso_registro.cls_antes_1_4.php


注:本文中的Documento::obtenerJustificacionesEscaneadas方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。