我需要有关角形材料表的帮助,我创建了一些字段,用户可以在这些字段中递增或递减表中的乘积单位,从而进行乘法运算。产品的价格还可以,但是getTotalCost()函数不会根据产品的价格动态变化。我该如何定义?
<table mat-table [dataSource]="dataSource " class="table table-striped" matSort>
<!-- Name Column -->
<ng-container matColumnDef="referencia">
<th mat-header-cell *matHeaderCellDef mat-sort-header> Referência </th>
<td mat-cell *matCellDef="let element">{{element.produto.referencia}} </td>
</ng-container>
<!-- Position Column -->
<ng-container matColumnDef="codigo">
<th mat-header-cell *matHeaderCellDef mat-sort-header>Código </th>
<td mat-cell *matCellDef="let element"> {{element.produto.codigo}} </td>
</ng-container>
<!-- Weight Column -->
<ng-container matColumnDef="descricao">
<th mat-header-cell *matHeaderCellDef mat-sort-header>Descrição</th>
<td mat-cell *matCellDef="let element"> {{element.produto.descricao}} </td>
</ng-container>
<!-- Symbol Column -->
<ng-container matColumnDef="nomeFantasia">
<th mat-header-cell *matHeaderCellDef mat-sort-header> Fabricante </th>
<td mat-cell *matCellDef="let element"> {{element.produto.NomeFantasia}} </td>
</ng-container>
<ng-container matColumnDef="precoVendaPraticado">
<th mat-header-cell *matHeaderCellDef mat-sort-header>Preço </th>
<td mat-cell *matCellDef="let element"> {{element.produto.precoVendaPraticado * obterQtdeItem(element.produto.codigo)| currency}} </td>
</ng-container>
<ng-container matColumnDef="precoPromocao">
<th mat-header-cell *matHeaderCellDef mat-sort-header>Preço promoção</th>
<td mat-cell *matCellDef="let element"> {{element.produto.precoPromocao}} </td>
</ng-container>
<ng-container matColumnDef="precoSugestaoVenda">
<th mat-header-cell *matHeaderCellDef mat-sort-header>Preço sugestão venda</th>
<td mat-cell *matCellDef="let element"> {{element.produto.precoSugestaoVenda}} </td>
</ng-container>
<ng-container matColumnDef="estoque">
<th mat-header-cell *matHeaderCellDef mat-sort-header>Estoque</th>
<td mat-cell *matCellDef="let element">
{{element.estoque}}
</td>
</ng-container>
<ng-container matColumnDef="unidadeMedida">
<th mat-header-cell *matHeaderCellDef mat-sort-header> Un. medida </th>
<td mat-cell *matCellDef="let element"> {{element.produto.unidadeMedida.unidadeMedida}} </td>
</ng-container>
<ng-container matColumnDef="quantidade"0>
<th mat-header-cell *matHeaderCellDef mat-sort-header>Quantidade</th>
<td mat-cell *matCellDef="let element">
<button mat-raised-button class="btn-xs space-button">
<mat-icon (click)="decrementarQuantidade(element.produto)">remove</mat-icon>
</button>
<mat-form-field class="col-md-4 col-xs-5" appearance="outline" style="font-size:10.7px;" appearance="outline">
<input matInput [value]="obterQtdeItem(element.produto.codigo)" min="0" style="font-size:11px;">
</mat-form-field>
<button mat-raised-button class="btn-xs space-button" (click)="incrementarQuantidade(element.produto)">
<mat-icon>add</mat-icon>
</button>
<button mat-raised-button class="btn-xs btn-danger space-button-button-small">
<mat-icon (click)="removerDoCarrinho(element.produto.codigo)">clear</mat-icon>
</button>
<!--mat-icon *ngIf="incluidoNoCarrinho(element.produto.codigo)" class="text-success pull-right">add_shopping_cart</!--mat-icon-->
</td>
</ng-container>
<tr mat-header-row *matHeaderRowDef="displayedColumns; sticky: true"></tr>
<tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr>
</table>
getTotalCost() {
return this.pedido.itens.map(t => t.produto.precoVendaPraticado).reduce((acc, value) => acc + value, 0);
}
答案 0 :(得分:0)
通过将商品数量乘以商品价格解决了问题。
getTotalCost(){
return this.pedido.itens.map(t => t.produto.precoVendaPraticado * this.obterQtdeItem(t.produto.codigo)).reduce((acc, value) => acc + value, 0);
}