|
|
@@ -2,14 +2,13 @@
|
|
|
|
|
|
@if (!isLoading) {
|
|
|
<div class="component-main-shopping animated fadeIn">
|
|
|
- <header class="header-component">
|
|
|
- <div class="seccion-header">
|
|
|
- <app-btn-navigate [navigate]="'goback'" [widthPosition]="'0'" />
|
|
|
- </div>
|
|
|
+ <div class="header-component">
|
|
|
+
|
|
|
+ <app-btn-navigate navigate="goback" class="seccion-header" />
|
|
|
<div class="seccion-header title">
|
|
|
- <h2> Detalles de la Orden de Compra - {{ this.numberOrder }} </h2>
|
|
|
+ <h2> Detalles de la orden de compra - {{ this.numberOrder }} </h2>
|
|
|
</div>
|
|
|
- <div class="seccion-header" style="display: flex; flex-direction: row-reverse;">
|
|
|
+ <div class="seccion-header" style="display: flex; flex-direction: row-reverse; align-items: center;">
|
|
|
<app-btn-resize
|
|
|
class="ml-8"
|
|
|
(click)="openDialog('VIEW_PROVIDER')"
|
|
|
@@ -20,11 +19,11 @@
|
|
|
[icon]="'person'"
|
|
|
/>
|
|
|
</div>
|
|
|
- </header>
|
|
|
+ </div>
|
|
|
<main class="content-component">
|
|
|
<main class="content-subcomponent-2 mat-elevation-z2">
|
|
|
<aside class="content-left-subcomponent">
|
|
|
- <h2 class="subtitle">Información del Despacho</h2>
|
|
|
+ <h2 class="subtitle">Información del despacho</h2>
|
|
|
<div class="override_content_flex">
|
|
|
<div class="col-flex-1">
|
|
|
<mat-form-field appearance="outline" class="w-100">
|
|
|
@@ -56,7 +55,7 @@
|
|
|
<div class="content-state-artitle">
|
|
|
<aside class="content-left mat-elevation-z2">
|
|
|
<div class="content-subcomponent-1 mat-elevation-z2">
|
|
|
- <h2 class="subtitle">Lista de Artículos</h2>
|
|
|
+ <h2 class="subtitle">Lista de artículos</h2>
|
|
|
<table mat-table [dataSource]="dataSourceArtitles" style="overflow: auto; width: 920px;">
|
|
|
<ng-container matColumnDef="IMAGEN">
|
|
|
<th mat-header-cell *matHeaderCellDef> Imagen </th>
|
|
|
@@ -71,17 +70,17 @@
|
|
|
</ng-container>
|
|
|
|
|
|
<ng-container matColumnDef="INAR_MODE">
|
|
|
- <th mat-header-cell *matHeaderCellDef> Nombre del Modelo </th>
|
|
|
+ <th mat-header-cell *matHeaderCellDef> Nombre del modelo </th>
|
|
|
<td mat-cell *matCellDef="let element"> {{element.INAR_MODE}} </td>
|
|
|
</ng-container>
|
|
|
|
|
|
<ng-container matColumnDef="INAR_CODI">
|
|
|
- <th mat-header-cell *matHeaderCellDef> Código del Modelo </th>
|
|
|
+ <th mat-header-cell *matHeaderCellDef> Código del modelo </th>
|
|
|
<td mat-cell *matCellDef="let element"> {{element.INAR_CODI}} </td>
|
|
|
</ng-container>
|
|
|
|
|
|
<ng-container matColumnDef="ARSE_PRTO">
|
|
|
- <th mat-header-cell *matHeaderCellDef> Precio Unitario </th>
|
|
|
+ <th mat-header-cell *matHeaderCellDef> Precio unitario </th>
|
|
|
<td mat-cell *matCellDef="let element">
|
|
|
$ {{ element.INAR_PREC }} {{ element.INAR_COMO }}
|
|
|
</td>
|
|
|
@@ -93,7 +92,7 @@
|
|
|
</ng-container>
|
|
|
|
|
|
<ng-container matColumnDef="INAR_COMO">
|
|
|
- <th mat-header-cell *matHeaderCellDef> Precio Total </th>
|
|
|
+ <th mat-header-cell *matHeaderCellDef> Precio total </th>
|
|
|
<td mat-cell *matCellDef="let element">
|
|
|
$ {{element.CANTIDAD * element.INAR_PREC}} {{ element.INAR_COMO }}
|
|
|
</td>
|
|
|
@@ -119,7 +118,7 @@
|
|
|
</div>
|
|
|
</aside>
|
|
|
<section class="content-right mat-elevation-z2">
|
|
|
- <h2 class="subtitle">Estados del Pedido</h2>
|
|
|
+ <h2 class="subtitle">Estados del pedido</h2>
|
|
|
<table mat-table [dataSource]="dataSourceState">
|
|
|
<ng-container matColumnDef="HIOR_ESOR">
|
|
|
<th mat-header-cell *matHeaderCellDef> Estado </th>
|
|
|
@@ -129,7 +128,7 @@
|
|
|
</ng-container>
|
|
|
|
|
|
<ng-container matColumnDef="HIOR_FERE">
|
|
|
- <th mat-header-cell *matHeaderCellDef> Fecha de Registro </th>
|
|
|
+ <th mat-header-cell *matHeaderCellDef> Fecha de registro </th>
|
|
|
<td mat-cell *matCellDef="let element"> {{ resourcesService.formatDate(element.HIOR_FERE, element.HIOR_FEMO) }} </td>
|
|
|
</ng-container>
|
|
|
|