Merge pull request 'hotfix itemWaste' (!1363) from hotfix-itemWaste-openOtherTab into master
gitea/salix/pipeline/head This commit looks good Details

Reviewed-on: #1363
This commit is contained in:
Alexandre Riera 2023-03-03 09:01:30 +00:00
commit f9f58c28d5
1 changed files with 3 additions and 3 deletions

View File

@ -33,16 +33,16 @@
</vn-icon-button>
</vn-td>
</vn-tr>
<vn-tr ng-repeat="waste in detail.lines" class="clickable vn-tr"
<a ng-repeat="waste in detail.lines" class="clickable vn-tr"
ui-sref="item.waste.detail({buyer: waste.buyer, family: waste.family})"
ng-class="{'hidden': !$ctrl.wasteConfig[detail.buyer].hidden}">
ng-show="$ctrl.wasteConfig[detail.buyer].hidden">
<vn-td></vn-td>
<vn-td>{{::waste.family}}</vn-td>
<vn-td number>{{::(waste.percentage / 100) | percentage: 2}}</vn-td>
<vn-td number>{{::waste.dwindle | currency: 'EUR'}}</vn-td>
<vn-td number>{{::waste.total | currency: 'EUR'}}</vn-td>
<vn-td shrink></vn-td>
</vn-tr>
</a>
</vn-tbody>
</vn-table>
</vn-card>