Стол угловой материал getTotalCost () динамический - PullRequest
0 голосов
/ 07 мая 2019

Мне нужна помощь с таблицей углового материала, я создал поля, в которых пользователь может увеличивать или уменьшать единицу товара в таблице, таким образом делая умножение. Цена продукта в порядке, но функция 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);  
  }

1 Ответ

0 голосов
/ 07 мая 2019

Проблема была решена путем умножения количества предметов на цену предмета.

 getTotalCost(){
return this.pedido.itens.map(t => t.produto.precoVendaPraticado * this.obterQtdeItem(t.produto.codigo)).reduce((acc, value) => acc + value, 0);  

}

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...