Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
F
formularioConformidad
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Fernando José Palomino Aquino
formularioConformidad
Commits
7af48ef3
Commit
7af48ef3
authored
Feb 04, 2025
by
Fernando José Palomino Aquino
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[ADD] CONDICION PARA REGISTRO DE CONFORMIDAD
parent
a4fdd210
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
conformidad.componente.html
src/app/pages/conformidad/conformidad.componente.html
+2
-2
conformidad.componente.ts
src/app/pages/conformidad/conformidad.componente.ts
+2
-2
No files found.
src/app/pages/conformidad/conformidad.componente.html
View file @
7af48ef3
...
@@ -375,7 +375,7 @@
...
@@ -375,7 +375,7 @@
<mat-form-field
class=
"md:w-1/2 lg:w-1/3"
appearance=
"outline"
floatLabel=
"always"
>
<mat-form-field
class=
"md:w-1/2 lg:w-1/3"
appearance=
"outline"
floatLabel=
"always"
>
<mat-label>
Ingresar porcentaje de avance
</mat-label>
<mat-label>
Ingresar porcentaje de avance
</mat-label>
<input
soloNumeros=
"entero"
type=
"text"
placeholder=
"Avance realizado"
matInput
formControlName=
"avanceTrabajo"
maxlength=
"3"
>
<input
soloNumeros=
"entero"
type=
"text"
placeholder=
"Avance realizado
1 - 100
"
matInput
formControlName=
"avanceTrabajo"
maxlength=
"3"
>
</mat-form-field>
</mat-form-field>
</div>
</div>
...
@@ -443,7 +443,7 @@
...
@@ -443,7 +443,7 @@
</div>
</div>
<div>
<div>
<div><b
class=
"md:text-[1rem] text-black/60"
>
FIRMA DEL ENCARGADO:
</b></div>
<div><b
class=
"md:text-[1rem] text-black/60"
>
FIRMA DEL ENCARGADO:
(opcional)
</b></div>
<div>
<div>
<button
mat-fab
class=
"!w-full"
[
color
]="'
blue
'"
(
click
)="
mostrarFirma
({
accion
:
1
})"
>
<button
mat-fab
class=
"!w-full"
[
color
]="'
blue
'"
(
click
)="
mostrarFirma
({
accion
:
1
})"
>
<mat-label>
SUBIR FIRMA
</mat-label>
<mat-label>
SUBIR FIRMA
</mat-label>
...
...
src/app/pages/conformidad/conformidad.componente.ts
View file @
7af48ef3
...
@@ -829,7 +829,7 @@ export class ConformidadComponent implements AfterViewInit {
...
@@ -829,7 +829,7 @@ export class ConformidadComponent implements AfterViewInit {
const
archivosEvidencias
=
this
.
archivosEvidencia
;
const
archivosEvidencias
=
this
.
archivosEvidencia
;
let
contadorEP
=
1
;
let
contadorEP
=
1
;
let
contadorES
=
1
;
let
contadorES
=
1
;
let
constadorAT
C
=
1
;
let
constadorAT
S
=
1
;
let
contadorFirma
=
1
;
let
contadorFirma
=
1
;
let
contadorExtras
=
1
;
let
contadorExtras
=
1
;
const
datosMaterialSobrante
=
this
.
ordenSalidaComponent
?.
datos_materialSobrante
?.
get
(
'descMaterial'
)?.
value
?
this
.
ordenSalidaComponent
?.
datos_materialSobrante
?.
get
(
'descMaterial'
)?.
value
:
''
;
const
datosMaterialSobrante
=
this
.
ordenSalidaComponent
?.
datos_materialSobrante
?.
get
(
'descMaterial'
)?.
value
?
this
.
ordenSalidaComponent
?.
datos_materialSobrante
?.
get
(
'descMaterial'
)?.
value
:
''
;
...
@@ -1004,7 +1004,7 @@ export class ConformidadComponent implements AfterViewInit {
...
@@ -1004,7 +1004,7 @@ export class ConformidadComponent implements AfterViewInit {
tipoEvidencia
:
item
.
tipoEvidencia
,
tipoEvidencia
:
item
.
tipoEvidencia
,
nombreArchivo
:
(
item
.
tipoEvidencia
===
1
)
?
'EVIDENCIA_PROBLEMA_'
+
codigoConformidad
+
"_"
+
(
contadorEP
++
)
:
nombreArchivo
:
(
item
.
tipoEvidencia
===
1
)
?
'EVIDENCIA_PROBLEMA_'
+
codigoConformidad
+
"_"
+
(
contadorEP
++
)
:
(
item
.
tipoEvidencia
===
2
)
?
'EVIDENCIA_SOLUCION_'
+
codigoConformidad
+
"_"
+
(
contadorES
++
)
:
(
item
.
tipoEvidencia
===
2
)
?
'EVIDENCIA_SOLUCION_'
+
codigoConformidad
+
"_"
+
(
contadorES
++
)
:
(
item
.
tipoEvidencia
===
3
)
?
'EVI
NDENCIA_ATC'
+
codigoConformidad
+
"_"
+
(
constadorATC
++
)
:
(
item
.
tipoEvidencia
===
3
)
?
'EVI
DENCIA_ATS'
+
codigoConformidad
+
"_"
+
(
constadorATS
++
)
:
(
item
.
tipoEvidencia
===
4
)
?
'FIRMA'
+
codigoConformidad
+
"_"
+
(
contadorFirma
++
)
:
'DATO_EXTRA'
+
codigoConformidad
+
"_"
+
(
contadorExtras
++
)
(
item
.
tipoEvidencia
===
4
)
?
'FIRMA'
+
codigoConformidad
+
"_"
+
(
contadorFirma
++
)
:
'DATO_EXTRA'
+
codigoConformidad
+
"_"
+
(
contadorExtras
++
)
};
};
});
});
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment