2018-05-10 11:36:26 +00:00
|
|
|
<mg-ajax path="/ticket/api/Sales/saleComponentFilter" options="vnIndexNonAuto" actions="$ctrl.sales = index.model.instances"></mg-ajax>
|
2018-04-13 14:03:43 +00:00
|
|
|
<vn-vertical>
|
|
|
|
<vn-card pad-large>
|
|
|
|
<vn-vertical>
|
|
|
|
<vn-title>Components</vn-title>
|
|
|
|
<table class="vn-grid">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th number translate>Item</th>
|
|
|
|
<th translate>Description</th>
|
|
|
|
<th number translate>Quantity</th>
|
|
|
|
<th translate>Serie</th>
|
|
|
|
<th translate>Components</th>
|
|
|
|
<th number translate>Import</th>
|
|
|
|
<th number translate>Total import</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tfoot>
|
|
|
|
<tr>
|
|
|
|
<td number colspan="7">
|
|
|
|
<span translate>Base</span> {{::$ctrl.base() | currency:'€':3}}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td number colspan="7">
|
|
|
|
<span translate>Margin</span> {{::$ctrl.profitMargin() | currency:'€':3}}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td number colspan="7">
|
|
|
|
<span translate>Total</span> {{::$ctrl.total() | currency:'€':3}}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tfoot>
|
|
|
|
<tbody ng-repeat="sale in $ctrl.sales track by sale.id">
|
|
|
|
<tr>
|
|
|
|
<td rowspan="{{
|
|
|
|
::sale.components.length + 1
|
2018-05-29 12:33:29 +00:00
|
|
|
}}" number pointer
|
2018-07-19 09:32:33 +00:00
|
|
|
ng-click="$ctrl.showDescriptor($event, sale.itemFk)"
|
|
|
|
class="link">{{("000000"+sale.itemFk).slice(-6)}}</td>
|
2018-04-13 14:03:43 +00:00
|
|
|
<td rowspan="{{
|
|
|
|
::sale.components.length + 1
|
2018-07-19 08:44:57 +00:00
|
|
|
}}"><vn-fetched-tags concept="sale.concept" tags="sale.item.tags"/></td>
|
2018-04-13 14:03:43 +00:00
|
|
|
<td rowspan="{{
|
|
|
|
::sale.components.length + 1
|
|
|
|
}}" number>{{::sale.quantity}}</td>
|
|
|
|
</tr>
|
|
|
|
<tr
|
|
|
|
ng-repeat="component in sale.components track by component.componentFk">
|
|
|
|
<td ng-class="::{
|
|
|
|
first: $index == 0,last: $index == sale.components.length - 1
|
|
|
|
}">{{::component.componentRate.componentType.type}}</td>
|
|
|
|
<td ng-class="::{
|
|
|
|
first: $index == 0,last: $index == sale.components.length - 1
|
|
|
|
}">{{::component.componentRate.name}}</td>
|
|
|
|
<td ng-class="::{
|
|
|
|
first: $index == 0,last: $index == sale.components.length - 1
|
|
|
|
}" number>{{::component.value | currency:'€':3}}</td>
|
|
|
|
<td ng-class="::{
|
|
|
|
first: $index == 0,last: $index == sale.components.length - 1
|
|
|
|
}" number>{{::sale.quantity * component.value | currency:'€':3}}</td>
|
2018-05-07 06:33:45 +00:00
|
|
|
</tr>
|
|
|
|
<tr ng-if="index.model.count === 0" class="list list-element">
|
|
|
|
<td colspan="7" style="text-align: center" translate>No results</td>
|
|
|
|
</tr>
|
2018-04-13 14:03:43 +00:00
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</vn-vertical>
|
2018-05-11 06:35:28 +00:00
|
|
|
<vn-paging vn-one margin-large-top index="index" total="index.model.count"></vn-paging>
|
2018-04-13 14:03:43 +00:00
|
|
|
</vn-card>
|
|
|
|
</vn-vertical>
|
2018-05-29 12:33:29 +00:00
|
|
|
<vn-item-descriptor-popover vn-id="descriptor"></vn-item-descriptor-popover>
|