salix/modules/client/front/balance/index/index.html

130 lines
4.9 KiB
HTML
Raw Normal View History

2018-10-19 06:40:32 +00:00
<vn-crud-model
vn-id="model"
url="receipts/filter"
2018-10-19 06:40:32 +00:00
limit="20"
2020-01-02 13:44:51 +00:00
data="$ctrl.balances">
2018-10-19 06:40:32 +00:00
</vn-crud-model>
<vn-crud-model
vn-id="riskModel"
url="ClientRisks"
2019-01-25 07:50:13 +00:00
filter="$ctrl.filter"
data="$ctrl.clientRisks">
2018-10-19 06:40:32 +00:00
</vn-crud-model>
2020-03-30 15:30:03 +00:00
<vn-side-menu side="right">
<div class="vn-pa-md">
<vn-autocomplete
vn-one
vn-id="company"
ng-model="$ctrl.companyId"
url="Companies"
show-field="code"
value-field="id"
label="Company">
</vn-autocomplete>
<div
class="totalBox"
style="text-align: center;"
ng-if="$ctrl.clientRisks.length">
<h6 translate>Total by company</h6>
<vn-label-value
ng-repeat="riskByCompany in $ctrl.clientRisks"
label="{{riskByCompany.company.code}}"
value="{{riskByCompany.amount | currency: 'EUR':2}}">
</vn-label-value>
</div>
</div>
</vn-side-menu>
2019-10-02 17:24:42 +00:00
<div class="vn-w-lg">
<vn-data-viewer model="model">
<vn-card>
2019-10-01 14:17:57 +00:00
<vn-table model="model">
<vn-thead>
<vn-tr>
2019-10-02 17:24:42 +00:00
<vn-th>Date</vn-th>
2019-10-01 14:17:57 +00:00
<vn-th>Creation date</vn-th>
<vn-th>Employee</vn-th>
<vn-th>Reference</vn-th>
<vn-th number>Bank</vn-th>
<vn-th number>Debit</vn-th>
<vn-th number>Havings</vn-th>
<vn-th number>Balance</vn-th>
<vn-th center>Conciliated</vn-th>
<vn-th></vn-th>
</vn-tr>
</vn-thead>
<vn-tbody>
<vn-tr ng-repeat="balance in $ctrl.balances">
<vn-td>
<span title="{{::balance.payed | date:'dd/MM/yyyy'}}">
{{::balance.payed | date:'dd/MM/yyyy'}}
</span>
</vn-td>
<vn-td>
<span title="{{::balance.created | date:'dd/MM/yyyy HH:mm'}}">
{{::balance.created | date:'dd/MM/yyyy HH:mm'}}
</span>
</vn-td>
<vn-td>
<span
2019-10-01 14:17:57 +00:00
class="link"
ng-click="$ctrl.showWorkerDescriptor($event, balance.workerFk)">
{{::balance.userNickname}}
</span>
</vn-td>
<vn-td expand>
2019-10-01 14:17:57 +00:00
<span
title="{{balance.isInvoice ? 'BILL' : balance.ref | translate: {ref: balance.ref} }}"
2019-10-01 14:17:57 +00:00
ng-class="{'link': balance.isInvoice}"
ng-click="$ctrl.showInvoiceOutDescriptor($event, balance)"
ng-show="balance.ref">
{{balance.isInvoice ? 'BILL' : balance.ref | translate: {ref: balance.ref} }}
2019-10-01 14:17:57 +00:00
</span>
</vn-td>
<vn-td number>{{::balance.bankFk}}</vn-td>
<vn-td number expand>{{::balance.debit | currency: 'EUR':2}}</vn-td>
<vn-td number expand>{{::balance.credit | currency: 'EUR':2}}</vn-td>
<vn-td number expand>{{balance.balance | currency: 'EUR':2}}</vn-td>
<vn-td center shrink>
2019-10-01 14:17:57 +00:00
<vn-check
2019-10-09 22:47:29 +00:00
ng-model="balance.isConciliate"
2019-10-01 14:17:57 +00:00
disabled="true">
</vn-check>
</vn-td>
<vn-td center shrink>
2019-10-01 14:17:57 +00:00
<a ng-show="balance.hasPdf"
target="_blank"
2020-03-17 10:17:50 +00:00
href="InvoiceOuts/{{::balance.id}}/download?access_token={{::$ctrl.vnToken.token}}">
2019-10-01 14:17:57 +00:00
<vn-icon-button
icon="cloud_download"
title="{{'Download PDF' | translate}}">
</vn-icon-button>
</a>
</vn-td>
</vn-tr>
</vn-tbody>
</vn-table>
2019-10-02 17:24:42 +00:00
</vn-card>
</vn-data-viewer>
2019-10-01 14:17:57 +00:00
</div>
2019-02-05 15:46:02 +00:00
<vn-float-button
vn-acl="administrative"
vn-acl-action="remove"
icon="add"
2019-01-15 10:15:30 +00:00
vn-tooltip="New payment"
vn-bind="+"
2019-02-05 15:46:02 +00:00
fixed-bottom-right
2020-03-30 15:30:03 +00:00
ng-click="balanceCreate.show()">
2019-02-05 15:46:02 +00:00
</vn-float-button>
2019-10-01 14:17:57 +00:00
<vn-client-balance-create
2020-03-30 15:30:03 +00:00
vn-id="balance-create"
on-accept="$ctrl.getData()"
company-fk="$ctrl.companyId">
</vn-client-balance-create>
2019-04-05 11:20:34 +00:00
<vn-worker-descriptor-popover
vn-id="workerDescriptor"
worker-fk="$ctrl.selectedWorker">
2019-04-05 11:20:34 +00:00
</vn-worker-descriptor-popover>
<vn-invoice-out-descriptor-popover
vn-id="invoiceOutDescriptor"
invoice-out-id="$ctrl.selectedInvoiceOut">
</vn-invoice-out-descriptor-popover>