salix/modules/item/front/diary/index.html

91 lines
3.5 KiB
HTML
Raw Normal View History

<vn-crud-model
vn-id="model"
url="Items/getBalance"
filter="$ctrl.filter"
2019-02-10 21:52:35 +00:00
data="sales"
auto-load="false">
</vn-crud-model>
<vn-vertical>
<vn-card class="vn-pa-lg vn-w-lg">
2019-02-10 21:52:35 +00:00
<vn-vertical>
<vn-horizontal>
<vn-autocomplete
vn-focus
url="Warehouses"
2019-02-10 21:52:35 +00:00
show-field="name"
value-field="id"
initial-data="$ctrl.warehouseFk"
2019-10-09 22:47:29 +00:00
ng-model="$ctrl.warehouseFk"
2019-02-10 21:52:35 +00:00
label="Select warehouse">
</vn-autocomplete>
</vn-horizontal>
<vn-table model="model">
<vn-thead>
<vn-tr>
2019-04-01 06:42:19 +00:00
<vn-th expand>Date</vn-th>
2019-11-11 12:51:30 +00:00
<vn-th number order="DESC">Id</vn-th>
2019-02-10 21:52:35 +00:00
<vn-th>State</vn-th>
<vn-th>Reference</vn-th>
<vn-th>Client</vn-th>
<vn-th number>In</vn-th>
<vn-th number>Out</vn-th>
<vn-th number>Balance</vn-th>
</vn-tr>
</vn-thead>
<vn-tbody>
<vn-tr
ng-class="::{
'isIn': sale.in,
'balanceNegative': sale.balance < 0}"
ng-repeat="sale in sales"
vn-repeat-last
on-last="$ctrl.scrollToLine(sale.lastPreparedLineFk)"
ng-attr-id="vnItemDiary-{{::sale.lineFk}}">
2019-04-01 06:42:19 +00:00
<vn-td expand>
2019-02-15 15:04:24 +00:00
<span class="chip"
ng-class="::{warning: $ctrl.today == sale.shipped}">
{{::sale.shipped | date:'dd/MM/yyyy' }}
2019-02-10 21:52:35 +00:00
</span>
</vn-td>
<vn-td number>
2020-06-03 08:37:17 +00:00
<span class="link"
ng-if="::sale.isTicket"
ng-click="$ctrl.showTicketDescriptor($event, sale)"
2019-09-10 06:47:46 +00:00
name="origin">
2019-02-10 21:52:35 +00:00
{{::sale.origin | dashIfEmpty}}
</span>
</vn-td>
<vn-td>{{::sale.stateName | dashIfEmpty}}</vn-td>
<vn-td>{{::sale.reference | dashIfEmpty}}</vn-td>
<vn-td class="truncate">
2020-04-25 09:50:04 +00:00
<span ng-if="::!sale.isTicket">
{{::sale.name | dashIfEmpty}}
</span>
<span
ng-if="::sale.isTicket"
vn-click-stop="clientDescriptor.show($event, sale.clientFk)"
class="link">
2019-02-10 21:52:35 +00:00
{{::sale.name | dashIfEmpty}}
</span>
</vn-td>
<vn-td number class="in">{{::sale.in | dashIfEmpty}}</vn-td>
<vn-td number>{{::sale.out | dashIfEmpty}}</vn-td>
<vn-td number class="balance">
<span class="chip balanceSpan"
ng-class="::{message: sale.lineFk == sale.lastPreparedLineFk}">
2019-02-10 21:52:35 +00:00
{{::sale.balance | dashIfEmpty}}
</span>
</vn-td>
</vn-tr>
</vn-tbody>
</vn-table>
</vn-vertical>
</vn-card>
</vn-vertical>
2018-09-04 09:49:00 +00:00
<vn-ticket-descriptor-popover
2020-06-03 08:37:17 +00:00
vn-id="ticket-descriptor">
2018-09-04 09:49:00 +00:00
</vn-ticket-descriptor-popover>
<vn-client-descriptor-popover
vn-id="clientDescriptor">
2019-09-05 11:06:40 +00:00
</vn-client-descriptor-popover>