42 lines
1.8 KiB
HTML
42 lines
1.8 KiB
HTML
<vn-crud-model auto-load="true"
|
|
vn-id="model"
|
|
url="Items/getWasteByWorker"
|
|
data="details">
|
|
</vn-crud-model>
|
|
<vn-data-viewer model="model">
|
|
<section ng-repeat="detail in details" class="vn-pa-md">
|
|
<vn-horizontal class="header">
|
|
<h5><span translate>{{detail.buyer}}</span></h5>
|
|
<vn-none>
|
|
<vn-icon
|
|
ng-class="{'hidden': !$ctrl.wasteConfig[detail.buyer].hidden}"
|
|
class="arrow pointer"
|
|
icon="keyboard_arrow_up"
|
|
vn-tooltip="Minimize/Maximize"
|
|
ng-click="$ctrl.toggleHidePanel(detail)">
|
|
</vn-icon>
|
|
</vn-none>
|
|
</vn-horizontal>
|
|
<vn-card ng-class="{'hidden': !$ctrl.wasteConfig[detail.buyer].hidden}">
|
|
<vn-table>
|
|
<vn-thead>
|
|
<vn-tr>
|
|
<vn-th class="waste-family">Family</vn-th>
|
|
<vn-th number>Percentage</vn-th>
|
|
<vn-th number>Dwindle</vn-th>
|
|
<vn-th number>Total</vn-th>
|
|
</vn-tr>
|
|
</vn-thead>
|
|
<vn-tbody>
|
|
<a ng-repeat="waste in detail.lines" class="clickable vn-tr"
|
|
ui-sref="item.waste.detail({buyer: waste.buyer, family: waste.family})">
|
|
<vn-td class="waste-family">{{::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-tr>
|
|
</vn-tbody>
|
|
</vn-table>
|
|
</vn-card>
|
|
</section>
|
|
</vn-data-viewer> |