This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Cliente { | |
private String nombre; | |
private Date fechaRegistro; | |
public String getNombre() { | |
return nombre; | |
} | |
public void setNombre(String nombre) { | |
this.nombre = nombre; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="es"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Dashboard de APIs</title> | |
<style> | |
* { | |
margin: 0; | |
padding: 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public onPrintReceiptPdf(doc: any, item: any) { | |
doc.loading = true; | |
const idsDArray = item?.ids_deposito?item?.ids_deposito.split('|').map(Number):[]; | |
const idsODArray = item?.ids_odeposito?item?.ids_odeposito.split('|').map(Number):[]; | |
if (idsDArray.length==0 && idsODArray.length==0){ | |
doc.loading = false; | |
return; | |
} | |
const params = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public getYears() { | |
this.loadingTable = true; | |
this.yearsService.getAll$() | |
.pipe( | |
map(resp => resp.data), | |
finalize(() => { | |
this.loadingTable = false; | |
}) | |
) | |
.subscribe({ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--CREAR UNA BASE DE DATOS EN ORACLE | |
--Nombre:dg | |
--PASO 01 | |
ALTER SESSION SET "_ORACLE_SCRIPT"=TRUE; | |
--PASO 02 | |
CREATE USER MATRICULA IDENTIFIED BY "matricula" | |
DEFAULT TABLESPACE "USERS" | |
TEMPORARY TABLESPACE "TEMP"; | |
--PASO 03 | |
ALTER USER MATRICULA QUOTA UNLIMITED ON USERS; |
OlderNewer