Fixed errors with price in all documents
This commit is contained in:
@@ -1,10 +0,0 @@
|
||||
import {Component} from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-product-table',
|
||||
imports: [],
|
||||
templateUrl: './product-table.html',
|
||||
styleUrl: './product-table.css',
|
||||
})
|
||||
export class ProductTable {
|
||||
}
|
||||
@@ -16,7 +16,7 @@
|
||||
<tr>
|
||||
<td>{{ purchaseOrder.id }}</td>
|
||||
<td>{{ purchaseOrder.purchaseConditions }}</td>
|
||||
<td>Fournisseur ???</td>
|
||||
<td>{{ purchaseOrder.supplierName }}</td>
|
||||
<td>
|
||||
<app-modal-button type="link" name="Voir les produits" size="45%">
|
||||
<div style="max-height: 400px; overflow-y: auto;">
|
||||
@@ -36,7 +36,7 @@
|
||||
<tr>
|
||||
<td>{{ product.productName }}</td>
|
||||
<td>{{ product.productReference }}</td>
|
||||
<td>{{ product.productPrice }}</td>
|
||||
<td>{{ product.productPrice }} €</td>
|
||||
<td>{{ product.quantity }}</td>
|
||||
<td>
|
||||
<div style="justify-content: center; display: flex">
|
||||
|
||||
@@ -36,7 +36,7 @@
|
||||
<tr>
|
||||
<td>{{ product.productReference }}</td>
|
||||
<td>{{ product.productName }}</td>
|
||||
<td>Price ???</td>
|
||||
<td>{{ product.productPrice }} €</td>
|
||||
<td>{{ product.quantity }}</td>
|
||||
<td>
|
||||
<div style="justify-content: center; display: flex">
|
||||
|
||||
Reference in New Issue
Block a user