2018-07-16 07:28:32 +00:00
|
|
|
<vn-crud-model
|
|
|
|
vn-id="model"
|
|
|
|
url="/item/api/Items/getLastEntries"
|
|
|
|
filter="::$ctrl.filter"
|
2018-11-27 14:02:54 +00:00
|
|
|
data="entries" auto-load="false">
|
2018-07-16 07:28:32 +00:00
|
|
|
</vn-crud-model>
|
2018-06-20 09:39:29 +00:00
|
|
|
<vn-vertical>
|
|
|
|
<vn-card pad-large>
|
|
|
|
<vn-vertical>
|
|
|
|
<vn-title>Last entries</vn-title>
|
|
|
|
<vn-horizontal>
|
|
|
|
<vn-date-picker
|
|
|
|
vn-one
|
|
|
|
label="Since"
|
2018-07-16 07:28:32 +00:00
|
|
|
model="$ctrl.date"
|
2018-06-20 09:39:29 +00:00
|
|
|
ini-options="{dateFormat: 'd-m-Y'}">
|
|
|
|
</vn-date-picker>
|
|
|
|
<!--datepicker-->
|
|
|
|
</vn-horizontal>
|
2018-07-16 07:28:32 +00:00
|
|
|
<vn-table model="model">
|
|
|
|
<vn-thead>
|
|
|
|
<vn-tr>
|
|
|
|
<vn-th number vn-tooltip="Ignored">Ig</vn-th>
|
|
|
|
<vn-th number>Warehouse</vn-th>
|
|
|
|
<vn-th number>Landed</vn-th>
|
|
|
|
<vn-th number>Entry</vn-th>
|
|
|
|
<vn-th number vn-tooltip="Price Per Unit">P.P.U</vn-th>
|
|
|
|
<vn-th number vn-tooltip="Price Per Package">P.P.P</vn-th>
|
|
|
|
<vn-th number class="expendable">Label</vn-th>
|
|
|
|
<vn-th number>Packing</vn-th>
|
|
|
|
<vn-th number>Grouping</vn-th>
|
|
|
|
<vn-th number class="expendable">Stems</vn-th>
|
|
|
|
<vn-th number>Quantity</vn-th>
|
|
|
|
<vn-th number class="expendable">Cost</vn-th>
|
|
|
|
<vn-th number>Cube</vn-th>
|
|
|
|
<vn-th number class="expendable">Provider</vn-th>
|
|
|
|
</vn-tr>
|
|
|
|
</vn-thead>
|
|
|
|
<vn-tbody>
|
|
|
|
<vn-tr ng-repeat="entry in entries">
|
|
|
|
<vn-td number>
|
2018-06-20 09:39:29 +00:00
|
|
|
<vn-check
|
|
|
|
field="entries.isIgnored"
|
|
|
|
disabled="true">
|
|
|
|
</vn-check>
|
2018-07-16 07:28:32 +00:00
|
|
|
</vn-td>
|
|
|
|
<vn-td number>{{entry.warehouse| dashIfEmpty}}</vn-td>
|
|
|
|
<vn-td number>{{entry.landed | date:'dd/MM/yyyy HH:mm'}}</vn-td>
|
|
|
|
<vn-td number>{{entry.entryFk | dashIfEmpty}}</vn-td>
|
|
|
|
<vn-td number>{{entry.price2 | dashIfEmpty}}</vn-td>
|
|
|
|
<vn-td number>{{entry.price3 | dashIfEmpty}}</vn-td>
|
|
|
|
<vn-td number class="expendable">{{entry.stickers | dashIfEmpty}}</vn-td>
|
|
|
|
<vn-td number>
|
|
|
|
<div ng-class="{'counter': entry.groupingMode == 2}">{{entry.packing | dashIfEmpty}}</div>
|
|
|
|
</vn-td>
|
|
|
|
<vn-td number>
|
|
|
|
<span ng-class="{'counter': entry.groupingMode == 1}">{{entry.grouping | dashIfEmpty}}</span>
|
|
|
|
</vn-td>
|
|
|
|
<vn-td number class="expendable">{{entry.stems | dashIfEmpty}}</vn-td>
|
|
|
|
<vn-td number>{{entry.quantity}}</vn-td>
|
|
|
|
<vn-td number class="expendable">{{entry.buyingValue | dashIfEmpty}}</vn-td>
|
|
|
|
<vn-td number>{{entry.packageFk | dashIfEmpty}}</vn-td>
|
|
|
|
<vn-td number class="expendable">{{entry.supplier | dashIfEmpty}}</vn-td>
|
|
|
|
</vn-tr>
|
|
|
|
</vn-tbody>
|
|
|
|
<vn-empty-rows ng-if="model.data.length === 0" translate>
|
|
|
|
No results
|
|
|
|
</vn-empty-rows>
|
|
|
|
</vn-table>
|
2018-06-20 09:39:29 +00:00
|
|
|
</vn-vertical>
|
2018-07-16 07:28:32 +00:00
|
|
|
<vn-pagination
|
|
|
|
model="model"
|
|
|
|
scroll-selector="ui-view">
|
|
|
|
</vn-pagination>
|
2018-06-20 09:39:29 +00:00
|
|
|
</vn-card>
|
|
|
|
</vn-vertical>
|